diff --git a/distil/NoPickle.py b/distil/NoPickle.py deleted file mode 100644 index 6e11832..0000000 --- a/distil/NoPickle.py +++ /dev/null @@ -1,16 +0,0 @@ - - -class NoPickling(BaseException): - """Should not be pickling""" - - -class NoPickle(object): - - def __init__(self, *args, **kwargs): - pass - - def dump(self, value): - raise NoPickling("Pickling is not allowed!") - - def load(self, value): - raise NoPickling("Unpickling is not allowed!") diff --git a/distil/constants.py b/distil/constants.py deleted file mode 100644 index b374b38..0000000 --- a/distil/constants.py +++ /dev/null @@ -1,47 +0,0 @@ -# Copyright (C) 2014 Catalyst IT Ltd -# -# Licensed under the Apache License, Version 2.0 (the "License"); you may -# not use this file except in compliance with the License. You may obtain -# a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT -# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the -# License for the specific language governing permissions and limitations -# under the License. - -from datetime import datetime - -# Date format Ceilometer uses -# 2013-07-03T13:34:17 -# which is, as an strftime: -# timestamp = datetime.strptime(res["timestamp"], "%Y-%m-%dT%H:%M:%S.%f") -# or -# timestamp = datetime.strptime(res["timestamp"], "%Y-%m-%dT%H:%M:%S") - -# Most of the time we use date_format -date_format = "%Y-%m-%dT%H:%M:%S" -# Sometimes things also have milliseconds, so we look for that too. -# Because why not be annoying in all the ways? -other_date_format = "%Y-%m-%dT%H:%M:%S.%f" - -# Some useful constants -iso_time = "%Y-%m-%dT%H:%M:%S" -iso_date = "%Y-%m-%d" -dawn_of_time = datetime(2014, 4, 1) - -# VM states (SOON TO BE REMOVED): -states = {'active': 1, - 'building': 2, - 'paused': 3, - 'suspended': 4, - 'stopped': 5, - 'rescued': 6, - 'resized': 7, - 'soft_deleted': 8, - 'deleted': 9, - 'error': 10, - 'shelved': 11, - 'shelved_offloaded': 12} diff --git a/distil/initdb.py b/distil/initdb.py deleted file mode 100644 index 0f88fc4..0000000 --- a/distil/initdb.py +++ /dev/null @@ -1,32 +0,0 @@ -# Copyright (C) 2014 Catalyst IT Ltd -# -# Licensed under the Apache License, Version 2.0 (the "License"); you may -# not use this file except in compliance with the License. You may obtain -# a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT -# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the -# License for the specific language governing permissions and limitations -# under the License. - -from models import Base -from sqlalchemy import create_engine -from sqlalchemy.pool import NullPool - - -def provision(engine): - - Base.metadata.create_all(bind=engine) - -if __name__ == '__main__': - import argparse - a = argparse.ArgumentParser() - a.add_argument("-uri", "--db_uri", dest="uri", help="Database URI.") - - args = a.parse_args() - - engine = create_engine(args.uri, poolclass=NullPool) - provision(engine) diff --git a/distil/models/__init__.py b/distil/models/__init__.py deleted file mode 100644 index a41ce5f..0000000 --- a/distil/models/__init__.py +++ /dev/null @@ -1,318 +0,0 @@ -# Copyright (C) 2014 Catalyst IT Ltd -# -# Licensed under the Apache License, Version 2.0 (the "License"); you may -# not use this file except in compliance with the License. You may obtain -# a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT -# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the -# License for the specific language governing permissions and limitations -# under the License. - -from sqlalchemy.ext.declarative import declarative_base -from sqlalchemy import Column, Text, DateTime, Numeric, ForeignKey -from sqlalchemy import event, DDL, String, Integer -from sqlalchemy.ext.hybrid import hybrid_property, hybrid_method - -from sqlalchemy.orm import relationship -from sqlalchemy.schema import ForeignKeyConstraint - -# Version digit. -__VERSION__ = 1.0 - - -Base = declarative_base() - - -class _Version(Base): - """ - A model that knows what version we are, stored in the DB. - """ - __tablename__ = "distil_database_version" - id = Column(String(10), primary_key=True) - - -class _Last_Run(Base): - """Model to store time of last completed usage run.""" - __tablename__ = "distil_last_run" - id = Column(Integer, primary_key=True) - last_run = Column(DateTime, nullable=False) - - -class Resource(Base): - """Database model for storing metadata associated with a resource.""" - __tablename__ = 'resources' - id = Column(String(100), primary_key=True) - tenant_id = Column(String(100), ForeignKey("tenants.id"), primary_key=True) - info = Column(Text) - created = Column(DateTime, nullable=False) - - -class UsageEntry(Base): - """Simplified data store of usage information for a given service, - in a resource, in a tenant. Similar to ceilometer datastore, - but stores local transformed data.""" - __tablename__ = 'usage_entry' - - # Service is things like incoming vs. outgoing, as well as instance - # flavour - service = Column(String(100), primary_key=True) - unit = Column(String(100)) - volume = Column(Numeric(precision=20, scale=2), nullable=False) - resource_id = Column(String(100), primary_key=True) - tenant_id = Column(String(100), primary_key=True) - start = Column(DateTime, nullable=False, primary_key=True) - end = Column(DateTime, nullable=False, primary_key=True) - created = Column(DateTime, nullable=False) - - resource = relationship(Resource, - primaryjoin=(resource_id == Resource.id)) - tenant = relationship(Resource, - primaryjoin=(tenant_id == Resource.tenant_id)) - - __table_args__ = (ForeignKeyConstraint( - ["resource_id", "tenant_id"], - ["resources.id", "resources.tenant_id"], - name="fk_resource_constraint" - ), - ) - - @hybrid_property - def length(self): - return self.end - self.start - - @hybrid_method - def intersects(self, other): - return (self.start <= other.end and other.start <= self.end) - - def __str__(self): - return '' % ( - self.tenant_id, self.resource_id, self.service, - self.start, self.end, self.volume) - - -class Tenant(Base): - """Model for storage of metadata related to a tenant.""" - __tablename__ = 'tenants' - # ID is a uuid - id = Column(String(100), primary_key=True, nullable=False) - name = Column(Text, nullable=False) - info = Column(Text) - created = Column(DateTime, nullable=False) - last_collected = Column(DateTime, nullable=False) - - resources = relationship(Resource, backref="tenant") - - -class SalesOrder(Base): - """Historic billing periods so that tenants - cannot be rebilled accidentally.""" - __tablename__ = 'sales_orders' - id = Column(Integer, primary_key=True) - tenant_id = Column( - String(100), - ForeignKey("tenants.id"), - primary_key=True) - start = Column(DateTime, nullable=False, primary_key=True) - end = Column(DateTime, nullable=False, primary_key=True) - - tenant = relationship("Tenant") - - @hybrid_property - def length(self): - return self.end - self.start - - @hybrid_method - def intersects(self, other): - return (self.start <= other.end and other.start <= self.end) - -# Create a trigger in MySQL that enforces our range overlap constraints, -# since MySQL lacks a native range overlap type. - -# Mysql trigger: - -mysql_table_triggers = { - UsageEntry.__table__: """ - CREATE TRIGGER %(table)s_%(funcname)s_range_constraint - BEFORE %(type)s ON `%(table)s` - FOR EACH ROW - BEGIN - DECLARE existing INT; - SET existing = ( SELECT COUNT(*) FROM `%(table)s` t - WHERE ( NEW.start < t.end - AND t.start < NEW.end ) - AND service = NEW.service - AND tenant_id = NEW.tenant_id - AND resource_id = NEW.resource_id ); - IF existing > 0 THEN - SET NEW.start = NULL; - SET NEW.end = NULL; - END IF; - END;""", - SalesOrder.__table__: """ - CREATE TRIGGER %(table)s_%(funcname)s_range_constraint - BEFORE %(type)s ON `%(table)s` - FOR EACH ROW - BEGIN - DECLARE existing INT; - SET existing = ( SELECT COUNT(*) FROM `%(table)s` t - WHERE ( NEW.start < t.end - AND t.start < NEW.end ) - AND tenant_id = NEW.tenant_id ); - IF existing > 0 THEN - SET NEW.start = NULL; - SET NEW.end = NULL; - END IF; - END; -""" -} - -# before insert - -funcmaps = {"INSERT": "entry", "UPDATE": "change"} -for table in (SalesOrder.__table__, UsageEntry.__table__): - for type_ in ("INSERT", "UPDATE"): - event.listen( - table, - "after_create", - DDL(mysql_table_triggers[table] % { - "table": table, - "type": type_, - "funcname": funcmaps[type_]}). - execute_if(dialect="mysql")) - - -# And the postgres constraints -# Ideally this would use Postgres' exclusion constraints and a TSRange type. -# This is currently not feasible because I can't find a way to emit different -# DDL for MySQL and Postgres to support the varying concepts -# (single vs. dual columns). - -pgsql_trigger_funcs = { - UsageEntry.__table__: """ -CREATE FUNCTION %(table)s_exclusion_constraint_trigger() RETURNS trigger AS $trigger$ - DECLARE - existing INTEGER = 0; - BEGIN - SELECT count(*) INTO existing FROM %(table)s t - WHERE t.service = NEW.service - AND t.tenant_id = NEW.tenant_id - AND t.resource_id = NEW.resource_id - AND ( NEW.start < t."end" - AND t.start < NEW."end" ); - IF existing > 0 THEN - RAISE SQLSTATE '23P01'; - RETURN NULL; - END IF; - RETURN NEW; - END; -$trigger$ LANGUAGE PLPGSQL;""", - SalesOrder.__table__: """ -CREATE FUNCTION %(table)s_exclusion_constraint_trigger() RETURNS trigger AS $trigger$ - DECLARE - existing INTEGER = 0; - BEGIN - SELECT count(*) INTO existing FROM %(table)s t - WHERE t.tenant_id = NEW.tenant_id - AND ( NEW.start < t."end" - AND t.start < NEW."end" ); - IF existing > 0 THEN - RAISE SQLSTATE '23P01'; - RETURN NULL; - END IF; - RETURN NEW; - END; -$trigger$ LANGUAGE PLPGSQL;""" -} - -pgsql_trigger = """ -CREATE TRIGGER %(table)s_exclusion_trigger BEFORE INSERT OR UPDATE ON %(table)s - FOR EACH ROW EXECUTE PROCEDURE %(table)s_exclusion_constraint_trigger(); -""" - -for table in (UsageEntry.__table__, SalesOrder.__table__): - event.listen( - table, - "after_create", - DDL(pgsql_trigger_funcs[table] % { - "table": table - }).execute_if(dialect="postgresql") - ) - event.listen( - table, - "after_create", - DDL(pgsql_trigger % { - "table": table - } - ).execute_if(dialect="postgresql") - ) - -# Create the PGSQL secondary trigger for sales order overlaps, for -# the usage entry - - -pgsql_secondary_trigger = """ -CREATE TRIGGER %(table)s_secondary_exclusion_trigger BEFORE INSERT OR UPDATE ON %(table)s - FOR EACH ROW EXECUTE PROCEDURE %(secondary_table)s_exclusion_constraint_trigger(); -""" - -event.listen( - UsageEntry.__table__, - "after_create", - DDL(pgsql_secondary_trigger % { - "table": UsageEntry.__table__, - "secondary_table": SalesOrder.__table__ - }).execute_if(dialect="postgresql") -) - - -event.listen( - UsageEntry.__table__, - "before_drop", - DDL("""DROP TRIGGER %(table)s_secondary_exclusion_trigger ON %(table)s""" % - {"table": UsageEntry.__table__, - "secondary_table": SalesOrder.__table__ - }).execute_if(dialect="postgresql") -) - -event.listen( - UsageEntry.__table__, - "before_drop", - DDL("DROP TRIGGER %(table)s_exclusion_trigger ON %(table)s" % - {"table": UsageEntry.__tablename__}).execute_if(dialect="postgresql") -) - -event.listen( - UsageEntry.__table__, - "before_drop", - DDL("DROP FUNCTION %s_exclusion_constraint_trigger()" % - UsageEntry.__tablename__).execute_if(dialect="postgresql") -) - -event.listen( - UsageEntry.__table__, - "before_drop", - DDL("DROP TRIGGER %(table)s_exclusion_trigger ON %(table)s" % { - "table": SalesOrder.__tablename__}).execute_if(dialect="postgresql") -) - -event.listen( - UsageEntry.__table__, - "before_drop", - DDL("DROP FUNCTION %s_exclusion_constraint_trigger()" % - SalesOrder.__tablename__).execute_if(dialect="postgresql") -) - - -def insert_into_version(target, connection, **kw): - connection.execute("INSERT INTO %s (id) VALUES (%s)" % - (target.name, __VERSION__)) - -event.listen( - _Version.__table__, - "after_create", - insert_into_version -) diff --git a/distil/rates.py b/distil/rates.py deleted file mode 100644 index 5a62f2f..0000000 --- a/distil/rates.py +++ /dev/null @@ -1,52 +0,0 @@ -# Copyright (C) 2014 Catalyst IT Ltd -# -# Licensed under the Apache License, Version 2.0 (the "License"); you may -# not use this file except in compliance with the License. You may obtain -# a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT -# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the -# License for the specific language governing permissions and limitations -# under the License. - -from decimal import Decimal -import csv -import logging as log - - -class RatesManager(object): - - def __init__(self, config): - self.config = config - - def rate(self, name, region=None): - raise NotImplementedError("Not implemented in base class") - - -class RatesFile(RatesManager): - def __init__(self, config): - super(RatesFile, self).__init__(config) - - try: - with open(self.config['file']) as fh: - # Makes no opinions on the file structure - reader = csv.reader(fh, delimiter="|") - self.__rates = { - row[1].strip() : { - 'rate': Decimal(row[3].strip()), - 'region': row[0].strip(), - 'unit': row[2].strip() - } for row in reader - } - except Exception as e: - log.critical('Failed to load rates file: `%s`' % e) - raise - - def rate(self, name, region=None): - return { - 'rate': self.__rates[name]['rate'], - 'unit': self.__rates[name]['unit'] - } diff --git a/distil/tests/unit/data/ceilometer_json.py b/distil/tests/unit/data/ceilometer_json.py deleted file mode 100644 index 70e613a..0000000 --- a/distil/tests/unit/data/ceilometer_json.py +++ /dev/null @@ -1,43 +0,0 @@ -import requests -import json - -# h = httplib2.Http() -from keystoneclient.v2_0 import client -keystone = client.Client(username="admin", password="openstack", - tenant_name="demo", - auth_url="http://localhost:35357/v2.0") - -resources = json.loads(requests.get("http://localhost:8777/v2/resources", - headers={"X-Auth-Token": - keystone.auth_token}).text) -# print json.dumps(resources, indent=True) - -r = requests.get( - "http://localhost:8777/v2/resources", - headers={"X-Auth-Token": keystone.auth_token, - "Content-Type": "application/json"}, - data=json.dumps({"q": [ - {"field": "project_id", "op": "eq", - "value": "8a78fa56de8846cb89c7cf3f37d251d5"}]})) - -resources = json.loads(r.text) - -fh = open("resources.json", "w") -fh.write(json.dumps(resources, indent=True)) -fh.close() - - -def get(url): - return json.loads(requests.get(url, - headers={"X-Auth-Token": - keystone.auth_token}).text) - -i = 0 -for resource in resources: - - for link in resource["links"]: - fh = open("map_fixture_%s.json" % i, "w") - data_dict = {link["href"]: get(link["href"])} - fh.write(json.dumps(data_dict, indent=True)) - fh.close() - i += 1 diff --git a/distil/tests/unit/data/map_fixture_0.json b/distil/tests/unit/data/map_fixture_0.json deleted file mode 100644 index 3bc5fbf..0000000 --- a/distil/tests/unit/data/map_fixture_0.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "http://localhost:8777/v2/resources/002a338d-1eda-4cd4-a94c-d1495db1efd9": { - "user_id": "5fbff7d5c307476fb3db36f3ffbcca07", - "links": [ - { - "href": "http://localhost:8777/v2/resources/002a338d-1eda-4cd4-a94c-d1495db1efd9", - "rel": "self" - }, - { - "href": "http://localhost:8777/v2/meters/port?q.field=resource_id&q.value=002a338d-1eda-4cd4-a94c-d1495db1efd9", - "rel": "port" - }, - { - "href": "http://localhost:8777/v2/meters/port.create?q.field=resource_id&q.value=002a338d-1eda-4cd4-a94c-d1495db1efd9", - "rel": "port.create" - }, - { - "href": "http://localhost:8777/v2/meters/port.update?q.field=resource_id&q.value=002a338d-1eda-4cd4-a94c-d1495db1efd9", - "rel": "port.update" - } - ], - "resource_id": "002a338d-1eda-4cd4-a94c-d1495db1efd9", - "last_sample_timestamp": "2014-03-18T23:51:05.527721", - "first_sample_timestamp": "2014-03-18T23:25:53.295528", - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "metadata": { - "status": "ACTIVE", - "binding:host_id": "vagrant-ubuntu-precise-64", - "binding:capabilities.port_filter": "True", - "admin_state_up": "True", - "network_id": "5b771cb2-961a-4042-a814-2f78c5545f8a", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "device_owner": "compute:nova", - "binding:vif_type": "ovs", - "host": "network.vagrant-ubuntu-precise-64", - "mac_address": "fa:16:3e:65:d2:cf", - "event_type": "port.update.end", - "device_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "id": "002a338d-1eda-4cd4-a94c-d1495db1efd9", - "name": "" - } - } -} \ No newline at end of file diff --git a/distil/tests/unit/data/map_fixture_1.json b/distil/tests/unit/data/map_fixture_1.json deleted file mode 100644 index 9569b94..0000000 --- a/distil/tests/unit/data/map_fixture_1.json +++ /dev/null @@ -1,88 +0,0 @@ -{ - "http://localhost:8777/v2/meters/port?q.field=resource_id&q.value=002a338d-1eda-4cd4-a94c-d1495db1efd9": [ - { - "counter_name": "port", - "user_id": "5fbff7d5c307476fb3db36f3ffbcca07", - "resource_id": "002a338d-1eda-4cd4-a94c-d1495db1efd9", - "timestamp": "2014-03-18T23:51:05.527721", - "message_id": "2b838332-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "port", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "status": "ACTIVE", - "binding:host_id": "vagrant-ubuntu-precise-64", - "binding:capabilities.port_filter": "True", - "admin_state_up": "True", - "network_id": "5b771cb2-961a-4042-a814-2f78c5545f8a", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "device_owner": "compute:nova", - "binding:vif_type": "ovs", - "host": "network.vagrant-ubuntu-precise-64", - "mac_address": "fa:16:3e:65:d2:cf", - "event_type": "port.update.end", - "device_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "id": "002a338d-1eda-4cd4-a94c-d1495db1efd9", - "name": "" - }, - "counter_type": "gauge" - }, - { - "counter_name": "port", - "user_id": "5fbff7d5c307476fb3db36f3ffbcca07", - "resource_id": "002a338d-1eda-4cd4-a94c-d1495db1efd9", - "timestamp": "2014-03-18T23:26:31.483476", - "message_id": "bcff9ff2-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "port", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "status": "ACTIVE", - "binding:host_id": "vagrant-ubuntu-precise-64", - "binding:capabilities.port_filter": "True", - "admin_state_up": "True", - "network_id": "5b771cb2-961a-4042-a814-2f78c5545f8a", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "device_owner": "compute:nova", - "binding:vif_type": "ovs", - "host": "network.vagrant-ubuntu-precise-64", - "mac_address": "fa:16:3e:65:d2:cf", - "event_type": "port.update.end", - "device_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "id": "002a338d-1eda-4cd4-a94c-d1495db1efd9", - "name": "" - }, - "counter_type": "gauge" - }, - { - "counter_name": "port", - "user_id": "5fbff7d5c307476fb3db36f3ffbcca07", - "resource_id": "002a338d-1eda-4cd4-a94c-d1495db1efd9", - "timestamp": "2014-03-18T23:25:53.295528", - "message_id": "a70223a0-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "port", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "status": "DOWN", - "binding:host_id": "vagrant-ubuntu-precise-64", - "binding:capabilities.port_filter": "True", - "admin_state_up": "True", - "network_id": "5b771cb2-961a-4042-a814-2f78c5545f8a", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "device_owner": "compute:nova", - "binding:vif_type": "ovs", - "host": "network.vagrant-ubuntu-precise-64", - "mac_address": "fa:16:3e:65:d2:cf", - "event_type": "port.create.end", - "device_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "id": "002a338d-1eda-4cd4-a94c-d1495db1efd9", - "name": "" - }, - "counter_type": "gauge" - } - ] -} \ No newline at end of file diff --git a/distil/tests/unit/data/map_fixture_10.json b/distil/tests/unit/data/map_fixture_10.json deleted file mode 100644 index 103efd6..0000000 --- a/distil/tests/unit/data/map_fixture_10.json +++ /dev/null @@ -1,48 +0,0 @@ -{ - "http://localhost:8777/v2/meters/image.serve?q.field=resource_id&q.value=2c9af0eb-4960-49c2-8c1c-b60de446f212": [ - { - "counter_name": "image.serve", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T23:27:50.197792", - "message_id": "ebc91b56-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "receiver_tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "destination_ip": "10.0.2.15", - "event_type": "image.send", - "bytes_sent": "25165824", - "image_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "host": "vagrant-ubuntu-precise-64", - "receiver_user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "owner_id": "7a64220a45c84104ac95258de1a3720a" - }, - "counter_type": "delta" - }, - { - "counter_name": "image.serve", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T23:25:56.203891", - "message_id": "a88c0dd0-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "receiver_tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "destination_ip": "10.0.2.15", - "event_type": "image.send", - "bytes_sent": "25165824", - "image_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "host": "vagrant-ubuntu-precise-64", - "receiver_user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "owner_id": "7a64220a45c84104ac95258de1a3720a" - }, - "counter_type": "delta" - } - ] -} \ No newline at end of file diff --git a/distil/tests/unit/data/map_fixture_100.json b/distil/tests/unit/data/map_fixture_100.json deleted file mode 100644 index 98f428b..0000000 --- a/distil/tests/unit/data/map_fixture_100.json +++ /dev/null @@ -1,346 +0,0 @@ -{ - "http://localhost:8777/v2/meters/network.incoming.packets?q.field=resource_id&q.value=nova-instance-instance-00000001-fa163e65d2cf": [ - { - "counter_name": "network.incoming.packets", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "nova-instance-instance-00000001-fa163e65d2cf", - "timestamp": "2014-03-18T23:59:58", - "message_id": "69232728-aef9-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "packet", - "counter_volume": 95.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "instance_type": "42", - "mac": "fa:16:3e:65:d2:cf", - "fref": "nova-instance-instance-00000001-fa163e65d2cf", - "name": "tap002a338d-1e" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "network.incoming.packets", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "nova-instance-instance-00000001-fa163e65d2cf", - "timestamp": "2014-03-18T23:58:58", - "message_id": "451e161c-aef9-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "packet", - "counter_volume": 95.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "instance_type": "42", - "mac": "fa:16:3e:65:d2:cf", - "fref": "nova-instance-instance-00000001-fa163e65d2cf", - "name": "tap002a338d-1e" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "network.incoming.packets", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "nova-instance-instance-00000001-fa163e65d2cf", - "timestamp": "2014-03-18T23:57:58", - "message_id": "21624810-aef9-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "packet", - "counter_volume": 95.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "instance_type": "42", - "mac": "fa:16:3e:65:d2:cf", - "fref": "nova-instance-instance-00000001-fa163e65d2cf", - "name": "tap002a338d-1e" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "network.incoming.packets", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "nova-instance-instance-00000001-fa163e65d2cf", - "timestamp": "2014-03-18T23:56:58", - "message_id": "fda20e92-aef8-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "packet", - "counter_volume": 95.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "instance_type": "42", - "mac": "fa:16:3e:65:d2:cf", - "fref": "nova-instance-instance-00000001-fa163e65d2cf", - "name": "tap002a338d-1e" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "network.incoming.packets", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "nova-instance-instance-00000001-fa163e65d2cf", - "timestamp": "2014-03-18T23:39:57", - "message_id": "9cfc115c-aef6-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "packet", - "counter_volume": 120.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "instance_type": "84", - "mac": "fa:16:3e:65:d2:cf", - "fref": "nova-instance-instance-00000001-fa163e65d2cf", - "name": "tap002a338d-1e" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "network.incoming.packets", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "nova-instance-instance-00000001-fa163e65d2cf", - "timestamp": "2014-03-18T23:38:56", - "message_id": "7923b74e-aef6-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "packet", - "counter_volume": 120.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "instance_type": "84", - "mac": "fa:16:3e:65:d2:cf", - "fref": "nova-instance-instance-00000001-fa163e65d2cf", - "name": "tap002a338d-1e" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "network.incoming.packets", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "nova-instance-instance-00000001-fa163e65d2cf", - "timestamp": "2014-03-18T23:37:56", - "message_id": "55673182-aef6-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "packet", - "counter_volume": 120.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "instance_type": "84", - "mac": "fa:16:3e:65:d2:cf", - "fref": "nova-instance-instance-00000001-fa163e65d2cf", - "name": "tap002a338d-1e" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "network.incoming.packets", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "nova-instance-instance-00000001-fa163e65d2cf", - "timestamp": "2014-03-18T23:36:56", - "message_id": "31a3fd0c-aef6-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "packet", - "counter_volume": 120.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "instance_type": "84", - "mac": "fa:16:3e:65:d2:cf", - "fref": "nova-instance-instance-00000001-fa163e65d2cf", - "name": "tap002a338d-1e" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "network.incoming.packets", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "nova-instance-instance-00000001-fa163e65d2cf", - "timestamp": "2014-03-18T23:35:56", - "message_id": "0dd8b8a4-aef6-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "packet", - "counter_volume": 120.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "instance_type": "84", - "mac": "fa:16:3e:65:d2:cf", - "fref": "nova-instance-instance-00000001-fa163e65d2cf", - "name": "tap002a338d-1e" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "network.incoming.packets", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "nova-instance-instance-00000001-fa163e65d2cf", - "timestamp": "2014-03-18T23:34:56", - "message_id": "e9f8a930-aef5-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "packet", - "counter_volume": 120.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "instance_type": "84", - "mac": "fa:16:3e:65:d2:cf", - "fref": "nova-instance-instance-00000001-fa163e65d2cf", - "name": "tap002a338d-1e" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "network.incoming.packets", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "nova-instance-instance-00000001-fa163e65d2cf", - "timestamp": "2014-03-18T23:33:56", - "message_id": "c62b7320-aef5-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "packet", - "counter_volume": 120.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "instance_type": "84", - "mac": "fa:16:3e:65:d2:cf", - "fref": "nova-instance-instance-00000001-fa163e65d2cf", - "name": "tap002a338d-1e" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "network.incoming.packets", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "nova-instance-instance-00000001-fa163e65d2cf", - "timestamp": "2014-03-18T23:32:56", - "message_id": "a27394f8-aef5-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "packet", - "counter_volume": 120.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "instance_type": "84", - "mac": "fa:16:3e:65:d2:cf", - "fref": "nova-instance-instance-00000001-fa163e65d2cf", - "name": "tap002a338d-1e" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "network.incoming.packets", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "nova-instance-instance-00000001-fa163e65d2cf", - "timestamp": "2014-03-18T23:31:56", - "message_id": "7e976532-aef5-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "packet", - "counter_volume": 120.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "instance_type": "84", - "mac": "fa:16:3e:65:d2:cf", - "fref": "nova-instance-instance-00000001-fa163e65d2cf", - "name": "tap002a338d-1e" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "network.incoming.packets", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "nova-instance-instance-00000001-fa163e65d2cf", - "timestamp": "2014-03-18T23:30:56", - "message_id": "5aea4870-aef5-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "packet", - "counter_volume": 120.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "instance_type": "84", - "mac": "fa:16:3e:65:d2:cf", - "fref": "nova-instance-instance-00000001-fa163e65d2cf", - "name": "tap002a338d-1e" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "network.incoming.packets", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "nova-instance-instance-00000001-fa163e65d2cf", - "timestamp": "2014-03-18T23:29:56", - "message_id": "36c89096-aef5-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "packet", - "counter_volume": 120.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "instance_type": "84", - "mac": "fa:16:3e:65:d2:cf", - "fref": "nova-instance-instance-00000001-fa163e65d2cf", - "name": "tap002a338d-1e" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "network.incoming.packets", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "nova-instance-instance-00000001-fa163e65d2cf", - "timestamp": "2014-03-18T23:28:56", - "message_id": "1325f5f2-aef5-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "packet", - "counter_volume": 120.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "instance_type": "84", - "mac": "fa:16:3e:65:d2:cf", - "fref": "nova-instance-instance-00000001-fa163e65d2cf", - "name": "tap002a338d-1e" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "network.incoming.packets", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "nova-instance-instance-00000001-fa163e65d2cf", - "timestamp": "2014-03-18T23:27:56", - "message_id": "ef9b23fa-aef4-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "packet", - "counter_volume": 117.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "instance_type": "84", - "mac": "fa:16:3e:65:d2:cf", - "fref": "nova-instance-instance-00000001-fa163e65d2cf", - "name": "tap002a338d-1e" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "network.incoming.packets", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "nova-instance-instance-00000001-fa163e65d2cf", - "timestamp": "2014-03-18T23:26:55", - "message_id": "cb160cfc-aef4-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "packet", - "counter_volume": 32.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "instance_type": "84", - "mac": "fa:16:3e:65:d2:cf", - "fref": "nova-instance-instance-00000001-fa163e65d2cf", - "name": "tap002a338d-1e" - }, - "counter_type": "cumulative" - } - ] -} \ No newline at end of file diff --git a/distil/tests/unit/data/map_fixture_101.json b/distil/tests/unit/data/map_fixture_101.json deleted file mode 100644 index 2158efb..0000000 --- a/distil/tests/unit/data/map_fixture_101.json +++ /dev/null @@ -1,346 +0,0 @@ -{ - "http://localhost:8777/v2/meters/network.outgoing.bytes?q.field=resource_id&q.value=nova-instance-instance-00000001-fa163e65d2cf": [ - { - "counter_name": "network.outgoing.bytes", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "nova-instance-instance-00000001-fa163e65d2cf", - "timestamp": "2014-03-18T23:59:58", - "message_id": "693e84a0-aef9-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 12812.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "instance_type": "42", - "mac": "fa:16:3e:65:d2:cf", - "fref": "nova-instance-instance-00000001-fa163e65d2cf", - "name": "tap002a338d-1e" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "network.outgoing.bytes", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "nova-instance-instance-00000001-fa163e65d2cf", - "timestamp": "2014-03-18T23:58:58", - "message_id": "4531b9d8-aef9-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 12812.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "instance_type": "42", - "mac": "fa:16:3e:65:d2:cf", - "fref": "nova-instance-instance-00000001-fa163e65d2cf", - "name": "tap002a338d-1e" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "network.outgoing.bytes", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "nova-instance-instance-00000001-fa163e65d2cf", - "timestamp": "2014-03-18T23:57:58", - "message_id": "217e4b96-aef9-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 12812.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "instance_type": "42", - "mac": "fa:16:3e:65:d2:cf", - "fref": "nova-instance-instance-00000001-fa163e65d2cf", - "name": "tap002a338d-1e" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "network.outgoing.bytes", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "nova-instance-instance-00000001-fa163e65d2cf", - "timestamp": "2014-03-18T23:56:58", - "message_id": "fdbdde1a-aef8-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 12812.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "instance_type": "42", - "mac": "fa:16:3e:65:d2:cf", - "fref": "nova-instance-instance-00000001-fa163e65d2cf", - "name": "tap002a338d-1e" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "network.outgoing.bytes", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "nova-instance-instance-00000001-fa163e65d2cf", - "timestamp": "2014-03-18T23:39:57", - "message_id": "9d1816d6-aef6-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 13546.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "instance_type": "84", - "mac": "fa:16:3e:65:d2:cf", - "fref": "nova-instance-instance-00000001-fa163e65d2cf", - "name": "tap002a338d-1e" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "network.outgoing.bytes", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "nova-instance-instance-00000001-fa163e65d2cf", - "timestamp": "2014-03-18T23:38:57", - "message_id": "79383570-aef6-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 13546.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "instance_type": "84", - "mac": "fa:16:3e:65:d2:cf", - "fref": "nova-instance-instance-00000001-fa163e65d2cf", - "name": "tap002a338d-1e" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "network.outgoing.bytes", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "nova-instance-instance-00000001-fa163e65d2cf", - "timestamp": "2014-03-18T23:37:57", - "message_id": "557ac288-aef6-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 13546.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "instance_type": "84", - "mac": "fa:16:3e:65:d2:cf", - "fref": "nova-instance-instance-00000001-fa163e65d2cf", - "name": "tap002a338d-1e" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "network.outgoing.bytes", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "nova-instance-instance-00000001-fa163e65d2cf", - "timestamp": "2014-03-18T23:36:57", - "message_id": "31bc4f1a-aef6-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 13546.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "instance_type": "84", - "mac": "fa:16:3e:65:d2:cf", - "fref": "nova-instance-instance-00000001-fa163e65d2cf", - "name": "tap002a338d-1e" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "network.outgoing.bytes", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "nova-instance-instance-00000001-fa163e65d2cf", - "timestamp": "2014-03-18T23:35:56", - "message_id": "0debe4b0-aef6-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 13546.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "instance_type": "84", - "mac": "fa:16:3e:65:d2:cf", - "fref": "nova-instance-instance-00000001-fa163e65d2cf", - "name": "tap002a338d-1e" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "network.outgoing.bytes", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "nova-instance-instance-00000001-fa163e65d2cf", - "timestamp": "2014-03-18T23:34:56", - "message_id": "ea0b8bfe-aef5-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 13546.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "instance_type": "84", - "mac": "fa:16:3e:65:d2:cf", - "fref": "nova-instance-instance-00000001-fa163e65d2cf", - "name": "tap002a338d-1e" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "network.outgoing.bytes", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "nova-instance-instance-00000001-fa163e65d2cf", - "timestamp": "2014-03-18T23:33:56", - "message_id": "c63eaf6c-aef5-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 13546.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "instance_type": "84", - "mac": "fa:16:3e:65:d2:cf", - "fref": "nova-instance-instance-00000001-fa163e65d2cf", - "name": "tap002a338d-1e" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "network.outgoing.bytes", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "nova-instance-instance-00000001-fa163e65d2cf", - "timestamp": "2014-03-18T23:32:56", - "message_id": "a2859428-aef5-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 13546.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "instance_type": "84", - "mac": "fa:16:3e:65:d2:cf", - "fref": "nova-instance-instance-00000001-fa163e65d2cf", - "name": "tap002a338d-1e" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "network.outgoing.bytes", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "nova-instance-instance-00000001-fa163e65d2cf", - "timestamp": "2014-03-18T23:31:56", - "message_id": "7eaa1de4-aef5-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 13546.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "instance_type": "84", - "mac": "fa:16:3e:65:d2:cf", - "fref": "nova-instance-instance-00000001-fa163e65d2cf", - "name": "tap002a338d-1e" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "network.outgoing.bytes", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "nova-instance-instance-00000001-fa163e65d2cf", - "timestamp": "2014-03-18T23:30:56", - "message_id": "5afe10ee-aef5-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 13546.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "instance_type": "84", - "mac": "fa:16:3e:65:d2:cf", - "fref": "nova-instance-instance-00000001-fa163e65d2cf", - "name": "tap002a338d-1e" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "network.outgoing.bytes", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "nova-instance-instance-00000001-fa163e65d2cf", - "timestamp": "2014-03-18T23:29:56", - "message_id": "36dd4c2a-aef5-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 13546.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "instance_type": "84", - "mac": "fa:16:3e:65:d2:cf", - "fref": "nova-instance-instance-00000001-fa163e65d2cf", - "name": "tap002a338d-1e" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "network.outgoing.bytes", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "nova-instance-instance-00000001-fa163e65d2cf", - "timestamp": "2014-03-18T23:28:56", - "message_id": "133904f8-aef5-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 13546.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "instance_type": "84", - "mac": "fa:16:3e:65:d2:cf", - "fref": "nova-instance-instance-00000001-fa163e65d2cf", - "name": "tap002a338d-1e" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "network.outgoing.bytes", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "nova-instance-instance-00000001-fa163e65d2cf", - "timestamp": "2014-03-18T23:27:56", - "message_id": "efbff9e6-aef4-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 13406.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "instance_type": "84", - "mac": "fa:16:3e:65:d2:cf", - "fref": "nova-instance-instance-00000001-fa163e65d2cf", - "name": "tap002a338d-1e" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "network.outgoing.bytes", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "nova-instance-instance-00000001-fa163e65d2cf", - "timestamp": "2014-03-18T23:26:55", - "message_id": "cb2ba0d0-aef4-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 2694.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "instance_type": "84", - "mac": "fa:16:3e:65:d2:cf", - "fref": "nova-instance-instance-00000001-fa163e65d2cf", - "name": "tap002a338d-1e" - }, - "counter_type": "cumulative" - } - ] -} \ No newline at end of file diff --git a/distil/tests/unit/data/map_fixture_102.json b/distil/tests/unit/data/map_fixture_102.json deleted file mode 100644 index 3f7fc58..0000000 --- a/distil/tests/unit/data/map_fixture_102.json +++ /dev/null @@ -1,346 +0,0 @@ -{ - "http://localhost:8777/v2/meters/network.outgoing.packets?q.field=resource_id&q.value=nova-instance-instance-00000001-fa163e65d2cf": [ - { - "counter_name": "network.outgoing.packets", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "nova-instance-instance-00000001-fa163e65d2cf", - "timestamp": "2014-03-18T23:59:58", - "message_id": "693cb1fc-aef9-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "packet", - "counter_volume": 130.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "instance_type": "42", - "mac": "fa:16:3e:65:d2:cf", - "fref": "nova-instance-instance-00000001-fa163e65d2cf", - "name": "tap002a338d-1e" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "network.outgoing.packets", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "nova-instance-instance-00000001-fa163e65d2cf", - "timestamp": "2014-03-18T23:58:58", - "message_id": "452f7254-aef9-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "packet", - "counter_volume": 130.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "instance_type": "42", - "mac": "fa:16:3e:65:d2:cf", - "fref": "nova-instance-instance-00000001-fa163e65d2cf", - "name": "tap002a338d-1e" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "network.outgoing.packets", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "nova-instance-instance-00000001-fa163e65d2cf", - "timestamp": "2014-03-18T23:57:58", - "message_id": "217c33d8-aef9-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "packet", - "counter_volume": 130.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "instance_type": "42", - "mac": "fa:16:3e:65:d2:cf", - "fref": "nova-instance-instance-00000001-fa163e65d2cf", - "name": "tap002a338d-1e" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "network.outgoing.packets", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "nova-instance-instance-00000001-fa163e65d2cf", - "timestamp": "2014-03-18T23:56:58", - "message_id": "fdbba528-aef8-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "packet", - "counter_volume": 130.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "instance_type": "42", - "mac": "fa:16:3e:65:d2:cf", - "fref": "nova-instance-instance-00000001-fa163e65d2cf", - "name": "tap002a338d-1e" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "network.outgoing.packets", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "nova-instance-instance-00000001-fa163e65d2cf", - "timestamp": "2014-03-18T23:39:57", - "message_id": "9d158a56-aef6-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "packet", - "counter_volume": 140.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "instance_type": "84", - "mac": "fa:16:3e:65:d2:cf", - "fref": "nova-instance-instance-00000001-fa163e65d2cf", - "name": "tap002a338d-1e" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "network.outgoing.packets", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "nova-instance-instance-00000001-fa163e65d2cf", - "timestamp": "2014-03-18T23:38:57", - "message_id": "7936ba38-aef6-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "packet", - "counter_volume": 140.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "instance_type": "84", - "mac": "fa:16:3e:65:d2:cf", - "fref": "nova-instance-instance-00000001-fa163e65d2cf", - "name": "tap002a338d-1e" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "network.outgoing.packets", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "nova-instance-instance-00000001-fa163e65d2cf", - "timestamp": "2014-03-18T23:37:57", - "message_id": "55787c62-aef6-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "packet", - "counter_volume": 140.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "instance_type": "84", - "mac": "fa:16:3e:65:d2:cf", - "fref": "nova-instance-instance-00000001-fa163e65d2cf", - "name": "tap002a338d-1e" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "network.outgoing.packets", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "nova-instance-instance-00000001-fa163e65d2cf", - "timestamp": "2014-03-18T23:36:57", - "message_id": "31b997fc-aef6-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "packet", - "counter_volume": 140.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "instance_type": "84", - "mac": "fa:16:3e:65:d2:cf", - "fref": "nova-instance-instance-00000001-fa163e65d2cf", - "name": "tap002a338d-1e" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "network.outgoing.packets", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "nova-instance-instance-00000001-fa163e65d2cf", - "timestamp": "2014-03-18T23:35:56", - "message_id": "0de9e692-aef6-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "packet", - "counter_volume": 140.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "instance_type": "84", - "mac": "fa:16:3e:65:d2:cf", - "fref": "nova-instance-instance-00000001-fa163e65d2cf", - "name": "tap002a338d-1e" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "network.outgoing.packets", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "nova-instance-instance-00000001-fa163e65d2cf", - "timestamp": "2014-03-18T23:34:56", - "message_id": "ea0a32e0-aef5-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "packet", - "counter_volume": 140.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "instance_type": "84", - "mac": "fa:16:3e:65:d2:cf", - "fref": "nova-instance-instance-00000001-fa163e65d2cf", - "name": "tap002a338d-1e" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "network.outgoing.packets", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "nova-instance-instance-00000001-fa163e65d2cf", - "timestamp": "2014-03-18T23:33:56", - "message_id": "c63d6f8a-aef5-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "packet", - "counter_volume": 140.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "instance_type": "84", - "mac": "fa:16:3e:65:d2:cf", - "fref": "nova-instance-instance-00000001-fa163e65d2cf", - "name": "tap002a338d-1e" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "network.outgoing.packets", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "nova-instance-instance-00000001-fa163e65d2cf", - "timestamp": "2014-03-18T23:32:56", - "message_id": "a2846454-aef5-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "packet", - "counter_volume": 140.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "instance_type": "84", - "mac": "fa:16:3e:65:d2:cf", - "fref": "nova-instance-instance-00000001-fa163e65d2cf", - "name": "tap002a338d-1e" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "network.outgoing.packets", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "nova-instance-instance-00000001-fa163e65d2cf", - "timestamp": "2014-03-18T23:31:56", - "message_id": "7ea8dc04-aef5-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "packet", - "counter_volume": 140.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "instance_type": "84", - "mac": "fa:16:3e:65:d2:cf", - "fref": "nova-instance-instance-00000001-fa163e65d2cf", - "name": "tap002a338d-1e" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "network.outgoing.packets", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "nova-instance-instance-00000001-fa163e65d2cf", - "timestamp": "2014-03-18T23:30:56", - "message_id": "5afc8b16-aef5-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "packet", - "counter_volume": 140.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "instance_type": "84", - "mac": "fa:16:3e:65:d2:cf", - "fref": "nova-instance-instance-00000001-fa163e65d2cf", - "name": "tap002a338d-1e" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "network.outgoing.packets", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "nova-instance-instance-00000001-fa163e65d2cf", - "timestamp": "2014-03-18T23:29:56", - "message_id": "36dbc800-aef5-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "packet", - "counter_volume": 140.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "instance_type": "84", - "mac": "fa:16:3e:65:d2:cf", - "fref": "nova-instance-instance-00000001-fa163e65d2cf", - "name": "tap002a338d-1e" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "network.outgoing.packets", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "nova-instance-instance-00000001-fa163e65d2cf", - "timestamp": "2014-03-18T23:28:56", - "message_id": "1337b710-aef5-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "packet", - "counter_volume": 140.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "instance_type": "84", - "mac": "fa:16:3e:65:d2:cf", - "fref": "nova-instance-instance-00000001-fa163e65d2cf", - "name": "tap002a338d-1e" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "network.outgoing.packets", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "nova-instance-instance-00000001-fa163e65d2cf", - "timestamp": "2014-03-18T23:27:56", - "message_id": "efbec60c-aef4-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "packet", - "counter_volume": 138.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "instance_type": "84", - "mac": "fa:16:3e:65:d2:cf", - "fref": "nova-instance-instance-00000001-fa163e65d2cf", - "name": "tap002a338d-1e" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "network.outgoing.packets", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "nova-instance-instance-00000001-fa163e65d2cf", - "timestamp": "2014-03-18T23:26:55", - "message_id": "cb2a1f44-aef4-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "packet", - "counter_volume": 24.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "instance_type": "84", - "mac": "fa:16:3e:65:d2:cf", - "fref": "nova-instance-instance-00000001-fa163e65d2cf", - "name": "tap002a338d-1e" - }, - "counter_type": "cumulative" - } - ] -} \ No newline at end of file diff --git a/distil/tests/unit/data/map_fixture_103.json b/distil/tests/unit/data/map_fixture_103.json deleted file mode 100644 index 4df9964..0000000 --- a/distil/tests/unit/data/map_fixture_103.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "http://localhost:8777/v2/resources/nova-instance-instance-00000002-fa163e17ab99": { - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "links": [ - { - "href": "http://localhost:8777/v2/resources/nova-instance-instance-00000002-fa163e17ab99", - "rel": "self" - }, - { - "href": "http://localhost:8777/v2/meters/network.incoming.bytes?q.field=resource_id&q.value=nova-instance-instance-00000002-fa163e17ab99", - "rel": "network.incoming.bytes" - }, - { - "href": "http://localhost:8777/v2/meters/network.incoming.packets?q.field=resource_id&q.value=nova-instance-instance-00000002-fa163e17ab99", - "rel": "network.incoming.packets" - }, - { - "href": "http://localhost:8777/v2/meters/network.outgoing.bytes?q.field=resource_id&q.value=nova-instance-instance-00000002-fa163e17ab99", - "rel": "network.outgoing.bytes" - }, - { - "href": "http://localhost:8777/v2/meters/network.outgoing.packets?q.field=resource_id&q.value=nova-instance-instance-00000002-fa163e17ab99", - "rel": "network.outgoing.packets" - } - ], - "resource_id": "nova-instance-instance-00000002-fa163e17ab99", - "last_sample_timestamp": "2014-03-18T23:29:55", - "first_sample_timestamp": "2014-03-18T23:27:55", - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "metadata": { - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "instance_type": "42", - "mac": "fa:16:3e:17:ab:99", - "fref": "nova-instance-instance-00000002-fa163e17ab99", - "name": "tap06245705-ed" - } - } -} \ No newline at end of file diff --git a/distil/tests/unit/data/map_fixture_104.json b/distil/tests/unit/data/map_fixture_104.json deleted file mode 100644 index 6062fd5..0000000 --- a/distil/tests/unit/data/map_fixture_104.json +++ /dev/null @@ -1,61 +0,0 @@ -{ - "http://localhost:8777/v2/meters/network.incoming.bytes?q.field=resource_id&q.value=nova-instance-instance-00000002-fa163e17ab99": [ - { - "counter_name": "network.incoming.bytes", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "nova-instance-instance-00000002-fa163e17ab99", - "timestamp": "2014-03-18T23:29:55", - "message_id": "367c6194-aef5-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 11724.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "instance_type": "42", - "mac": "fa:16:3e:17:ab:99", - "fref": "nova-instance-instance-00000002-fa163e17ab99", - "name": "tap06245705-ed" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "network.incoming.bytes", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "nova-instance-instance-00000002-fa163e17ab99", - "timestamp": "2014-03-18T23:28:55", - "message_id": "12d62bc6-aef5-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 11724.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "instance_type": "42", - "mac": "fa:16:3e:17:ab:99", - "fref": "nova-instance-instance-00000002-fa163e17ab99", - "name": "tap06245705-ed" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "network.incoming.bytes", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "nova-instance-instance-00000002-fa163e17ab99", - "timestamp": "2014-03-18T23:27:55", - "message_id": "ef328cc8-aef4-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3234.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "instance_type": "42", - "mac": "fa:16:3e:17:ab:99", - "fref": "nova-instance-instance-00000002-fa163e17ab99", - "name": "tap06245705-ed" - }, - "counter_type": "cumulative" - } - ] -} \ No newline at end of file diff --git a/distil/tests/unit/data/map_fixture_105.json b/distil/tests/unit/data/map_fixture_105.json deleted file mode 100644 index 4e16048..0000000 --- a/distil/tests/unit/data/map_fixture_105.json +++ /dev/null @@ -1,61 +0,0 @@ -{ - "http://localhost:8777/v2/meters/network.incoming.packets?q.field=resource_id&q.value=nova-instance-instance-00000002-fa163e17ab99": [ - { - "counter_name": "network.incoming.packets", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "nova-instance-instance-00000002-fa163e17ab99", - "timestamp": "2014-03-18T23:29:55", - "message_id": "367dfca2-aef5-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "packet", - "counter_volume": 111.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "instance_type": "42", - "mac": "fa:16:3e:17:ab:99", - "fref": "nova-instance-instance-00000002-fa163e17ab99", - "name": "tap06245705-ed" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "network.incoming.packets", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "nova-instance-instance-00000002-fa163e17ab99", - "timestamp": "2014-03-18T23:28:55", - "message_id": "12d922c2-aef5-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "packet", - "counter_volume": 111.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "instance_type": "42", - "mac": "fa:16:3e:17:ab:99", - "fref": "nova-instance-instance-00000002-fa163e17ab99", - "name": "tap06245705-ed" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "network.incoming.packets", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "nova-instance-instance-00000002-fa163e17ab99", - "timestamp": "2014-03-18T23:27:55", - "message_id": "ef34d0e6-aef4-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "packet", - "counter_volume": 29.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "instance_type": "42", - "mac": "fa:16:3e:17:ab:99", - "fref": "nova-instance-instance-00000002-fa163e17ab99", - "name": "tap06245705-ed" - }, - "counter_type": "cumulative" - } - ] -} \ No newline at end of file diff --git a/distil/tests/unit/data/map_fixture_106.json b/distil/tests/unit/data/map_fixture_106.json deleted file mode 100644 index 16b1f96..0000000 --- a/distil/tests/unit/data/map_fixture_106.json +++ /dev/null @@ -1,61 +0,0 @@ -{ - "http://localhost:8777/v2/meters/network.outgoing.bytes?q.field=resource_id&q.value=nova-instance-instance-00000002-fa163e17ab99": [ - { - "counter_name": "network.outgoing.bytes", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "nova-instance-instance-00000002-fa163e17ab99", - "timestamp": "2014-03-18T23:29:55", - "message_id": "36a25796-aef5-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 13492.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "instance_type": "42", - "mac": "fa:16:3e:17:ab:99", - "fref": "nova-instance-instance-00000002-fa163e17ab99", - "name": "tap06245705-ed" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "network.outgoing.bytes", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "nova-instance-instance-00000002-fa163e17ab99", - "timestamp": "2014-03-18T23:28:56", - "message_id": "1300dc5e-aef5-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 13492.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "instance_type": "42", - "mac": "fa:16:3e:17:ab:99", - "fref": "nova-instance-instance-00000002-fa163e17ab99", - "name": "tap06245705-ed" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "network.outgoing.bytes", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "nova-instance-instance-00000002-fa163e17ab99", - "timestamp": "2014-03-18T23:27:56", - "message_id": "ef5a5d98-aef4-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3297.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "instance_type": "42", - "mac": "fa:16:3e:17:ab:99", - "fref": "nova-instance-instance-00000002-fa163e17ab99", - "name": "tap06245705-ed" - }, - "counter_type": "cumulative" - } - ] -} \ No newline at end of file diff --git a/distil/tests/unit/data/map_fixture_107.json b/distil/tests/unit/data/map_fixture_107.json deleted file mode 100644 index a66e202..0000000 --- a/distil/tests/unit/data/map_fixture_107.json +++ /dev/null @@ -1,61 +0,0 @@ -{ - "http://localhost:8777/v2/meters/network.outgoing.packets?q.field=resource_id&q.value=nova-instance-instance-00000002-fa163e17ab99": [ - { - "counter_name": "network.outgoing.packets", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "nova-instance-instance-00000002-fa163e17ab99", - "timestamp": "2014-03-18T23:29:55", - "message_id": "36a0f0a4-aef5-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "packet", - "counter_volume": 139.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "instance_type": "42", - "mac": "fa:16:3e:17:ab:99", - "fref": "nova-instance-instance-00000002-fa163e17ab99", - "name": "tap06245705-ed" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "network.outgoing.packets", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "nova-instance-instance-00000002-fa163e17ab99", - "timestamp": "2014-03-18T23:28:56", - "message_id": "12ff3944-aef5-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "packet", - "counter_volume": 139.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "instance_type": "42", - "mac": "fa:16:3e:17:ab:99", - "fref": "nova-instance-instance-00000002-fa163e17ab99", - "name": "tap06245705-ed" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "network.outgoing.packets", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "nova-instance-instance-00000002-fa163e17ab99", - "timestamp": "2014-03-18T23:27:56", - "message_id": "ef5898e6-aef4-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "packet", - "counter_volume": 30.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "instance_type": "42", - "mac": "fa:16:3e:17:ab:99", - "fref": "nova-instance-instance-00000002-fa163e17ab99", - "name": "tap06245705-ed" - }, - "counter_type": "cumulative" - } - ] -} \ No newline at end of file diff --git a/distil/tests/unit/data/map_fixture_11.json b/distil/tests/unit/data/map_fixture_11.json deleted file mode 100644 index ac52d14..0000000 --- a/distil/tests/unit/data/map_fixture_11.json +++ /dev/null @@ -1,5232 +0,0 @@ -{ - "http://localhost:8777/v2/meters/image.size?q.field=resource_id&q.value=2c9af0eb-4960-49c2-8c1c-b60de446f212": [ - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T23:59:52", - "message_id": "6570ab6e-aef9-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T23:58:52", - "message_id": "41b26d8e-aef9-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T23:57:52", - "message_id": "1def4cd2-aef9-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T23:56:52", - "message_id": "fa1df6aa-aef8-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T23:55:52", - "message_id": "d6506e4c-aef8-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T23:54:52", - "message_id": "b28db2da-aef8-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T23:53:52", - "message_id": "8ecaf114-aef8-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T23:52:52", - "message_id": "6b0550da-aef8-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T23:51:52", - "message_id": "4761bbd2-aef8-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T23:50:52", - "message_id": "23870d52-aef8-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T23:49:52", - "message_id": "ffb9065a-aef7-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T23:48:52", - "message_id": "dbef8a1e-aef7-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T23:47:52", - "message_id": "b82e0d08-aef7-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T23:46:52", - "message_id": "94707b30-aef7-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T23:45:52", - "message_id": "7099489a-aef7-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T23:44:51", - "message_id": "4cccd170-aef7-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T23:43:51", - "message_id": "290936b6-aef7-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T23:42:51", - "message_id": "054179be-aef7-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T23:41:51", - "message_id": "e17aa24e-aef6-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T23:40:52", - "message_id": "bde6c290-aef6-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T23:39:52", - "message_id": "99fe721a-aef6-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T23:38:51", - "message_id": "7634a4b2-aef6-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T23:37:51", - "message_id": "5274edca-aef6-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T23:36:51", - "message_id": "2ea7a022-aef6-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T23:35:51", - "message_id": "0ae8e97a-aef6-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T23:34:51", - "message_id": "e7120cca-aef5-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T23:33:51", - "message_id": "c34ee128-aef5-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T23:32:51", - "message_id": "9f850ec0-aef5-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T23:31:51", - "message_id": "7bbca232-aef5-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T23:30:51", - "message_id": "57f8844c-aef5-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T23:29:51", - "message_id": "34477224-aef5-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T23:28:51", - "message_id": "1071fbbc-aef5-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T23:27:52", - "message_id": "ecd73c76-aef4-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T23:26:51", - "message_id": "c8ffa496-aef4-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T23:25:52", - "message_id": "a5793992-aef4-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T23:24:51", - "message_id": "815e3198-aef4-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T23:23:51", - "message_id": "5d8f1232-aef4-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T23:22:51", - "message_id": "39c1b6d4-aef4-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T23:21:51", - "message_id": "15fcafc4-aef4-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T23:20:51", - "message_id": "f23a12ca-aef3-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T23:19:51", - "message_id": "ce83d8d4-aef3-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T23:18:51", - "message_id": "aac1ad40-aef3-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T23:17:51", - "message_id": "86eb2dd8-aef3-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T23:16:51", - "message_id": "6322c32a-aef3-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T23:15:51", - "message_id": "3f60a7e0-aef3-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T23:14:51", - "message_id": "1b90534c-aef3-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T23:13:51", - "message_id": "f7d37510-aef2-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T23:12:51", - "message_id": "d404d2be-aef2-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T23:11:51", - "message_id": "b0405830-aef2-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T23:10:51", - "message_id": "8c799114-aef2-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T23:09:51", - "message_id": "68b7adba-aef2-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T23:08:51", - "message_id": "45073ffc-aef2-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T23:07:51", - "message_id": "21323802-aef2-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T23:06:51", - "message_id": "fd647354-aef1-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T23:05:51", - "message_id": "d9a12e9e-aef1-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T23:04:51", - "message_id": "b5d041c6-aef1-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T23:03:51", - "message_id": "9217ff3a-aef1-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T23:02:51", - "message_id": "6e4a30c8-aef1-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T23:01:51", - "message_id": "4a835764-aef1-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T23:00:51", - "message_id": "26bc28f6-aef1-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T22:59:51", - "message_id": "02f926f8-aef1-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T22:58:51", - "message_id": "df302f96-aef0-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T22:57:51", - "message_id": "bb9cb428-aef0-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T22:56:51", - "message_id": "97a7901a-aef0-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T22:55:51", - "message_id": "73e0018a-aef0-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T22:54:51", - "message_id": "50152c9e-aef0-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T22:53:51", - "message_id": "2c532770-aef0-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T22:52:51", - "message_id": "089e7d48-aef0-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T22:51:50", - "message_id": "e4c42242-aeef-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T22:50:50", - "message_id": "c100dfbc-aeef-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T22:49:50", - "message_id": "9d3cb092-aeef-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T22:48:50", - "message_id": "79772b6a-aeef-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T22:47:50", - "message_id": "55ad110e-aeef-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T22:46:51", - "message_id": "31ff6310-aeef-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T22:45:50", - "message_id": "0e21b1aa-aeef-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T22:44:50", - "message_id": "ea5dc614-aeee-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T22:43:50", - "message_id": "c691485a-aeee-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T22:42:50", - "message_id": "a2ce2816-aeee-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T22:41:50", - "message_id": "7f1b180c-aeee-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T22:40:50", - "message_id": "5b3e88b0-aeee-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T22:39:50", - "message_id": "37819b88-aeee-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T22:38:50", - "message_id": "13b9272a-aeee-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T22:37:50", - "message_id": "eff4620a-aeed-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T22:36:50", - "message_id": "cc41eae4-aeed-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T22:35:50", - "message_id": "a86552c8-aeed-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T22:34:50", - "message_id": "84a1b8cc-aeed-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T22:33:50", - "message_id": "60defd46-aeed-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T22:32:50", - "message_id": "3d146180-aeed-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T22:31:50", - "message_id": "1962fd00-aeed-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T22:30:50", - "message_id": "f5895e4c-aeec-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T22:29:50", - "message_id": "d1c912ae-aeec-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T22:28:50", - "message_id": "adfbdf5a-aeec-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T22:27:50", - "message_id": "8a3af7f4-aeec-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T22:26:50", - "message_id": "6686f4de-aeec-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T22:25:50", - "message_id": "42a38a0a-aeec-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T22:24:50", - "message_id": "1ee0d6b8-aeec-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T22:23:50", - "message_id": "fb27a2ba-aeeb-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T22:22:50", - "message_id": "d7569c6a-aeeb-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T22:21:50", - "message_id": "b391edf2-aeeb-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T22:20:50", - "message_id": "8fde6066-aeeb-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T22:19:50", - "message_id": "6c032258-aeeb-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T22:18:50", - "message_id": "484374da-aeeb-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T22:17:50", - "message_id": "247ea8a8-aeeb-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T22:16:50", - "message_id": "00b34352-aeeb-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T22:15:50", - "message_id": "dcfb9f9a-aeea-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T22:14:50", - "message_id": "b921653c-aeea-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T22:13:50", - "message_id": "9561f026-aeea-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T22:12:50", - "message_id": "719c11bc-aeea-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T22:11:50", - "message_id": "4dd5c9f8-aeea-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T22:10:50", - "message_id": "2a1b4524-aeea-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T22:09:50", - "message_id": "06447242-aeea-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T22:08:50", - "message_id": "e282d33a-aee9-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T22:07:50", - "message_id": "bec2dc24-aee9-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T22:06:50", - "message_id": "9af8662e-aee9-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T22:05:50", - "message_id": "773dcba2-aee9-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T22:04:50", - "message_id": "535dfba8-aee9-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T22:03:50", - "message_id": "2f9f8042-aee9-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T22:02:50", - "message_id": "0be343e6-aee9-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T22:01:50", - "message_id": "e81c4eee-aee8-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T22:00:50", - "message_id": "c45e4854-aee8-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T21:59:50", - "message_id": "a08705d8-aee8-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T21:58:50", - "message_id": "7cc503ca-aee8-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T21:57:50", - "message_id": "5904d35c-aee8-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T21:56:50", - "message_id": "353efbbe-aee8-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T21:55:50", - "message_id": "117e7ace-aee8-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T21:54:49", - "message_id": "ed9dc970-aee7-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T21:53:49", - "message_id": "c9e43474-aee7-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T21:52:49", - "message_id": "a61cd884-aee7-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T21:51:49", - "message_id": "825a4832-aee7-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T21:50:49", - "message_id": "5e9f045a-aee7-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T21:49:49", - "message_id": "3ac66e6a-aee7-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T21:48:49", - "message_id": "17090870-aee7-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T21:47:49", - "message_id": "f340dce2-aee6-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T21:46:49", - "message_id": "cf7c91fc-aee6-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T21:45:49", - "message_id": "abc60bda-aee6-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T21:44:49", - "message_id": "87e375e0-aee6-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T21:43:49", - "message_id": "64217c88-aee6-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T21:42:49", - "message_id": "405b9194-aee6-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T21:41:49", - "message_id": "1c9a63fc-aee6-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T21:40:49", - "message_id": "f8e61cd0-aee5-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T21:39:49", - "message_id": "d507cb6a-aee5-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T21:38:49", - "message_id": "b146999a-aee5-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T21:37:49", - "message_id": "8d82af8a-aee5-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T21:36:49", - "message_id": "69ba641c-aee5-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T21:35:49", - "message_id": "460493e4-aee5-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T21:34:49", - "message_id": "222719e2-aee5-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T21:33:49", - "message_id": "fe5acb6c-aee4-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T21:32:49", - "message_id": "da9747be-aee4-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T21:31:49", - "message_id": "b6daaf28-aee4-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T21:30:49", - "message_id": "9313c11a-aee4-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T21:29:49", - "message_id": "6f5b96b2-aee4-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T21:28:49", - "message_id": "4b886120-aee4-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T21:27:49", - "message_id": "27c553b0-aee4-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T21:26:49", - "message_id": "04006cee-aee4-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T21:25:49", - "message_id": "e02f65d6-aee3-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T21:24:49", - "message_id": "bc78d1a4-aee3-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T21:23:49", - "message_id": "98a15e86-aee3-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T21:22:49", - "message_id": "74dae60c-aee3-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T21:21:49", - "message_id": "5119c1de-aee3-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T21:20:49", - "message_id": "2d509318-aee3-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T21:19:49", - "message_id": "098e046a-aee3-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T21:18:49", - "message_id": "e5de9f7a-aee2-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T21:17:49", - "message_id": "c209cb56-aee2-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T21:16:49", - "message_id": "9e43b0b0-aee2-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T21:15:49", - "message_id": "7a79d042-aee2-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T21:14:49", - "message_id": "56abead8-aee2-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T21:13:49", - "message_id": "32f02d0c-aee2-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T21:12:49", - "message_id": "0f136cbe-aee2-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T21:11:48", - "message_id": "eb4b3712-aee1-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T21:10:48", - "message_id": "c77f22ee-aee1-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T21:09:48", - "message_id": "a3b206ec-aee1-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T21:08:48", - "message_id": "7ffcf22a-aee1-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T21:08:29.555960", - "message_id": "748f35ec-aee1-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "event_type": "image.update", - "name": "cirros-0.3.1-x86_64-uec", - "min_disk": "0", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "host": "vagrant-ubuntu-precise-64", - "protected": "False", - "id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "container_format": "ami", - "owner": "7a64220a45c84104ac95258de1a3720a", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T21:08:29.526328", - "message_id": "74721296-aee1-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "saving", - "event_type": "image.upload", - "name": "cirros-0.3.1-x86_64-uec", - "min_disk": "0", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "host": "vagrant-ubuntu-precise-64", - "protected": "False", - "id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "container_format": "ami", - "owner": "7a64220a45c84104ac95258de1a3720a", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - } - ] -} \ No newline at end of file diff --git a/distil/tests/unit/data/map_fixture_12.json b/distil/tests/unit/data/map_fixture_12.json deleted file mode 100644 index f4f79b5..0000000 --- a/distil/tests/unit/data/map_fixture_12.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "http://localhost:8777/v2/meters/image.update?q.field=resource_id&q.value=2c9af0eb-4960-49c2-8c1c-b60de446f212": [ - { - "counter_name": "image.update", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T21:08:29.555960", - "message_id": "748e7760-aee1-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "event_type": "image.update", - "name": "cirros-0.3.1-x86_64-uec", - "min_disk": "0", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "host": "vagrant-ubuntu-precise-64", - "protected": "False", - "id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "container_format": "ami", - "owner": "7a64220a45c84104ac95258de1a3720a", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "delta" - } - ] -} \ No newline at end of file diff --git a/distil/tests/unit/data/map_fixture_13.json b/distil/tests/unit/data/map_fixture_13.json deleted file mode 100644 index 67e96e2..0000000 --- a/distil/tests/unit/data/map_fixture_13.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "http://localhost:8777/v2/meters/image.upload?q.field=resource_id&q.value=2c9af0eb-4960-49c2-8c1c-b60de446f212": [ - { - "counter_name": "image.upload", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T21:08:29.526328", - "message_id": "7470dcb4-aee1-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "saving", - "event_type": "image.upload", - "name": "cirros-0.3.1-x86_64-uec", - "min_disk": "0", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "host": "vagrant-ubuntu-precise-64", - "protected": "False", - "id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "container_format": "ami", - "owner": "7a64220a45c84104ac95258de1a3720a", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "delta" - } - ] -} \ No newline at end of file diff --git a/distil/tests/unit/data/map_fixture_14.json b/distil/tests/unit/data/map_fixture_14.json deleted file mode 100644 index 76295ed..0000000 --- a/distil/tests/unit/data/map_fixture_14.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "http://localhost:8777/v2/resources/5b771cb2-961a-4042-a814-2f78c5545f8a": { - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "links": [ - { - "href": "http://localhost:8777/v2/resources/5b771cb2-961a-4042-a814-2f78c5545f8a", - "rel": "self" - }, - { - "href": "http://localhost:8777/v2/meters/network?q.field=resource_id&q.value=5b771cb2-961a-4042-a814-2f78c5545f8a", - "rel": "network" - }, - { - "href": "http://localhost:8777/v2/meters/network.create?q.field=resource_id&q.value=5b771cb2-961a-4042-a814-2f78c5545f8a", - "rel": "network.create" - } - ], - "resource_id": "5b771cb2-961a-4042-a814-2f78c5545f8a", - "last_sample_timestamp": "2014-03-18T21:07:15.859001", - "first_sample_timestamp": "2014-03-18T21:07:15.859001", - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "metadata": { - "status": "ACTIVE", - "event_type": "network.create.end", - "provider:physical_network": "None", - "admin_state_up": "True", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "provider:network_type": "local", - "host": "network.vagrant-ubuntu-precise-64", - "shared": "False", - "name": "private", - "id": "5b771cb2-961a-4042-a814-2f78c5545f8a", - "provider:segmentation_id": "None" - } - } -} \ No newline at end of file diff --git a/distil/tests/unit/data/map_fixture_15.json b/distil/tests/unit/data/map_fixture_15.json deleted file mode 100644 index c1e1ff3..0000000 --- a/distil/tests/unit/data/map_fixture_15.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "http://localhost:8777/v2/meters/network?q.field=resource_id&q.value=5b771cb2-961a-4042-a814-2f78c5545f8a": [ - { - "counter_name": "network", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "5b771cb2-961a-4042-a814-2f78c5545f8a", - "timestamp": "2014-03-18T21:07:15.859001", - "message_id": "5cffb000-aee1-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "network", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "status": "ACTIVE", - "event_type": "network.create.end", - "provider:physical_network": "None", - "admin_state_up": "True", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "provider:network_type": "local", - "host": "network.vagrant-ubuntu-precise-64", - "shared": "False", - "name": "private", - "id": "5b771cb2-961a-4042-a814-2f78c5545f8a", - "provider:segmentation_id": "None" - }, - "counter_type": "gauge" - } - ] -} \ No newline at end of file diff --git a/distil/tests/unit/data/map_fixture_16.json b/distil/tests/unit/data/map_fixture_16.json deleted file mode 100644 index a7c2a0d..0000000 --- a/distil/tests/unit/data/map_fixture_16.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "http://localhost:8777/v2/meters/network.create?q.field=resource_id&q.value=5b771cb2-961a-4042-a814-2f78c5545f8a": [ - { - "counter_name": "network.create", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "5b771cb2-961a-4042-a814-2f78c5545f8a", - "timestamp": "2014-03-18T21:07:15.859001", - "message_id": "5cfffdf8-aee1-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "network", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "status": "ACTIVE", - "event_type": "network.create.end", - "provider:physical_network": "None", - "admin_state_up": "True", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "provider:network_type": "local", - "host": "network.vagrant-ubuntu-precise-64", - "shared": "False", - "name": "private", - "id": "5b771cb2-961a-4042-a814-2f78c5545f8a", - "provider:segmentation_id": "None" - }, - "counter_type": "delta" - } - ] -} \ No newline at end of file diff --git a/distil/tests/unit/data/map_fixture_17.json b/distil/tests/unit/data/map_fixture_17.json deleted file mode 100644 index 990bbd0..0000000 --- a/distil/tests/unit/data/map_fixture_17.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "http://localhost:8777/v2/resources/6d53d8e1-7738-4d35-a012-344042a7669a": { - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "links": [ - { - "href": "http://localhost:8777/v2/resources/6d53d8e1-7738-4d35-a012-344042a7669a", - "rel": "self" - }, - { - "href": "http://localhost:8777/v2/meters/router?q.field=resource_id&q.value=6d53d8e1-7738-4d35-a012-344042a7669a", - "rel": "router" - }, - { - "href": "http://localhost:8777/v2/meters/router.create?q.field=resource_id&q.value=6d53d8e1-7738-4d35-a012-344042a7669a", - "rel": "router.create" - }, - { - "href": "http://localhost:8777/v2/meters/router.update?q.field=resource_id&q.value=6d53d8e1-7738-4d35-a012-344042a7669a", - "rel": "router.update" - } - ], - "resource_id": "6d53d8e1-7738-4d35-a012-344042a7669a", - "last_sample_timestamp": "2014-03-18T21:07:19.748103", - "first_sample_timestamp": "2014-03-18T21:07:16.971857", - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "metadata": { - "status": "ACTIVE", - "event_type": "router.update.end", - "external_gateway_info.enable_snat": "True", - "admin_state_up": "True", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "host": "network.vagrant-ubuntu-precise-64", - "external_gateway_info.network_id": "c4bd625d-daf0-42fb-85d1-cce1de845b58", - "id": "6d53d8e1-7738-4d35-a012-344042a7669a", - "name": "router1" - } - } -} \ No newline at end of file diff --git a/distil/tests/unit/data/map_fixture_18.json b/distil/tests/unit/data/map_fixture_18.json deleted file mode 100644 index ec1c76c..0000000 --- a/distil/tests/unit/data/map_fixture_18.json +++ /dev/null @@ -1,49 +0,0 @@ -{ - "http://localhost:8777/v2/meters/router?q.field=resource_id&q.value=6d53d8e1-7738-4d35-a012-344042a7669a": [ - { - "counter_name": "router", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "6d53d8e1-7738-4d35-a012-344042a7669a", - "timestamp": "2014-03-18T21:07:19.748103", - "message_id": "5d2d8a48-aee1-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "router", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "status": "ACTIVE", - "event_type": "router.update.end", - "external_gateway_info.enable_snat": "True", - "admin_state_up": "True", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "host": "network.vagrant-ubuntu-precise-64", - "external_gateway_info.network_id": "c4bd625d-daf0-42fb-85d1-cce1de845b58", - "id": "6d53d8e1-7738-4d35-a012-344042a7669a", - "name": "router1" - }, - "counter_type": "gauge" - }, - { - "counter_name": "router", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "6d53d8e1-7738-4d35-a012-344042a7669a", - "timestamp": "2014-03-18T21:07:16.971857", - "message_id": "5d0fffb4-aee1-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "router", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "external_gateway_info": "None", - "status": "ACTIVE", - "event_type": "router.create.end", - "admin_state_up": "True", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "host": "network.vagrant-ubuntu-precise-64", - "id": "6d53d8e1-7738-4d35-a012-344042a7669a", - "name": "router1" - }, - "counter_type": "gauge" - } - ] -} \ No newline at end of file diff --git a/distil/tests/unit/data/map_fixture_19.json b/distil/tests/unit/data/map_fixture_19.json deleted file mode 100644 index 74a42e6..0000000 --- a/distil/tests/unit/data/map_fixture_19.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "http://localhost:8777/v2/meters/router.create?q.field=resource_id&q.value=6d53d8e1-7738-4d35-a012-344042a7669a": [ - { - "counter_name": "router.create", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "6d53d8e1-7738-4d35-a012-344042a7669a", - "timestamp": "2014-03-18T21:07:16.971857", - "message_id": "5d103286-aee1-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "router", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "external_gateway_info": "None", - "status": "ACTIVE", - "event_type": "router.create.end", - "admin_state_up": "True", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "host": "network.vagrant-ubuntu-precise-64", - "id": "6d53d8e1-7738-4d35-a012-344042a7669a", - "name": "router1" - }, - "counter_type": "delta" - } - ] -} \ No newline at end of file diff --git a/distil/tests/unit/data/map_fixture_2.json b/distil/tests/unit/data/map_fixture_2.json deleted file mode 100644 index 6463d65..0000000 --- a/distil/tests/unit/data/map_fixture_2.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "http://localhost:8777/v2/meters/port.create?q.field=resource_id&q.value=002a338d-1eda-4cd4-a94c-d1495db1efd9": [ - { - "counter_name": "port.create", - "user_id": "5fbff7d5c307476fb3db36f3ffbcca07", - "resource_id": "002a338d-1eda-4cd4-a94c-d1495db1efd9", - "timestamp": "2014-03-18T23:25:53.295528", - "message_id": "a702272e-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "port", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "status": "DOWN", - "binding:host_id": "vagrant-ubuntu-precise-64", - "binding:capabilities.port_filter": "True", - "admin_state_up": "True", - "network_id": "5b771cb2-961a-4042-a814-2f78c5545f8a", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "device_owner": "compute:nova", - "binding:vif_type": "ovs", - "host": "network.vagrant-ubuntu-precise-64", - "mac_address": "fa:16:3e:65:d2:cf", - "event_type": "port.create.end", - "device_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "id": "002a338d-1eda-4cd4-a94c-d1495db1efd9", - "name": "" - }, - "counter_type": "delta" - } - ] -} \ No newline at end of file diff --git a/distil/tests/unit/data/map_fixture_20.json b/distil/tests/unit/data/map_fixture_20.json deleted file mode 100644 index 3d8b38e..0000000 --- a/distil/tests/unit/data/map_fixture_20.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "http://localhost:8777/v2/meters/router.update?q.field=resource_id&q.value=6d53d8e1-7738-4d35-a012-344042a7669a": [ - { - "counter_name": "router.update", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "6d53d8e1-7738-4d35-a012-344042a7669a", - "timestamp": "2014-03-18T21:07:19.748103", - "message_id": "5d2d8da4-aee1-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "router", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "status": "ACTIVE", - "event_type": "router.update.end", - "external_gateway_info.enable_snat": "True", - "admin_state_up": "True", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "host": "network.vagrant-ubuntu-precise-64", - "external_gateway_info.network_id": "c4bd625d-daf0-42fb-85d1-cce1de845b58", - "id": "6d53d8e1-7738-4d35-a012-344042a7669a", - "name": "router1" - }, - "counter_type": "delta" - } - ] -} \ No newline at end of file diff --git a/distil/tests/unit/data/map_fixture_21.json b/distil/tests/unit/data/map_fixture_21.json deleted file mode 100644 index 4553e78..0000000 --- a/distil/tests/unit/data/map_fixture_21.json +++ /dev/null @@ -1,97 +0,0 @@ -{ - "http://localhost:8777/v2/resources/7992f8f7-0181-4a15-b6a8-99dec4d20c73": { - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "links": [ - { - "href": "http://localhost:8777/v2/resources/7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "rel": "self" - }, - { - "href": "http://localhost:8777/v2/meters/disk.ephemeral.size?q.field=resource_id&q.value=7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "rel": "disk.ephemeral.size" - }, - { - "href": "http://localhost:8777/v2/meters/disk.root.size?q.field=resource_id&q.value=7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "rel": "disk.root.size" - }, - { - "href": "http://localhost:8777/v2/meters/flavor?q.field=resource_id&q.value=7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "rel": "flavor" - }, - { - "href": "http://localhost:8777/v2/meters/instance?q.field=resource_id&q.value=7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "rel": "instance" - }, - { - "href": "http://localhost:8777/v2/meters/instance.scheduled?q.field=resource_id&q.value=7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "rel": "instance.scheduled" - }, - { - "href": "http://localhost:8777/v2/meters/instance:m1.nano?q.field=resource_id&q.value=7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "rel": "instance:m1.nano" - }, - { - "href": "http://localhost:8777/v2/meters/memory?q.field=resource_id&q.value=7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "rel": "memory" - }, - { - "href": "http://localhost:8777/v2/meters/state?q.field=resource_id&q.value=7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "rel": "state" - }, - { - "href": "http://localhost:8777/v2/meters/vcpus?q.field=resource_id&q.value=7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "rel": "vcpus" - } - ], - "resource_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "last_sample_timestamp": "2014-03-19T00:00:12.204287", - "first_sample_timestamp": "2014-03-18T23:40:00.873278", - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "metadata": { - "state_description": "", - "image_meta.base_image_ref": "", - "event_type": "compute.instance.exists", - "availability_zone": "nova", - "terminated_at": "2014-03-18T23:56:49.000000", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "deleted_at": "2014-03-18T23:56:49.000000", - "reservation_id": "r-mqh9u63a", - "instance_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "display_name": "instance3", - "instance_type": "m1.nano", - "hostname": "instance3", - "image_meta.size": "25165824", - "state": "deleted", - "image_meta.min_disk": "0", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:40:10.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_ref_url": "http://10.0.2.15:9292/images/", - "audit_period_beginning": "2014-03-18 23:00:00", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18T23:40:00.000000", - "image_meta.image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "image_meta.image_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "memory_mb": "64", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "vcpus": "1", - "architecture": "None", - "audit_period_ending": "2014-03-19 00:00:00", - "os_type": "None", - "instance_flavor_id": "42" - } - } -} \ No newline at end of file diff --git a/distil/tests/unit/data/map_fixture_22.json b/distil/tests/unit/data/map_fixture_22.json deleted file mode 100644 index 088de58..0000000 --- a/distil/tests/unit/data/map_fixture_22.json +++ /dev/null @@ -1,1132 +0,0 @@ -{ - "http://localhost:8777/v2/meters/disk.ephemeral.size?q.field=resource_id&q.value=7992f8f7-0181-4a15-b6a8-99dec4d20c73": [ - { - "counter_name": "disk.ephemeral.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "timestamp": "2014-03-19T00:00:12.204287", - "message_id": "71eea1c0-aef9-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "", - "event_type": "compute.instance.exists", - "availability_zone": "nova", - "terminated_at": "2014-03-18T23:56:49.000000", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "deleted_at": "2014-03-18T23:56:49.000000", - "reservation_id": "r-mqh9u63a", - "instance_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "display_name": "instance3", - "instance_type": "m1.nano", - "hostname": "instance3", - "image_meta.size": "25165824", - "state": "deleted", - "image_meta.min_disk": "0", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:40:10.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_ref_url": "http://10.0.2.15:9292/images/", - "audit_period_beginning": "2014-03-18 23:00:00", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18T23:40:00.000000", - "image_meta.image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "image_meta.image_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "memory_mb": "64", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "vcpus": "1", - "architecture": "None", - "audit_period_ending": "2014-03-19 00:00:00", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.ephemeral.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "timestamp": "2014-03-18T23:56:49.561007", - "message_id": "f8e9924e-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "", - "event_type": "compute.instance.delete.end", - "availability_zone": "nova", - "terminated_at": "2014-03-18T23:56:49.115564", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "deleted_at": "", - "reservation_id": "r-mqh9u63a", - "instance_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "display_name": "instance3", - "hostname": "instance3", - "image_meta.size": "25165824", - "state": "deleted", - "image_meta.min_disk": "0", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:40:10.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_ref_url": "http://10.0.2.15:9292/images/", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:40:00+00:00", - "image_meta.image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "image_meta.image_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.ephemeral.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "timestamp": "2014-03-18T23:56:49.291768", - "message_id": "f8d38918-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "2014-03-18T23:56:49.000000", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "deleted_at": "", - "reservation_id": "r-mqh9u63a", - "instance_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "display_name": "instance3", - "instance_type": "m1.nano", - "hostname": "instance3", - "image_meta.size": "25165824", - "state": "deleted", - "image_meta.min_disk": "0", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "active", - "launched_at": "2014-03-18T23:40:10.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.image_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_ref_url": "http://10.0.2.15:9292/images/", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:40:00", - "image_meta.image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "deleting", - "memory_mb": "64", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "vcpus": "1", - "architecture": "None", - "new_task_state": "None", - "audit_period_ending": "2014-03-18T23:56:49.286924", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.ephemeral.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "timestamp": "2014-03-18T23:56:49.105195", - "message_id": "f88c9ecc-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "deleting", - "image_meta.base_image_ref": "", - "event_type": "compute.instance.shutdown.end", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "deleted_at": "", - "reservation_id": "r-mqh9u63a", - "instance_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "display_name": "instance3", - "hostname": "instance3", - "image_meta.size": "25165824", - "state": "active", - "image_meta.min_disk": "0", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:40:10.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_ref_url": "http://10.0.2.15:9292/images/", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:40:00+00:00", - "image_meta.image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "image_meta.image_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.ephemeral.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "timestamp": "2014-03-18T23:56:47.762036", - "message_id": "f79462fc-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "deleting", - "image_meta.base_image_ref": "", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "deleted_at": "", - "reservation_id": "r-mqh9u63a", - "instance_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "display_name": "instance3", - "instance_type": "m1.nano", - "hostname": "instance3", - "image_meta.size": "25165824", - "state": "active", - "image_meta.min_disk": "0", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "None", - "launched_at": "2014-03-18T23:40:10.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.image_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_ref_url": "http://10.0.2.15:9292/images/", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:40:00", - "image_meta.image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "vcpus": "1", - "architecture": "None", - "new_task_state": "deleting", - "audit_period_ending": "2014-03-18T23:56:47.758932", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.ephemeral.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "timestamp": "2014-03-18T23:56:44.352762", - "message_id": "f5a05bf4-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "deleting", - "image_meta.base_image_ref": "", - "event_type": "compute.instance.shutdown.start", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "deleted_at": "", - "reservation_id": "r-mqh9u63a", - "instance_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "display_name": "instance3", - "hostname": "instance3", - "image_meta.size": "25165824", - "state": "active", - "image_meta.min_disk": "0", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:40:10.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_ref_url": "http://10.0.2.15:9292/images/", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:40:00+00:00", - "image_meta.image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "image_meta.image_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.ephemeral.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "timestamp": "2014-03-18T23:56:44.345577", - "message_id": "f598faf8-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "deleting", - "image_meta.base_image_ref": "", - "event_type": "compute.instance.delete.start", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "deleted_at": "", - "reservation_id": "r-mqh9u63a", - "instance_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "display_name": "instance3", - "hostname": "instance3", - "image_meta.size": "25165824", - "state": "active", - "image_meta.min_disk": "0", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:40:10.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_ref_url": "http://10.0.2.15:9292/images/", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:40:00+00:00", - "image_meta.image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "image_meta.image_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.ephemeral.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "timestamp": "2014-03-18T23:56:44.207101", - "message_id": "f55b7552-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "deleting", - "image_meta.base_image_ref": "", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "deleted_at": "", - "reservation_id": "r-mqh9u63a", - "instance_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "display_name": "instance3", - "instance_type": "m1.nano", - "hostname": "instance3", - "image_meta.size": "25165824", - "state": "active", - "image_meta.min_disk": "0", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "active", - "launched_at": "2014-03-18T23:40:10.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.image_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_ref_url": "http://10.0.2.15:9292/images/", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:40:00", - "image_meta.image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "vcpus": "1", - "architecture": "None", - "new_task_state": "deleting", - "audit_period_ending": "2014-03-18T23:56:44.203509", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.ephemeral.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "timestamp": "2014-03-18T23:40:10.548176", - "message_id": "a5485b0e-aef6-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "", - "event_type": "compute.instance.create.end", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "message": "Success", - "deleted_at": "", - "reservation_id": "r-mqh9u63a", - "instance_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "display_name": "instance3", - "hostname": "instance3", - "image_meta.size": "25165824", - "state": "active", - "image_meta.min_disk": "0", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:40:10.328813", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_ref_url": "http://10.0.2.15:9292/images/", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18T23:40:00.000000", - "image_meta.image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "image_meta.image_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.ephemeral.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "timestamp": "2014-03-18T23:40:10.428457", - "message_id": "a52c1ea8-aef6-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "deleted_at": "", - "reservation_id": "r-mqh9u63a", - "instance_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "display_name": "instance3", - "instance_type": "m1.nano", - "hostname": "instance3", - "image_meta.size": "25165824", - "state": "active", - "image_meta.min_disk": "0", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "building", - "launched_at": "2014-03-18T23:40:10.328813", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.image_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_ref_url": "http://10.0.2.15:9292/images/", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:40:00", - "image_meta.image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "spawning", - "memory_mb": "64", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "vcpus": "1", - "architecture": "None", - "new_task_state": "None", - "audit_period_ending": "2014-03-18T23:40:10.425800", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.ephemeral.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "timestamp": "2014-03-18T23:40:05.227996", - "message_id": "a1fa67d0-aef6-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "spawning", - "image_meta.base_image_ref": "", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "deleted_at": "", - "reservation_id": "r-mqh9u63a", - "instance_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "display_name": "instance3", - "instance_type": "m1.nano", - "hostname": "instance3", - "image_meta.size": "25165824", - "state": "building", - "image_meta.min_disk": "0", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "None", - "launched_at": "", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.image_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_ref_url": "http://10.0.2.15:9292/images/", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:40:00", - "image_meta.image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "vcpus": "1", - "architecture": "None", - "new_task_state": "spawning", - "audit_period_ending": "2014-03-18T23:40:05.223750", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.ephemeral.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "timestamp": "2014-03-18T23:40:04.711373", - "message_id": "a1c7e526-aef6-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "spawning", - "image_meta.base_image_ref": "", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "deleted_at": "", - "reservation_id": "r-mqh9u63a", - "instance_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "display_name": "instance3", - "instance_type": "m1.nano", - "hostname": "instance3", - "image_meta.size": "25165824", - "state": "building", - "image_meta.min_disk": "0", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "building", - "launched_at": "", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.image_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_ref_url": "http://10.0.2.15:9292/images/", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:40:00", - "image_meta.image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "block_device_mapping", - "memory_mb": "64", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "vcpus": "1", - "architecture": "None", - "new_task_state": "spawning", - "audit_period_ending": "2014-03-18T23:40:04.704534", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.ephemeral.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "timestamp": "2014-03-18T23:40:02.327109", - "message_id": "a173c91e-aef6-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "block_device_mapping", - "image_meta.base_image_ref": "", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "deleted_at": "", - "reservation_id": "r-mqh9u63a", - "instance_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "display_name": "instance3", - "instance_type": "m1.nano", - "hostname": "instance3", - "image_meta.size": "25165824", - "state": "building", - "image_meta.min_disk": "0", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "building", - "launched_at": "", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.image_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_ref_url": "http://10.0.2.15:9292/images/", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:40:00", - "image_meta.image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "networking", - "memory_mb": "64", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "vcpus": "1", - "architecture": "None", - "new_task_state": "block_device_mapping", - "audit_period_ending": "2014-03-18T23:40:02.315446", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.ephemeral.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "timestamp": "2014-03-18T23:40:01.946209", - "message_id": "a1710378-aef6-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "networking", - "image_meta.base_image_ref": "", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "deleted_at": "", - "reservation_id": "r-mqh9u63a", - "instance_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "display_name": "instance3", - "instance_type": "m1.nano", - "hostname": "instance3", - "image_meta.size": "25165824", - "state": "building", - "image_meta.min_disk": "0", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "building", - "launched_at": "", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.image_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_ref_url": "http://10.0.2.15:9292/images/", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:40:00", - "image_meta.image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "vcpus": "1", - "architecture": "None", - "new_task_state": "networking", - "audit_period_ending": "2014-03-18T23:40:01.941766", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.ephemeral.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "timestamp": "2014-03-18T23:40:01.700650", - "message_id": "a0d68118-aef6-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "deleted_at": "", - "reservation_id": "r-mqh9u63a", - "instance_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "display_name": "instance3", - "instance_type": "m1.nano", - "hostname": "instance3", - "image_meta.size": "25165824", - "state": "building", - "image_meta.min_disk": "0", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "None", - "launched_at": "", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.image_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_ref_url": "http://10.0.2.15:9292/images/", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:40:00", - "image_meta.image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "vcpus": "1", - "architecture": "None", - "new_task_state": "None", - "audit_period_ending": "2014-03-18T23:40:01.697845", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.ephemeral.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "timestamp": "2014-03-18T23:40:01.463409", - "message_id": "a12d7ec8-aef6-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "deleted_at": "", - "reservation_id": "r-mqh9u63a", - "instance_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "display_name": "instance3", - "instance_type": "m1.nano", - "hostname": "instance3", - "image_meta.size": "25165824", - "state": "building", - "image_meta.min_disk": "0", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "None", - "launched_at": "", - "node": "None", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.image_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_ref_url": "http://10.0.2.15:9292/images/", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:40:00", - "image_meta.image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "vcpus": "1", - "architecture": "None", - "new_task_state": "None", - "audit_period_ending": "2014-03-18T23:40:01.447651", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.ephemeral.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "timestamp": "2014-03-18T23:40:01.329597", - "message_id": "a0daed7a-aef6-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "scheduling", - "image_meta.base_image_ref": "", - "event_type": "compute.instance.create.start", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "message": "", - "deleted_at": "", - "reservation_id": "r-mqh9u63a", - "instance_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "display_name": "instance3", - "hostname": "instance3", - "image_meta.size": "25165824", - "state": "building", - "image_meta.min_disk": "0", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "", - "node": "None", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_ref_url": "http://10.0.2.15:9292/images/", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18T23:40:00.000000", - "image_meta.image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "image_meta.image_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.ephemeral.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "timestamp": "2014-03-18T23:40:01.277252", - "message_id": "9fd21dd6-aef6-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "deleted_at": "", - "reservation_id": "r-mqh9u63a", - "instance_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "display_name": "instance3", - "instance_type": "m1.nano", - "hostname": "instance3", - "image_meta.size": "25165824", - "state": "building", - "image_meta.min_disk": "0", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "building", - "launched_at": "", - "node": "None", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.image_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_ref_url": "http://10.0.2.15:9292/images/", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:40:00", - "image_meta.image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "scheduling", - "memory_mb": "64", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "vcpus": "1", - "architecture": "None", - "new_task_state": "None", - "audit_period_ending": "2014-03-18T23:40:01.273406", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.ephemeral.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "timestamp": "2014-03-18T23:40:00.873278", - "message_id": "9fa24566-aef6-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "scheduling", - "image_meta.base_image_ref": "", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "deleted_at": "", - "reservation_id": "r-mqh9u63a", - "instance_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "display_name": "instance3", - "instance_type": "m1.nano", - "hostname": "instance3", - "image_meta.size": "25165824", - "state": "building", - "image_meta.min_disk": "0", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "None", - "launched_at": "", - "node": "None", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.image_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_ref_url": "http://10.0.2.15:9292/images/", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:40:00.753219+00:00", - "image_meta.image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.min_ram": "0", - "host": "api.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "vcpus": "1", - "architecture": "None", - "new_task_state": "scheduling", - "audit_period_ending": "2014-03-18T23:40:00.869585", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - } - ] -} \ No newline at end of file diff --git a/distil/tests/unit/data/map_fixture_23.json b/distil/tests/unit/data/map_fixture_23.json deleted file mode 100644 index 7e4545a..0000000 --- a/distil/tests/unit/data/map_fixture_23.json +++ /dev/null @@ -1,1132 +0,0 @@ -{ - "http://localhost:8777/v2/meters/disk.root.size?q.field=resource_id&q.value=7992f8f7-0181-4a15-b6a8-99dec4d20c73": [ - { - "counter_name": "disk.root.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "timestamp": "2014-03-19T00:00:12.204287", - "message_id": "71f01960-aef9-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "", - "event_type": "compute.instance.exists", - "availability_zone": "nova", - "terminated_at": "2014-03-18T23:56:49.000000", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "deleted_at": "2014-03-18T23:56:49.000000", - "reservation_id": "r-mqh9u63a", - "instance_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "display_name": "instance3", - "instance_type": "m1.nano", - "hostname": "instance3", - "image_meta.size": "25165824", - "state": "deleted", - "image_meta.min_disk": "0", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:40:10.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_ref_url": "http://10.0.2.15:9292/images/", - "audit_period_beginning": "2014-03-18 23:00:00", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18T23:40:00.000000", - "image_meta.image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "image_meta.image_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "memory_mb": "64", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "vcpus": "1", - "architecture": "None", - "audit_period_ending": "2014-03-19 00:00:00", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.root.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "timestamp": "2014-03-18T23:56:49.561007", - "message_id": "f8efac74-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "", - "event_type": "compute.instance.delete.end", - "availability_zone": "nova", - "terminated_at": "2014-03-18T23:56:49.115564", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "deleted_at": "", - "reservation_id": "r-mqh9u63a", - "instance_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "display_name": "instance3", - "hostname": "instance3", - "image_meta.size": "25165824", - "state": "deleted", - "image_meta.min_disk": "0", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:40:10.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_ref_url": "http://10.0.2.15:9292/images/", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:40:00+00:00", - "image_meta.image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "image_meta.image_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.root.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "timestamp": "2014-03-18T23:56:49.291768", - "message_id": "f8df429e-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "2014-03-18T23:56:49.000000", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "deleted_at": "", - "reservation_id": "r-mqh9u63a", - "instance_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "display_name": "instance3", - "instance_type": "m1.nano", - "hostname": "instance3", - "image_meta.size": "25165824", - "state": "deleted", - "image_meta.min_disk": "0", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "active", - "launched_at": "2014-03-18T23:40:10.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.image_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_ref_url": "http://10.0.2.15:9292/images/", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:40:00", - "image_meta.image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "deleting", - "memory_mb": "64", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "vcpus": "1", - "architecture": "None", - "new_task_state": "None", - "audit_period_ending": "2014-03-18T23:56:49.286924", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.root.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "timestamp": "2014-03-18T23:56:49.105195", - "message_id": "f8a5d536-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "deleting", - "image_meta.base_image_ref": "", - "event_type": "compute.instance.shutdown.end", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "deleted_at": "", - "reservation_id": "r-mqh9u63a", - "instance_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "display_name": "instance3", - "hostname": "instance3", - "image_meta.size": "25165824", - "state": "active", - "image_meta.min_disk": "0", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:40:10.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_ref_url": "http://10.0.2.15:9292/images/", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:40:00+00:00", - "image_meta.image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "image_meta.image_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.root.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "timestamp": "2014-03-18T23:56:47.762036", - "message_id": "f7a97a84-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "deleting", - "image_meta.base_image_ref": "", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "deleted_at": "", - "reservation_id": "r-mqh9u63a", - "instance_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "display_name": "instance3", - "instance_type": "m1.nano", - "hostname": "instance3", - "image_meta.size": "25165824", - "state": "active", - "image_meta.min_disk": "0", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "None", - "launched_at": "2014-03-18T23:40:10.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.image_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_ref_url": "http://10.0.2.15:9292/images/", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:40:00", - "image_meta.image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "vcpus": "1", - "architecture": "None", - "new_task_state": "deleting", - "audit_period_ending": "2014-03-18T23:56:47.758932", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.root.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "timestamp": "2014-03-18T23:56:44.352762", - "message_id": "f5a1cea8-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "deleting", - "image_meta.base_image_ref": "", - "event_type": "compute.instance.shutdown.start", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "deleted_at": "", - "reservation_id": "r-mqh9u63a", - "instance_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "display_name": "instance3", - "hostname": "instance3", - "image_meta.size": "25165824", - "state": "active", - "image_meta.min_disk": "0", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:40:10.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_ref_url": "http://10.0.2.15:9292/images/", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:40:00+00:00", - "image_meta.image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "image_meta.image_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.root.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "timestamp": "2014-03-18T23:56:44.345577", - "message_id": "f599bfd8-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "deleting", - "image_meta.base_image_ref": "", - "event_type": "compute.instance.delete.start", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "deleted_at": "", - "reservation_id": "r-mqh9u63a", - "instance_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "display_name": "instance3", - "hostname": "instance3", - "image_meta.size": "25165824", - "state": "active", - "image_meta.min_disk": "0", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:40:10.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_ref_url": "http://10.0.2.15:9292/images/", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:40:00+00:00", - "image_meta.image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "image_meta.image_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.root.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "timestamp": "2014-03-18T23:56:44.207101", - "message_id": "f55cbc96-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "deleting", - "image_meta.base_image_ref": "", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "deleted_at": "", - "reservation_id": "r-mqh9u63a", - "instance_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "display_name": "instance3", - "instance_type": "m1.nano", - "hostname": "instance3", - "image_meta.size": "25165824", - "state": "active", - "image_meta.min_disk": "0", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "active", - "launched_at": "2014-03-18T23:40:10.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.image_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_ref_url": "http://10.0.2.15:9292/images/", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:40:00", - "image_meta.image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "vcpus": "1", - "architecture": "None", - "new_task_state": "deleting", - "audit_period_ending": "2014-03-18T23:56:44.203509", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.root.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "timestamp": "2014-03-18T23:40:10.548176", - "message_id": "a54963aa-aef6-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "", - "event_type": "compute.instance.create.end", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "message": "Success", - "deleted_at": "", - "reservation_id": "r-mqh9u63a", - "instance_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "display_name": "instance3", - "hostname": "instance3", - "image_meta.size": "25165824", - "state": "active", - "image_meta.min_disk": "0", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:40:10.328813", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_ref_url": "http://10.0.2.15:9292/images/", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18T23:40:00.000000", - "image_meta.image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "image_meta.image_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.root.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "timestamp": "2014-03-18T23:40:10.428457", - "message_id": "a532f958-aef6-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "deleted_at": "", - "reservation_id": "r-mqh9u63a", - "instance_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "display_name": "instance3", - "instance_type": "m1.nano", - "hostname": "instance3", - "image_meta.size": "25165824", - "state": "active", - "image_meta.min_disk": "0", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "building", - "launched_at": "2014-03-18T23:40:10.328813", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.image_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_ref_url": "http://10.0.2.15:9292/images/", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:40:00", - "image_meta.image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "spawning", - "memory_mb": "64", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "vcpus": "1", - "architecture": "None", - "new_task_state": "None", - "audit_period_ending": "2014-03-18T23:40:10.425800", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.root.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "timestamp": "2014-03-18T23:40:05.227996", - "message_id": "a1fc3a74-aef6-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "spawning", - "image_meta.base_image_ref": "", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "deleted_at": "", - "reservation_id": "r-mqh9u63a", - "instance_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "display_name": "instance3", - "instance_type": "m1.nano", - "hostname": "instance3", - "image_meta.size": "25165824", - "state": "building", - "image_meta.min_disk": "0", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "None", - "launched_at": "", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.image_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_ref_url": "http://10.0.2.15:9292/images/", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:40:00", - "image_meta.image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "vcpus": "1", - "architecture": "None", - "new_task_state": "spawning", - "audit_period_ending": "2014-03-18T23:40:05.223750", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.root.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "timestamp": "2014-03-18T23:40:04.711373", - "message_id": "a1d59f7c-aef6-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "spawning", - "image_meta.base_image_ref": "", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "deleted_at": "", - "reservation_id": "r-mqh9u63a", - "instance_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "display_name": "instance3", - "instance_type": "m1.nano", - "hostname": "instance3", - "image_meta.size": "25165824", - "state": "building", - "image_meta.min_disk": "0", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "building", - "launched_at": "", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.image_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_ref_url": "http://10.0.2.15:9292/images/", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:40:00", - "image_meta.image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "block_device_mapping", - "memory_mb": "64", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "vcpus": "1", - "architecture": "None", - "new_task_state": "spawning", - "audit_period_ending": "2014-03-18T23:40:04.704534", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.root.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "timestamp": "2014-03-18T23:40:02.327109", - "message_id": "a18cb0e6-aef6-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "block_device_mapping", - "image_meta.base_image_ref": "", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "deleted_at": "", - "reservation_id": "r-mqh9u63a", - "instance_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "display_name": "instance3", - "instance_type": "m1.nano", - "hostname": "instance3", - "image_meta.size": "25165824", - "state": "building", - "image_meta.min_disk": "0", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "building", - "launched_at": "", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.image_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_ref_url": "http://10.0.2.15:9292/images/", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:40:00", - "image_meta.image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "networking", - "memory_mb": "64", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "vcpus": "1", - "architecture": "None", - "new_task_state": "block_device_mapping", - "audit_period_ending": "2014-03-18T23:40:02.315446", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.root.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "timestamp": "2014-03-18T23:40:01.946209", - "message_id": "a18a137c-aef6-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "networking", - "image_meta.base_image_ref": "", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "deleted_at": "", - "reservation_id": "r-mqh9u63a", - "instance_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "display_name": "instance3", - "instance_type": "m1.nano", - "hostname": "instance3", - "image_meta.size": "25165824", - "state": "building", - "image_meta.min_disk": "0", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "building", - "launched_at": "", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.image_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_ref_url": "http://10.0.2.15:9292/images/", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:40:00", - "image_meta.image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "vcpus": "1", - "architecture": "None", - "new_task_state": "networking", - "audit_period_ending": "2014-03-18T23:40:01.941766", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.root.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "timestamp": "2014-03-18T23:40:01.700650", - "message_id": "a0d90b90-aef6-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "deleted_at": "", - "reservation_id": "r-mqh9u63a", - "instance_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "display_name": "instance3", - "instance_type": "m1.nano", - "hostname": "instance3", - "image_meta.size": "25165824", - "state": "building", - "image_meta.min_disk": "0", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "None", - "launched_at": "", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.image_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_ref_url": "http://10.0.2.15:9292/images/", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:40:00", - "image_meta.image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "vcpus": "1", - "architecture": "None", - "new_task_state": "None", - "audit_period_ending": "2014-03-18T23:40:01.697845", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.root.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "timestamp": "2014-03-18T23:40:01.463409", - "message_id": "a12f50ae-aef6-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "deleted_at": "", - "reservation_id": "r-mqh9u63a", - "instance_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "display_name": "instance3", - "instance_type": "m1.nano", - "hostname": "instance3", - "image_meta.size": "25165824", - "state": "building", - "image_meta.min_disk": "0", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "None", - "launched_at": "", - "node": "None", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.image_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_ref_url": "http://10.0.2.15:9292/images/", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:40:00", - "image_meta.image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "vcpus": "1", - "architecture": "None", - "new_task_state": "None", - "audit_period_ending": "2014-03-18T23:40:01.447651", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.root.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "timestamp": "2014-03-18T23:40:01.329597", - "message_id": "a117c3f8-aef6-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "scheduling", - "image_meta.base_image_ref": "", - "event_type": "compute.instance.create.start", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "message": "", - "deleted_at": "", - "reservation_id": "r-mqh9u63a", - "instance_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "display_name": "instance3", - "hostname": "instance3", - "image_meta.size": "25165824", - "state": "building", - "image_meta.min_disk": "0", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "", - "node": "None", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_ref_url": "http://10.0.2.15:9292/images/", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18T23:40:00.000000", - "image_meta.image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "image_meta.image_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.root.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "timestamp": "2014-03-18T23:40:01.277252", - "message_id": "a02f0cc6-aef6-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "deleted_at": "", - "reservation_id": "r-mqh9u63a", - "instance_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "display_name": "instance3", - "instance_type": "m1.nano", - "hostname": "instance3", - "image_meta.size": "25165824", - "state": "building", - "image_meta.min_disk": "0", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "building", - "launched_at": "", - "node": "None", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.image_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_ref_url": "http://10.0.2.15:9292/images/", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:40:00", - "image_meta.image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "scheduling", - "memory_mb": "64", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "vcpus": "1", - "architecture": "None", - "new_task_state": "None", - "audit_period_ending": "2014-03-18T23:40:01.273406", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.root.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "timestamp": "2014-03-18T23:40:00.873278", - "message_id": "9fbcb356-aef6-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "scheduling", - "image_meta.base_image_ref": "", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "deleted_at": "", - "reservation_id": "r-mqh9u63a", - "instance_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "display_name": "instance3", - "instance_type": "m1.nano", - "hostname": "instance3", - "image_meta.size": "25165824", - "state": "building", - "image_meta.min_disk": "0", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "None", - "launched_at": "", - "node": "None", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.image_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_ref_url": "http://10.0.2.15:9292/images/", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:40:00.753219+00:00", - "image_meta.image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.min_ram": "0", - "host": "api.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "vcpus": "1", - "architecture": "None", - "new_task_state": "scheduling", - "audit_period_ending": "2014-03-18T23:40:00.869585", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - } - ] -} \ No newline at end of file diff --git a/distil/tests/unit/data/map_fixture_24.json b/distil/tests/unit/data/map_fixture_24.json deleted file mode 100644 index 15eb059..0000000 --- a/distil/tests/unit/data/map_fixture_24.json +++ /dev/null @@ -1,117 +0,0 @@ -{ - "http://localhost:8777/v2/meters/flavor?q.field=resource_id&q.value=7992f8f7-0181-4a15-b6a8-99dec4d20c73": [ - { - "counter_name": "flavor", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "timestamp": "2014-03-18T23:56:49.561007", - "message_id": "f8a4116a-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "flavor.id", - "counter_volume": 42.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "", - "event_type": "compute.instance.delete.end", - "availability_zone": "nova", - "terminated_at": "2014-03-18T23:56:49.115564", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "deleted_at": "", - "reservation_id": "r-mqh9u63a", - "instance_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "display_name": "instance3", - "hostname": "instance3", - "image_meta.size": "25165824", - "state": "deleted", - "image_meta.min_disk": "0", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:40:10.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_ref_url": "http://10.0.2.15:9292/images/", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:40:00+00:00", - "image_meta.image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "image_meta.image_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "flavor", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "timestamp": "2014-03-18T23:40:10.548176", - "message_id": "a51ef0b6-aef6-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "flavor.id", - "counter_volume": 42.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "", - "event_type": "compute.instance.create.end", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "message": "Success", - "deleted_at": "", - "reservation_id": "r-mqh9u63a", - "instance_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "display_name": "instance3", - "hostname": "instance3", - "image_meta.size": "25165824", - "state": "active", - "image_meta.min_disk": "0", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:40:10.328813", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_ref_url": "http://10.0.2.15:9292/images/", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18T23:40:00.000000", - "image_meta.image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "image_meta.image_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - } - ] -} \ No newline at end of file diff --git a/distil/tests/unit/data/map_fixture_25.json b/distil/tests/unit/data/map_fixture_25.json deleted file mode 100644 index 8085fd1..0000000 --- a/distil/tests/unit/data/map_fixture_25.json +++ /dev/null @@ -1,1132 +0,0 @@ -{ - "http://localhost:8777/v2/meters/instance?q.field=resource_id&q.value=7992f8f7-0181-4a15-b6a8-99dec4d20c73": [ - { - "counter_name": "instance", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "timestamp": "2014-03-19T00:00:12.204287", - "message_id": "71c8eb56-aef9-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "", - "event_type": "compute.instance.exists", - "availability_zone": "nova", - "terminated_at": "2014-03-18T23:56:49.000000", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "deleted_at": "2014-03-18T23:56:49.000000", - "reservation_id": "r-mqh9u63a", - "instance_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "display_name": "instance3", - "instance_type": "m1.nano", - "hostname": "instance3", - "image_meta.size": "25165824", - "state": "deleted", - "image_meta.min_disk": "0", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:40:10.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_ref_url": "http://10.0.2.15:9292/images/", - "audit_period_beginning": "2014-03-18 23:00:00", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18T23:40:00.000000", - "image_meta.image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "image_meta.image_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "memory_mb": "64", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "vcpus": "1", - "architecture": "None", - "audit_period_ending": "2014-03-19 00:00:00", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "timestamp": "2014-03-18T23:56:49.561007", - "message_id": "f8b51208-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "", - "event_type": "compute.instance.delete.end", - "availability_zone": "nova", - "terminated_at": "2014-03-18T23:56:49.115564", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "deleted_at": "", - "reservation_id": "r-mqh9u63a", - "instance_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "display_name": "instance3", - "hostname": "instance3", - "image_meta.size": "25165824", - "state": "deleted", - "image_meta.min_disk": "0", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:40:10.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_ref_url": "http://10.0.2.15:9292/images/", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:40:00+00:00", - "image_meta.image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "image_meta.image_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "timestamp": "2014-03-18T23:56:49.291768", - "message_id": "f88ba6ac-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "2014-03-18T23:56:49.000000", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "deleted_at": "", - "reservation_id": "r-mqh9u63a", - "instance_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "display_name": "instance3", - "instance_type": "m1.nano", - "hostname": "instance3", - "image_meta.size": "25165824", - "state": "deleted", - "image_meta.min_disk": "0", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "active", - "launched_at": "2014-03-18T23:40:10.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.image_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_ref_url": "http://10.0.2.15:9292/images/", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:40:00", - "image_meta.image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "deleting", - "memory_mb": "64", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "vcpus": "1", - "architecture": "None", - "new_task_state": "None", - "audit_period_ending": "2014-03-18T23:56:49.286924", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "timestamp": "2014-03-18T23:56:49.105195", - "message_id": "f846a822-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "deleting", - "image_meta.base_image_ref": "", - "event_type": "compute.instance.shutdown.end", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "deleted_at": "", - "reservation_id": "r-mqh9u63a", - "instance_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "display_name": "instance3", - "hostname": "instance3", - "image_meta.size": "25165824", - "state": "active", - "image_meta.min_disk": "0", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:40:10.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_ref_url": "http://10.0.2.15:9292/images/", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:40:00+00:00", - "image_meta.image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "image_meta.image_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "timestamp": "2014-03-18T23:56:47.762036", - "message_id": "f77aec8c-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "deleting", - "image_meta.base_image_ref": "", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "deleted_at": "", - "reservation_id": "r-mqh9u63a", - "instance_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "display_name": "instance3", - "instance_type": "m1.nano", - "hostname": "instance3", - "image_meta.size": "25165824", - "state": "active", - "image_meta.min_disk": "0", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "None", - "launched_at": "2014-03-18T23:40:10.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.image_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_ref_url": "http://10.0.2.15:9292/images/", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:40:00", - "image_meta.image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "vcpus": "1", - "architecture": "None", - "new_task_state": "deleting", - "audit_period_ending": "2014-03-18T23:56:47.758932", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "timestamp": "2014-03-18T23:56:44.352762", - "message_id": "f59bd1f6-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "deleting", - "image_meta.base_image_ref": "", - "event_type": "compute.instance.shutdown.start", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "deleted_at": "", - "reservation_id": "r-mqh9u63a", - "instance_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "display_name": "instance3", - "hostname": "instance3", - "image_meta.size": "25165824", - "state": "active", - "image_meta.min_disk": "0", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:40:10.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_ref_url": "http://10.0.2.15:9292/images/", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:40:00+00:00", - "image_meta.image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "image_meta.image_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "timestamp": "2014-03-18T23:56:44.345577", - "message_id": "f5944cba-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "deleting", - "image_meta.base_image_ref": "", - "event_type": "compute.instance.delete.start", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "deleted_at": "", - "reservation_id": "r-mqh9u63a", - "instance_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "display_name": "instance3", - "hostname": "instance3", - "image_meta.size": "25165824", - "state": "active", - "image_meta.min_disk": "0", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:40:10.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_ref_url": "http://10.0.2.15:9292/images/", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:40:00+00:00", - "image_meta.image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "image_meta.image_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "timestamp": "2014-03-18T23:56:44.207101", - "message_id": "f5577f7e-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "deleting", - "image_meta.base_image_ref": "", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "deleted_at": "", - "reservation_id": "r-mqh9u63a", - "instance_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "display_name": "instance3", - "instance_type": "m1.nano", - "hostname": "instance3", - "image_meta.size": "25165824", - "state": "active", - "image_meta.min_disk": "0", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "active", - "launched_at": "2014-03-18T23:40:10.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.image_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_ref_url": "http://10.0.2.15:9292/images/", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:40:00", - "image_meta.image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "vcpus": "1", - "architecture": "None", - "new_task_state": "deleting", - "audit_period_ending": "2014-03-18T23:56:44.203509", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "timestamp": "2014-03-18T23:40:10.548176", - "message_id": "a529478c-aef6-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "", - "event_type": "compute.instance.create.end", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "message": "Success", - "deleted_at": "", - "reservation_id": "r-mqh9u63a", - "instance_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "display_name": "instance3", - "hostname": "instance3", - "image_meta.size": "25165824", - "state": "active", - "image_meta.min_disk": "0", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:40:10.328813", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_ref_url": "http://10.0.2.15:9292/images/", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18T23:40:00.000000", - "image_meta.image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "image_meta.image_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "timestamp": "2014-03-18T23:40:10.428457", - "message_id": "a504dae6-aef6-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "deleted_at": "", - "reservation_id": "r-mqh9u63a", - "instance_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "display_name": "instance3", - "instance_type": "m1.nano", - "hostname": "instance3", - "image_meta.size": "25165824", - "state": "active", - "image_meta.min_disk": "0", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "building", - "launched_at": "2014-03-18T23:40:10.328813", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.image_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_ref_url": "http://10.0.2.15:9292/images/", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:40:00", - "image_meta.image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "spawning", - "memory_mb": "64", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "vcpus": "1", - "architecture": "None", - "new_task_state": "None", - "audit_period_ending": "2014-03-18T23:40:10.425800", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "timestamp": "2014-03-18T23:40:05.227996", - "message_id": "a1e37052-aef6-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "spawning", - "image_meta.base_image_ref": "", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "deleted_at": "", - "reservation_id": "r-mqh9u63a", - "instance_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "display_name": "instance3", - "instance_type": "m1.nano", - "hostname": "instance3", - "image_meta.size": "25165824", - "state": "building", - "image_meta.min_disk": "0", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "None", - "launched_at": "", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.image_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_ref_url": "http://10.0.2.15:9292/images/", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:40:00", - "image_meta.image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "vcpus": "1", - "architecture": "None", - "new_task_state": "spawning", - "audit_period_ending": "2014-03-18T23:40:05.223750", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "timestamp": "2014-03-18T23:40:04.711373", - "message_id": "a1ac7be2-aef6-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "spawning", - "image_meta.base_image_ref": "", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "deleted_at": "", - "reservation_id": "r-mqh9u63a", - "instance_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "display_name": "instance3", - "instance_type": "m1.nano", - "hostname": "instance3", - "image_meta.size": "25165824", - "state": "building", - "image_meta.min_disk": "0", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "building", - "launched_at": "", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.image_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_ref_url": "http://10.0.2.15:9292/images/", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:40:00", - "image_meta.image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "block_device_mapping", - "memory_mb": "64", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "vcpus": "1", - "architecture": "None", - "new_task_state": "spawning", - "audit_period_ending": "2014-03-18T23:40:04.704534", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "timestamp": "2014-03-18T23:40:02.327109", - "message_id": "a08e0cc6-aef6-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "block_device_mapping", - "image_meta.base_image_ref": "", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "deleted_at": "", - "reservation_id": "r-mqh9u63a", - "instance_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "display_name": "instance3", - "instance_type": "m1.nano", - "hostname": "instance3", - "image_meta.size": "25165824", - "state": "building", - "image_meta.min_disk": "0", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "building", - "launched_at": "", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.image_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_ref_url": "http://10.0.2.15:9292/images/", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:40:00", - "image_meta.image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "networking", - "memory_mb": "64", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "vcpus": "1", - "architecture": "None", - "new_task_state": "block_device_mapping", - "audit_period_ending": "2014-03-18T23:40:02.315446", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "timestamp": "2014-03-18T23:40:01.946209", - "message_id": "a08f0c5c-aef6-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "networking", - "image_meta.base_image_ref": "", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "deleted_at": "", - "reservation_id": "r-mqh9u63a", - "instance_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "display_name": "instance3", - "instance_type": "m1.nano", - "hostname": "instance3", - "image_meta.size": "25165824", - "state": "building", - "image_meta.min_disk": "0", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "building", - "launched_at": "", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.image_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_ref_url": "http://10.0.2.15:9292/images/", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:40:00", - "image_meta.image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "vcpus": "1", - "architecture": "None", - "new_task_state": "networking", - "audit_period_ending": "2014-03-18T23:40:01.941766", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "timestamp": "2014-03-18T23:40:01.700650", - "message_id": "a073311c-aef6-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "deleted_at": "", - "reservation_id": "r-mqh9u63a", - "instance_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "display_name": "instance3", - "instance_type": "m1.nano", - "hostname": "instance3", - "image_meta.size": "25165824", - "state": "building", - "image_meta.min_disk": "0", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "None", - "launched_at": "", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.image_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_ref_url": "http://10.0.2.15:9292/images/", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:40:00", - "image_meta.image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "vcpus": "1", - "architecture": "None", - "new_task_state": "None", - "audit_period_ending": "2014-03-18T23:40:01.697845", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "timestamp": "2014-03-18T23:40:01.463409", - "message_id": "a0324a9e-aef6-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "deleted_at": "", - "reservation_id": "r-mqh9u63a", - "instance_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "display_name": "instance3", - "instance_type": "m1.nano", - "hostname": "instance3", - "image_meta.size": "25165824", - "state": "building", - "image_meta.min_disk": "0", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "None", - "launched_at": "", - "node": "None", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.image_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_ref_url": "http://10.0.2.15:9292/images/", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:40:00", - "image_meta.image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "vcpus": "1", - "architecture": "None", - "new_task_state": "None", - "audit_period_ending": "2014-03-18T23:40:01.447651", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "timestamp": "2014-03-18T23:40:01.329597", - "message_id": "9fc2e17c-aef6-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "scheduling", - "image_meta.base_image_ref": "", - "event_type": "compute.instance.create.start", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "message": "", - "deleted_at": "", - "reservation_id": "r-mqh9u63a", - "instance_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "display_name": "instance3", - "hostname": "instance3", - "image_meta.size": "25165824", - "state": "building", - "image_meta.min_disk": "0", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "", - "node": "None", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_ref_url": "http://10.0.2.15:9292/images/", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18T23:40:00.000000", - "image_meta.image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "image_meta.image_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "timestamp": "2014-03-18T23:40:01.277252", - "message_id": "9fa43312-aef6-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "deleted_at": "", - "reservation_id": "r-mqh9u63a", - "instance_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "display_name": "instance3", - "instance_type": "m1.nano", - "hostname": "instance3", - "image_meta.size": "25165824", - "state": "building", - "image_meta.min_disk": "0", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "building", - "launched_at": "", - "node": "None", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.image_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_ref_url": "http://10.0.2.15:9292/images/", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:40:00", - "image_meta.image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "scheduling", - "memory_mb": "64", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "vcpus": "1", - "architecture": "None", - "new_task_state": "None", - "audit_period_ending": "2014-03-18T23:40:01.273406", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "timestamp": "2014-03-18T23:40:00.873278", - "message_id": "9f4a3d9e-aef6-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "scheduling", - "image_meta.base_image_ref": "", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "deleted_at": "", - "reservation_id": "r-mqh9u63a", - "instance_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "display_name": "instance3", - "instance_type": "m1.nano", - "hostname": "instance3", - "image_meta.size": "25165824", - "state": "building", - "image_meta.min_disk": "0", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "None", - "launched_at": "", - "node": "None", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.image_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_ref_url": "http://10.0.2.15:9292/images/", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:40:00.753219+00:00", - "image_meta.image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.min_ram": "0", - "host": "api.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "vcpus": "1", - "architecture": "None", - "new_task_state": "scheduling", - "audit_period_ending": "2014-03-18T23:40:00.869585", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - } - ] -} \ No newline at end of file diff --git a/distil/tests/unit/data/map_fixture_26.json b/distil/tests/unit/data/map_fixture_26.json deleted file mode 100644 index 604501d..0000000 --- a/distil/tests/unit/data/map_fixture_26.json +++ /dev/null @@ -1,118 +0,0 @@ -{ - "http://localhost:8777/v2/meters/instance.scheduled?q.field=resource_id&q.value=7992f8f7-0181-4a15-b6a8-99dec4d20c73": [ - { - "counter_name": "instance.scheduled", - "user_id": null, - "resource_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "timestamp": "2014-03-18T23:40:00.986212", - "message_id": "9f62f5c8-aef6-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "request_spec.instance_properties:ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "request_spec.image:properties:image_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "request_spec.instance_properties:display_name": "instance3", - "request_spec.instance_properties:locked_by": "None", - "request_spec.instance_properties:system_metadata:instance_type_rxtx_factor": "1.0", - "request_spec.image:properties:min_disk": "0", - "request_spec.instance_properties:cell_name": "None", - "request_spec.instance_properties:cleaned": "False", - "request_spec.instance_properties:launched_at": "None", - "request_spec.instance_properties:id": "3", - "request_spec.instance_properties:terminated_at": "None", - "request_spec.instance_properties:host": "None", - "request_spec.instance_properties:deleted_at": "None", - "request_spec.instance_properties:system_metadata:instance_type_ephemeral_gb": "0", - "request_spec.instance_type:id": "6", - "request_spec.instance_properties:progress": "0", - "request_spec.instance_properties:hostname": "instance3", - "request_spec.instance_properties:root_gb": "0", - "request_spec.instance_properties:memory_mb": "64", - "instance_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "request_spec.instance_properties:default_ephemeral_device": "None", - "request_spec.instance_properties:system_metadata:instance_type_memory_mb": "64", - "request_spec.instance_properties:launched_on": "None", - "request_spec.instance_properties:power_state": "0", - "request_spec.image:properties:kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "request_spec.instance_properties:uuid": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "request_spec.instance_type:vcpus": "1", - "request_spec.instance_properties:node": "None", - "request_spec.instance_properties:key_name": "None", - "request_spec.instance_properties:vm_state": "building", - "weighted_host.host": "vagrant-ubuntu-precise-64", - "request_spec.instance_type:swap": "0", - "request_spec.instance_properties:kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "request_spec.instance_properties:system_metadata:image_base_image_ref": "", - "request_spec.instance_type:flavorid": "42", - "request_spec.image:properties:ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "request_spec.instance_properties:system_metadata:image_ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "request_spec.instance_properties:launch_index": "0", - "request_spec.image:properties:min_ram": "0", - "request_spec.instance_properties:system_metadata:image_min_ram": "0", - "request_spec.instance_type:root_gb": "0", - "request_spec.instance_properties:locked": "False", - "host": "scheduler.vagrant-ubuntu-precise-64", - "request_spec.instance_properties:system_metadata:image_kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "request_spec.instance_properties:config_drive": "", - "request_spec.instance_properties:info_cache:instance_uuid": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "request_spec.instance_properties:image_ref": "", - "request_spec.instance_properties:user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "request_spec.instance_properties:system_metadata:image_image_name": "cirros-0.3.1-x86_64-uec", - "request_spec.instance_type:memory_mb": "64", - "request_spec.image:properties:image_name": "cirros-0.3.1-x86_64-uec", - "request_spec.image:properties:container_format": "ami", - "request_spec.image:properties:size": "25165824", - "request_spec.instance_properties:availability_zone": "nova", - "request_spec.instance_properties:system_metadata:instance_type_name": "m1.nano", - "request_spec.instance_properties:root_device_name": "None", - "request_spec.instance_type:name": "m1.nano", - "request_spec.instance_properties:key_data": "None", - "request_spec.num_instances": "1", - "request_spec.instance_properties:system_metadata:image_disk_format": "ami", - "request_spec.instance_properties:deleted": "False", - "request_spec.instance_properties:ephemeral_gb": "0", - "request_spec.instance_properties:disable_terminate": "False", - "request_spec.instance_properties:system_metadata:instance_type_root_gb": "0", - "request_spec.instance_properties:auto_disk_config": "False", - "request_spec.instance_properties:system_metadata:image_size": "25165824", - "request_spec.instance_properties:system_metadata:instance_type_flavorid": "42", - "request_spec.instance_properties:project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "request_spec.instance_properties:created_at": "2014-03-18T23:40:00.753219", - "request_spec.instance_properties:updated_at": "None", - "request_spec.instance_type:vcpu_weight": "None", - "request_spec.instance_properties:reservation_id": "r-mqh9u63a", - "request_spec.image:properties:checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "request_spec.instance_type:rxtx_factor": "1.0", - "request_spec.instance_properties:system_metadata:image_container_format": "ami", - "event_type": "scheduler.run_instance.scheduled", - "request_spec.image:properties:disk_format": "ami", - "request_spec.instance_properties:system_metadata:instance_type_id": "6", - "request_spec.instance_type:ephemeral_gb": "0", - "request_spec.instance_properties:vcpus": "1", - "request_spec.instance_properties:access_ip_v6": "None", - "request_spec.instance_properties:access_ip_v4": "None", - "request_spec.instance_properties:shutdown_terminate": "False", - "request_spec.instance_properties:system_metadata:instance_type_vcpu_weight": "None", - "request_spec.instance_properties:default_swap_device": "None", - "request_spec.instance_properties:vm_mode": "None", - "request_spec.instance_properties:instance_type_id": "6", - "request_spec.instance_properties:name": "instance-00000003", - "request_spec.instance_properties:scheduled_at": "None", - "request_spec.instance_properties:system_metadata:instance_type_vcpus": "1", - "request_spec.instance_properties:system_metadata:image_checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "request_spec.instance_properties:architecture": "None", - "request_spec.instance_properties:os_type": "None", - "request_spec.instance_properties:task_state": "scheduling", - "request_spec.instance_properties:system_metadata:instance_type_swap": "0", - "weighted_host.weight": "3250.0", - "request_spec.instance_properties:display_description": "instance3", - "request_spec.instance_properties:system_metadata:image_image_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "request_spec.instance_properties:user_data": "None", - "request_spec.instance_properties:system_metadata:image_min_disk": "0" - }, - "counter_type": "delta" - } - ] -} \ No newline at end of file diff --git a/distil/tests/unit/data/map_fixture_27.json b/distil/tests/unit/data/map_fixture_27.json deleted file mode 100644 index 9563837..0000000 --- a/distil/tests/unit/data/map_fixture_27.json +++ /dev/null @@ -1,1132 +0,0 @@ -{ - "http://localhost:8777/v2/meters/instance:m1.nano?q.field=resource_id&q.value=7992f8f7-0181-4a15-b6a8-99dec4d20c73": [ - { - "counter_name": "instance:m1.nano", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "timestamp": "2014-03-19T00:00:12.204287", - "message_id": "71638b44-aef9-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "", - "event_type": "compute.instance.exists", - "availability_zone": "nova", - "terminated_at": "2014-03-18T23:56:49.000000", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "deleted_at": "2014-03-18T23:56:49.000000", - "reservation_id": "r-mqh9u63a", - "instance_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "display_name": "instance3", - "instance_type": "m1.nano", - "hostname": "instance3", - "image_meta.size": "25165824", - "state": "deleted", - "image_meta.min_disk": "0", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:40:10.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_ref_url": "http://10.0.2.15:9292/images/", - "audit_period_beginning": "2014-03-18 23:00:00", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18T23:40:00.000000", - "image_meta.image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "image_meta.image_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "memory_mb": "64", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "vcpus": "1", - "architecture": "None", - "audit_period_ending": "2014-03-19 00:00:00", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance:m1.nano", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "timestamp": "2014-03-18T23:56:49.561007", - "message_id": "f88939f8-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "", - "event_type": "compute.instance.delete.end", - "availability_zone": "nova", - "terminated_at": "2014-03-18T23:56:49.115564", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "deleted_at": "", - "reservation_id": "r-mqh9u63a", - "instance_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "display_name": "instance3", - "hostname": "instance3", - "image_meta.size": "25165824", - "state": "deleted", - "image_meta.min_disk": "0", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:40:10.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_ref_url": "http://10.0.2.15:9292/images/", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:40:00+00:00", - "image_meta.image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "image_meta.image_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance:m1.nano", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "timestamp": "2014-03-18T23:56:49.291768", - "message_id": "f8744a3e-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "2014-03-18T23:56:49.000000", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "deleted_at": "", - "reservation_id": "r-mqh9u63a", - "instance_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "display_name": "instance3", - "instance_type": "m1.nano", - "hostname": "instance3", - "image_meta.size": "25165824", - "state": "deleted", - "image_meta.min_disk": "0", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "active", - "launched_at": "2014-03-18T23:40:10.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.image_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_ref_url": "http://10.0.2.15:9292/images/", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:40:00", - "image_meta.image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "deleting", - "memory_mb": "64", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "vcpus": "1", - "architecture": "None", - "new_task_state": "None", - "audit_period_ending": "2014-03-18T23:56:49.286924", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance:m1.nano", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "timestamp": "2014-03-18T23:56:49.105195", - "message_id": "f83d1564-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "deleting", - "image_meta.base_image_ref": "", - "event_type": "compute.instance.shutdown.end", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "deleted_at": "", - "reservation_id": "r-mqh9u63a", - "instance_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "display_name": "instance3", - "hostname": "instance3", - "image_meta.size": "25165824", - "state": "active", - "image_meta.min_disk": "0", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:40:10.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_ref_url": "http://10.0.2.15:9292/images/", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:40:00+00:00", - "image_meta.image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "image_meta.image_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance:m1.nano", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "timestamp": "2014-03-18T23:56:47.762036", - "message_id": "f7704912-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "deleting", - "image_meta.base_image_ref": "", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "deleted_at": "", - "reservation_id": "r-mqh9u63a", - "instance_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "display_name": "instance3", - "instance_type": "m1.nano", - "hostname": "instance3", - "image_meta.size": "25165824", - "state": "active", - "image_meta.min_disk": "0", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "None", - "launched_at": "2014-03-18T23:40:10.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.image_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_ref_url": "http://10.0.2.15:9292/images/", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:40:00", - "image_meta.image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "vcpus": "1", - "architecture": "None", - "new_task_state": "deleting", - "audit_period_ending": "2014-03-18T23:56:47.758932", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance:m1.nano", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "timestamp": "2014-03-18T23:56:44.352762", - "message_id": "f5880626-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "deleting", - "image_meta.base_image_ref": "", - "event_type": "compute.instance.shutdown.start", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "deleted_at": "", - "reservation_id": "r-mqh9u63a", - "instance_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "display_name": "instance3", - "hostname": "instance3", - "image_meta.size": "25165824", - "state": "active", - "image_meta.min_disk": "0", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:40:10.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_ref_url": "http://10.0.2.15:9292/images/", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:40:00+00:00", - "image_meta.image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "image_meta.image_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance:m1.nano", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "timestamp": "2014-03-18T23:56:44.345577", - "message_id": "f5878304-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "deleting", - "image_meta.base_image_ref": "", - "event_type": "compute.instance.delete.start", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "deleted_at": "", - "reservation_id": "r-mqh9u63a", - "instance_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "display_name": "instance3", - "hostname": "instance3", - "image_meta.size": "25165824", - "state": "active", - "image_meta.min_disk": "0", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:40:10.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_ref_url": "http://10.0.2.15:9292/images/", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:40:00+00:00", - "image_meta.image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "image_meta.image_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance:m1.nano", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "timestamp": "2014-03-18T23:56:44.207101", - "message_id": "f55216f6-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "deleting", - "image_meta.base_image_ref": "", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "deleted_at": "", - "reservation_id": "r-mqh9u63a", - "instance_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "display_name": "instance3", - "instance_type": "m1.nano", - "hostname": "instance3", - "image_meta.size": "25165824", - "state": "active", - "image_meta.min_disk": "0", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "active", - "launched_at": "2014-03-18T23:40:10.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.image_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_ref_url": "http://10.0.2.15:9292/images/", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:40:00", - "image_meta.image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "vcpus": "1", - "architecture": "None", - "new_task_state": "deleting", - "audit_period_ending": "2014-03-18T23:56:44.203509", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance:m1.nano", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "timestamp": "2014-03-18T23:40:10.548176", - "message_id": "a514e94a-aef6-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "", - "event_type": "compute.instance.create.end", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "message": "Success", - "deleted_at": "", - "reservation_id": "r-mqh9u63a", - "instance_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "display_name": "instance3", - "hostname": "instance3", - "image_meta.size": "25165824", - "state": "active", - "image_meta.min_disk": "0", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:40:10.328813", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_ref_url": "http://10.0.2.15:9292/images/", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18T23:40:00.000000", - "image_meta.image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "image_meta.image_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance:m1.nano", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "timestamp": "2014-03-18T23:40:10.428457", - "message_id": "a4fb2cf8-aef6-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "deleted_at": "", - "reservation_id": "r-mqh9u63a", - "instance_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "display_name": "instance3", - "instance_type": "m1.nano", - "hostname": "instance3", - "image_meta.size": "25165824", - "state": "active", - "image_meta.min_disk": "0", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "building", - "launched_at": "2014-03-18T23:40:10.328813", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.image_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_ref_url": "http://10.0.2.15:9292/images/", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:40:00", - "image_meta.image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "spawning", - "memory_mb": "64", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "vcpus": "1", - "architecture": "None", - "new_task_state": "None", - "audit_period_ending": "2014-03-18T23:40:10.425800", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance:m1.nano", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "timestamp": "2014-03-18T23:40:05.227996", - "message_id": "a1e16460-aef6-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "spawning", - "image_meta.base_image_ref": "", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "deleted_at": "", - "reservation_id": "r-mqh9u63a", - "instance_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "display_name": "instance3", - "instance_type": "m1.nano", - "hostname": "instance3", - "image_meta.size": "25165824", - "state": "building", - "image_meta.min_disk": "0", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "None", - "launched_at": "", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.image_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_ref_url": "http://10.0.2.15:9292/images/", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:40:00", - "image_meta.image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "vcpus": "1", - "architecture": "None", - "new_task_state": "spawning", - "audit_period_ending": "2014-03-18T23:40:05.223750", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance:m1.nano", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "timestamp": "2014-03-18T23:40:04.711373", - "message_id": "a1a0decc-aef6-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "spawning", - "image_meta.base_image_ref": "", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "deleted_at": "", - "reservation_id": "r-mqh9u63a", - "instance_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "display_name": "instance3", - "instance_type": "m1.nano", - "hostname": "instance3", - "image_meta.size": "25165824", - "state": "building", - "image_meta.min_disk": "0", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "building", - "launched_at": "", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.image_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_ref_url": "http://10.0.2.15:9292/images/", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:40:00", - "image_meta.image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "block_device_mapping", - "memory_mb": "64", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "vcpus": "1", - "architecture": "None", - "new_task_state": "spawning", - "audit_period_ending": "2014-03-18T23:40:04.704534", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance:m1.nano", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "timestamp": "2014-03-18T23:40:02.327109", - "message_id": "a04b73de-aef6-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "block_device_mapping", - "image_meta.base_image_ref": "", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "deleted_at": "", - "reservation_id": "r-mqh9u63a", - "instance_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "display_name": "instance3", - "instance_type": "m1.nano", - "hostname": "instance3", - "image_meta.size": "25165824", - "state": "building", - "image_meta.min_disk": "0", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "building", - "launched_at": "", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.image_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_ref_url": "http://10.0.2.15:9292/images/", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:40:00", - "image_meta.image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "networking", - "memory_mb": "64", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "vcpus": "1", - "architecture": "None", - "new_task_state": "block_device_mapping", - "audit_period_ending": "2014-03-18T23:40:02.315446", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance:m1.nano", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "timestamp": "2014-03-18T23:40:01.946209", - "message_id": "a026d722-aef6-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "networking", - "image_meta.base_image_ref": "", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "deleted_at": "", - "reservation_id": "r-mqh9u63a", - "instance_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "display_name": "instance3", - "instance_type": "m1.nano", - "hostname": "instance3", - "image_meta.size": "25165824", - "state": "building", - "image_meta.min_disk": "0", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "building", - "launched_at": "", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.image_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_ref_url": "http://10.0.2.15:9292/images/", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:40:00", - "image_meta.image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "vcpus": "1", - "architecture": "None", - "new_task_state": "networking", - "audit_period_ending": "2014-03-18T23:40:01.941766", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance:m1.nano", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "timestamp": "2014-03-18T23:40:01.700650", - "message_id": "9ff67b04-aef6-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "deleted_at": "", - "reservation_id": "r-mqh9u63a", - "instance_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "display_name": "instance3", - "instance_type": "m1.nano", - "hostname": "instance3", - "image_meta.size": "25165824", - "state": "building", - "image_meta.min_disk": "0", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "None", - "launched_at": "", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.image_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_ref_url": "http://10.0.2.15:9292/images/", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:40:00", - "image_meta.image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "vcpus": "1", - "architecture": "None", - "new_task_state": "None", - "audit_period_ending": "2014-03-18T23:40:01.697845", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance:m1.nano", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "timestamp": "2014-03-18T23:40:01.463409", - "message_id": "9fb23f02-aef6-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "deleted_at": "", - "reservation_id": "r-mqh9u63a", - "instance_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "display_name": "instance3", - "instance_type": "m1.nano", - "hostname": "instance3", - "image_meta.size": "25165824", - "state": "building", - "image_meta.min_disk": "0", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "None", - "launched_at": "", - "node": "None", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.image_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_ref_url": "http://10.0.2.15:9292/images/", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:40:00", - "image_meta.image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "vcpus": "1", - "architecture": "None", - "new_task_state": "None", - "audit_period_ending": "2014-03-18T23:40:01.447651", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance:m1.nano", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "timestamp": "2014-03-18T23:40:01.329597", - "message_id": "9f9f1da0-aef6-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "scheduling", - "image_meta.base_image_ref": "", - "event_type": "compute.instance.create.start", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "message": "", - "deleted_at": "", - "reservation_id": "r-mqh9u63a", - "instance_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "display_name": "instance3", - "hostname": "instance3", - "image_meta.size": "25165824", - "state": "building", - "image_meta.min_disk": "0", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "", - "node": "None", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_ref_url": "http://10.0.2.15:9292/images/", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18T23:40:00.000000", - "image_meta.image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "image_meta.image_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance:m1.nano", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "timestamp": "2014-03-18T23:40:01.277252", - "message_id": "9f8cf29c-aef6-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "deleted_at": "", - "reservation_id": "r-mqh9u63a", - "instance_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "display_name": "instance3", - "instance_type": "m1.nano", - "hostname": "instance3", - "image_meta.size": "25165824", - "state": "building", - "image_meta.min_disk": "0", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "building", - "launched_at": "", - "node": "None", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.image_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_ref_url": "http://10.0.2.15:9292/images/", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:40:00", - "image_meta.image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "scheduling", - "memory_mb": "64", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "vcpus": "1", - "architecture": "None", - "new_task_state": "None", - "audit_period_ending": "2014-03-18T23:40:01.273406", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance:m1.nano", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "timestamp": "2014-03-18T23:40:00.873278", - "message_id": "9f4901cc-aef6-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "scheduling", - "image_meta.base_image_ref": "", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "deleted_at": "", - "reservation_id": "r-mqh9u63a", - "instance_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "display_name": "instance3", - "instance_type": "m1.nano", - "hostname": "instance3", - "image_meta.size": "25165824", - "state": "building", - "image_meta.min_disk": "0", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "None", - "launched_at": "", - "node": "None", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.image_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_ref_url": "http://10.0.2.15:9292/images/", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:40:00.753219+00:00", - "image_meta.image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.min_ram": "0", - "host": "api.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "vcpus": "1", - "architecture": "None", - "new_task_state": "scheduling", - "audit_period_ending": "2014-03-18T23:40:00.869585", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - } - ] -} \ No newline at end of file diff --git a/distil/tests/unit/data/map_fixture_28.json b/distil/tests/unit/data/map_fixture_28.json deleted file mode 100644 index c1931c3..0000000 --- a/distil/tests/unit/data/map_fixture_28.json +++ /dev/null @@ -1,1132 +0,0 @@ -{ - "http://localhost:8777/v2/meters/memory?q.field=resource_id&q.value=7992f8f7-0181-4a15-b6a8-99dec4d20c73": [ - { - "counter_name": "memory", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "timestamp": "2014-03-19T00:00:12.204287", - "message_id": "71e65f7e-aef9-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "MB", - "counter_volume": 64.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "", - "event_type": "compute.instance.exists", - "availability_zone": "nova", - "terminated_at": "2014-03-18T23:56:49.000000", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "deleted_at": "2014-03-18T23:56:49.000000", - "reservation_id": "r-mqh9u63a", - "instance_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "display_name": "instance3", - "instance_type": "m1.nano", - "hostname": "instance3", - "image_meta.size": "25165824", - "state": "deleted", - "image_meta.min_disk": "0", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:40:10.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_ref_url": "http://10.0.2.15:9292/images/", - "audit_period_beginning": "2014-03-18 23:00:00", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18T23:40:00.000000", - "image_meta.image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "image_meta.image_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "memory_mb": "64", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "vcpus": "1", - "architecture": "None", - "audit_period_ending": "2014-03-19 00:00:00", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "memory", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "timestamp": "2014-03-18T23:56:49.561007", - "message_id": "f8df9b9a-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "MB", - "counter_volume": 64.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "", - "event_type": "compute.instance.delete.end", - "availability_zone": "nova", - "terminated_at": "2014-03-18T23:56:49.115564", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "deleted_at": "", - "reservation_id": "r-mqh9u63a", - "instance_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "display_name": "instance3", - "hostname": "instance3", - "image_meta.size": "25165824", - "state": "deleted", - "image_meta.min_disk": "0", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:40:10.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_ref_url": "http://10.0.2.15:9292/images/", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:40:00+00:00", - "image_meta.image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "image_meta.image_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "memory", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "timestamp": "2014-03-18T23:56:49.291768", - "message_id": "f8c0ad70-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "MB", - "counter_volume": 64.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "2014-03-18T23:56:49.000000", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "deleted_at": "", - "reservation_id": "r-mqh9u63a", - "instance_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "display_name": "instance3", - "instance_type": "m1.nano", - "hostname": "instance3", - "image_meta.size": "25165824", - "state": "deleted", - "image_meta.min_disk": "0", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "active", - "launched_at": "2014-03-18T23:40:10.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.image_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_ref_url": "http://10.0.2.15:9292/images/", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:40:00", - "image_meta.image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "deleting", - "memory_mb": "64", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "vcpus": "1", - "architecture": "None", - "new_task_state": "None", - "audit_period_ending": "2014-03-18T23:56:49.286924", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "memory", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "timestamp": "2014-03-18T23:56:49.105195", - "message_id": "f87515c2-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "MB", - "counter_volume": 64.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "deleting", - "image_meta.base_image_ref": "", - "event_type": "compute.instance.shutdown.end", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "deleted_at": "", - "reservation_id": "r-mqh9u63a", - "instance_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "display_name": "instance3", - "hostname": "instance3", - "image_meta.size": "25165824", - "state": "active", - "image_meta.min_disk": "0", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:40:10.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_ref_url": "http://10.0.2.15:9292/images/", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:40:00+00:00", - "image_meta.image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "image_meta.image_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "memory", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "timestamp": "2014-03-18T23:56:47.762036", - "message_id": "f78ae434-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "MB", - "counter_volume": 64.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "deleting", - "image_meta.base_image_ref": "", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "deleted_at": "", - "reservation_id": "r-mqh9u63a", - "instance_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "display_name": "instance3", - "instance_type": "m1.nano", - "hostname": "instance3", - "image_meta.size": "25165824", - "state": "active", - "image_meta.min_disk": "0", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "None", - "launched_at": "2014-03-18T23:40:10.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.image_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_ref_url": "http://10.0.2.15:9292/images/", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:40:00", - "image_meta.image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "vcpus": "1", - "architecture": "None", - "new_task_state": "deleting", - "audit_period_ending": "2014-03-18T23:56:47.758932", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "memory", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "timestamp": "2014-03-18T23:56:44.352762", - "message_id": "f59eed50-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "MB", - "counter_volume": 64.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "deleting", - "image_meta.base_image_ref": "", - "event_type": "compute.instance.shutdown.start", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "deleted_at": "", - "reservation_id": "r-mqh9u63a", - "instance_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "display_name": "instance3", - "hostname": "instance3", - "image_meta.size": "25165824", - "state": "active", - "image_meta.min_disk": "0", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:40:10.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_ref_url": "http://10.0.2.15:9292/images/", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:40:00+00:00", - "image_meta.image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "image_meta.image_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "memory", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "timestamp": "2014-03-18T23:56:44.345577", - "message_id": "f597a98c-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "MB", - "counter_volume": 64.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "deleting", - "image_meta.base_image_ref": "", - "event_type": "compute.instance.delete.start", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "deleted_at": "", - "reservation_id": "r-mqh9u63a", - "instance_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "display_name": "instance3", - "hostname": "instance3", - "image_meta.size": "25165824", - "state": "active", - "image_meta.min_disk": "0", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:40:10.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_ref_url": "http://10.0.2.15:9292/images/", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:40:00+00:00", - "image_meta.image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "image_meta.image_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "memory", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "timestamp": "2014-03-18T23:56:44.207101", - "message_id": "f559cb26-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "MB", - "counter_volume": 64.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "deleting", - "image_meta.base_image_ref": "", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "deleted_at": "", - "reservation_id": "r-mqh9u63a", - "instance_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "display_name": "instance3", - "instance_type": "m1.nano", - "hostname": "instance3", - "image_meta.size": "25165824", - "state": "active", - "image_meta.min_disk": "0", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "active", - "launched_at": "2014-03-18T23:40:10.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.image_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_ref_url": "http://10.0.2.15:9292/images/", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:40:00", - "image_meta.image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "vcpus": "1", - "architecture": "None", - "new_task_state": "deleting", - "audit_period_ending": "2014-03-18T23:56:44.203509", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "memory", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "timestamp": "2014-03-18T23:40:10.548176", - "message_id": "a542dd78-aef6-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "MB", - "counter_volume": 64.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "", - "event_type": "compute.instance.create.end", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "message": "Success", - "deleted_at": "", - "reservation_id": "r-mqh9u63a", - "instance_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "display_name": "instance3", - "hostname": "instance3", - "image_meta.size": "25165824", - "state": "active", - "image_meta.min_disk": "0", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:40:10.328813", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_ref_url": "http://10.0.2.15:9292/images/", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18T23:40:00.000000", - "image_meta.image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "image_meta.image_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "memory", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "timestamp": "2014-03-18T23:40:10.428457", - "message_id": "a51fb8b6-aef6-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "MB", - "counter_volume": 64.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "deleted_at": "", - "reservation_id": "r-mqh9u63a", - "instance_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "display_name": "instance3", - "instance_type": "m1.nano", - "hostname": "instance3", - "image_meta.size": "25165824", - "state": "active", - "image_meta.min_disk": "0", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "building", - "launched_at": "2014-03-18T23:40:10.328813", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.image_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_ref_url": "http://10.0.2.15:9292/images/", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:40:00", - "image_meta.image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "spawning", - "memory_mb": "64", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "vcpus": "1", - "architecture": "None", - "new_task_state": "None", - "audit_period_ending": "2014-03-18T23:40:10.425800", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "memory", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "timestamp": "2014-03-18T23:40:05.227996", - "message_id": "a1f922e4-aef6-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "MB", - "counter_volume": 64.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "spawning", - "image_meta.base_image_ref": "", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "deleted_at": "", - "reservation_id": "r-mqh9u63a", - "instance_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "display_name": "instance3", - "instance_type": "m1.nano", - "hostname": "instance3", - "image_meta.size": "25165824", - "state": "building", - "image_meta.min_disk": "0", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "None", - "launched_at": "", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.image_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_ref_url": "http://10.0.2.15:9292/images/", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:40:00", - "image_meta.image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "vcpus": "1", - "architecture": "None", - "new_task_state": "spawning", - "audit_period_ending": "2014-03-18T23:40:05.223750", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "memory", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "timestamp": "2014-03-18T23:40:04.711373", - "message_id": "a1bfd1ba-aef6-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "MB", - "counter_volume": 64.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "spawning", - "image_meta.base_image_ref": "", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "deleted_at": "", - "reservation_id": "r-mqh9u63a", - "instance_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "display_name": "instance3", - "instance_type": "m1.nano", - "hostname": "instance3", - "image_meta.size": "25165824", - "state": "building", - "image_meta.min_disk": "0", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "building", - "launched_at": "", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.image_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_ref_url": "http://10.0.2.15:9292/images/", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:40:00", - "image_meta.image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "block_device_mapping", - "memory_mb": "64", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "vcpus": "1", - "architecture": "None", - "new_task_state": "spawning", - "audit_period_ending": "2014-03-18T23:40:04.704534", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "memory", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "timestamp": "2014-03-18T23:40:02.327109", - "message_id": "a161bb02-aef6-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "MB", - "counter_volume": 64.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "block_device_mapping", - "image_meta.base_image_ref": "", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "deleted_at": "", - "reservation_id": "r-mqh9u63a", - "instance_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "display_name": "instance3", - "instance_type": "m1.nano", - "hostname": "instance3", - "image_meta.size": "25165824", - "state": "building", - "image_meta.min_disk": "0", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "building", - "launched_at": "", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.image_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_ref_url": "http://10.0.2.15:9292/images/", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:40:00", - "image_meta.image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "networking", - "memory_mb": "64", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "vcpus": "1", - "architecture": "None", - "new_task_state": "block_device_mapping", - "audit_period_ending": "2014-03-18T23:40:02.315446", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "memory", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "timestamp": "2014-03-18T23:40:01.946209", - "message_id": "a14c6b12-aef6-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "MB", - "counter_volume": 64.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "networking", - "image_meta.base_image_ref": "", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "deleted_at": "", - "reservation_id": "r-mqh9u63a", - "instance_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "display_name": "instance3", - "instance_type": "m1.nano", - "hostname": "instance3", - "image_meta.size": "25165824", - "state": "building", - "image_meta.min_disk": "0", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "building", - "launched_at": "", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.image_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_ref_url": "http://10.0.2.15:9292/images/", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:40:00", - "image_meta.image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "vcpus": "1", - "architecture": "None", - "new_task_state": "networking", - "audit_period_ending": "2014-03-18T23:40:01.941766", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "memory", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "timestamp": "2014-03-18T23:40:01.700650", - "message_id": "a0d36db6-aef6-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "MB", - "counter_volume": 64.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "deleted_at": "", - "reservation_id": "r-mqh9u63a", - "instance_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "display_name": "instance3", - "instance_type": "m1.nano", - "hostname": "instance3", - "image_meta.size": "25165824", - "state": "building", - "image_meta.min_disk": "0", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "None", - "launched_at": "", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.image_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_ref_url": "http://10.0.2.15:9292/images/", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:40:00", - "image_meta.image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "vcpus": "1", - "architecture": "None", - "new_task_state": "None", - "audit_period_ending": "2014-03-18T23:40:01.697845", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "memory", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "timestamp": "2014-03-18T23:40:01.463409", - "message_id": "a0dfbabc-aef6-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "MB", - "counter_volume": 64.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "deleted_at": "", - "reservation_id": "r-mqh9u63a", - "instance_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "display_name": "instance3", - "instance_type": "m1.nano", - "hostname": "instance3", - "image_meta.size": "25165824", - "state": "building", - "image_meta.min_disk": "0", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "None", - "launched_at": "", - "node": "None", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.image_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_ref_url": "http://10.0.2.15:9292/images/", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:40:00", - "image_meta.image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "vcpus": "1", - "architecture": "None", - "new_task_state": "None", - "audit_period_ending": "2014-03-18T23:40:01.447651", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "memory", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "timestamp": "2014-03-18T23:40:01.329597", - "message_id": "a0902a06-aef6-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "MB", - "counter_volume": 64.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "scheduling", - "image_meta.base_image_ref": "", - "event_type": "compute.instance.create.start", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "message": "", - "deleted_at": "", - "reservation_id": "r-mqh9u63a", - "instance_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "display_name": "instance3", - "hostname": "instance3", - "image_meta.size": "25165824", - "state": "building", - "image_meta.min_disk": "0", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "", - "node": "None", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_ref_url": "http://10.0.2.15:9292/images/", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18T23:40:00.000000", - "image_meta.image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "image_meta.image_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "memory", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "timestamp": "2014-03-18T23:40:01.277252", - "message_id": "9fcf8b52-aef6-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "MB", - "counter_volume": 64.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "deleted_at": "", - "reservation_id": "r-mqh9u63a", - "instance_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "display_name": "instance3", - "instance_type": "m1.nano", - "hostname": "instance3", - "image_meta.size": "25165824", - "state": "building", - "image_meta.min_disk": "0", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "building", - "launched_at": "", - "node": "None", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.image_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_ref_url": "http://10.0.2.15:9292/images/", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:40:00", - "image_meta.image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "scheduling", - "memory_mb": "64", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "vcpus": "1", - "architecture": "None", - "new_task_state": "None", - "audit_period_ending": "2014-03-18T23:40:01.273406", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "memory", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "timestamp": "2014-03-18T23:40:00.873278", - "message_id": "9f8c8000-aef6-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "MB", - "counter_volume": 64.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "scheduling", - "image_meta.base_image_ref": "", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "deleted_at": "", - "reservation_id": "r-mqh9u63a", - "instance_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "display_name": "instance3", - "instance_type": "m1.nano", - "hostname": "instance3", - "image_meta.size": "25165824", - "state": "building", - "image_meta.min_disk": "0", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "None", - "launched_at": "", - "node": "None", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.image_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_ref_url": "http://10.0.2.15:9292/images/", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:40:00.753219+00:00", - "image_meta.image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.min_ram": "0", - "host": "api.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "vcpus": "1", - "architecture": "None", - "new_task_state": "scheduling", - "audit_period_ending": "2014-03-18T23:40:00.869585", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - } - ] -} \ No newline at end of file diff --git a/distil/tests/unit/data/map_fixture_29.json b/distil/tests/unit/data/map_fixture_29.json deleted file mode 100644 index c6da4b9..0000000 --- a/distil/tests/unit/data/map_fixture_29.json +++ /dev/null @@ -1,1132 +0,0 @@ -{ - "http://localhost:8777/v2/meters/state?q.field=resource_id&q.value=7992f8f7-0181-4a15-b6a8-99dec4d20c73": [ - { - "counter_name": "state", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "timestamp": "2014-03-19T00:00:12.204287", - "message_id": "71decc14-aef9-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "state", - "counter_volume": 9.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "", - "event_type": "compute.instance.exists", - "availability_zone": "nova", - "terminated_at": "2014-03-18T23:56:49.000000", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "deleted_at": "2014-03-18T23:56:49.000000", - "reservation_id": "r-mqh9u63a", - "instance_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "display_name": "instance3", - "instance_type": "m1.nano", - "hostname": "instance3", - "image_meta.size": "25165824", - "state": "deleted", - "image_meta.min_disk": "0", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:40:10.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_ref_url": "http://10.0.2.15:9292/images/", - "audit_period_beginning": "2014-03-18 23:00:00", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18T23:40:00.000000", - "image_meta.image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "image_meta.image_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "memory_mb": "64", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "vcpus": "1", - "architecture": "None", - "audit_period_ending": "2014-03-19 00:00:00", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "state", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "timestamp": "2014-03-18T23:56:49.561007", - "message_id": "f8d2292e-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "state", - "counter_volume": 9.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "", - "event_type": "compute.instance.delete.end", - "availability_zone": "nova", - "terminated_at": "2014-03-18T23:56:49.115564", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "deleted_at": "", - "reservation_id": "r-mqh9u63a", - "instance_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "display_name": "instance3", - "hostname": "instance3", - "image_meta.size": "25165824", - "state": "deleted", - "image_meta.min_disk": "0", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:40:10.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_ref_url": "http://10.0.2.15:9292/images/", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:40:00+00:00", - "image_meta.image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "image_meta.image_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "state", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "timestamp": "2014-03-18T23:56:49.291768", - "message_id": "f8a973c6-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "state", - "counter_volume": 9.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "2014-03-18T23:56:49.000000", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "deleted_at": "", - "reservation_id": "r-mqh9u63a", - "instance_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "display_name": "instance3", - "instance_type": "m1.nano", - "hostname": "instance3", - "image_meta.size": "25165824", - "state": "deleted", - "image_meta.min_disk": "0", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "active", - "launched_at": "2014-03-18T23:40:10.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.image_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_ref_url": "http://10.0.2.15:9292/images/", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:40:00", - "image_meta.image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "deleting", - "memory_mb": "64", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "vcpus": "1", - "architecture": "None", - "new_task_state": "None", - "audit_period_ending": "2014-03-18T23:56:49.286924", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "state", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "timestamp": "2014-03-18T23:56:49.105195", - "message_id": "f856ea2a-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "state", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "deleting", - "image_meta.base_image_ref": "", - "event_type": "compute.instance.shutdown.end", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "deleted_at": "", - "reservation_id": "r-mqh9u63a", - "instance_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "display_name": "instance3", - "hostname": "instance3", - "image_meta.size": "25165824", - "state": "active", - "image_meta.min_disk": "0", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:40:10.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_ref_url": "http://10.0.2.15:9292/images/", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:40:00+00:00", - "image_meta.image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "image_meta.image_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "state", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "timestamp": "2014-03-18T23:56:47.762036", - "message_id": "f7829be4-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "state", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "deleting", - "image_meta.base_image_ref": "", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "deleted_at": "", - "reservation_id": "r-mqh9u63a", - "instance_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "display_name": "instance3", - "instance_type": "m1.nano", - "hostname": "instance3", - "image_meta.size": "25165824", - "state": "active", - "image_meta.min_disk": "0", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "None", - "launched_at": "2014-03-18T23:40:10.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.image_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_ref_url": "http://10.0.2.15:9292/images/", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:40:00", - "image_meta.image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "vcpus": "1", - "architecture": "None", - "new_task_state": "deleting", - "audit_period_ending": "2014-03-18T23:56:47.758932", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "state", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "timestamp": "2014-03-18T23:56:44.352762", - "message_id": "f59dfd78-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "state", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "deleting", - "image_meta.base_image_ref": "", - "event_type": "compute.instance.shutdown.start", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "deleted_at": "", - "reservation_id": "r-mqh9u63a", - "instance_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "display_name": "instance3", - "hostname": "instance3", - "image_meta.size": "25165824", - "state": "active", - "image_meta.min_disk": "0", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:40:10.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_ref_url": "http://10.0.2.15:9292/images/", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:40:00+00:00", - "image_meta.image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "image_meta.image_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "state", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "timestamp": "2014-03-18T23:56:44.345577", - "message_id": "f596d44e-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "state", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "deleting", - "image_meta.base_image_ref": "", - "event_type": "compute.instance.delete.start", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "deleted_at": "", - "reservation_id": "r-mqh9u63a", - "instance_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "display_name": "instance3", - "hostname": "instance3", - "image_meta.size": "25165824", - "state": "active", - "image_meta.min_disk": "0", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:40:10.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_ref_url": "http://10.0.2.15:9292/images/", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:40:00+00:00", - "image_meta.image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "image_meta.image_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "state", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "timestamp": "2014-03-18T23:56:44.207101", - "message_id": "f559031c-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "state", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "deleting", - "image_meta.base_image_ref": "", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "deleted_at": "", - "reservation_id": "r-mqh9u63a", - "instance_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "display_name": "instance3", - "instance_type": "m1.nano", - "hostname": "instance3", - "image_meta.size": "25165824", - "state": "active", - "image_meta.min_disk": "0", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "active", - "launched_at": "2014-03-18T23:40:10.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.image_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_ref_url": "http://10.0.2.15:9292/images/", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:40:00", - "image_meta.image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "vcpus": "1", - "architecture": "None", - "new_task_state": "deleting", - "audit_period_ending": "2014-03-18T23:56:44.203509", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "state", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "timestamp": "2014-03-18T23:40:10.548176", - "message_id": "a53cc7a8-aef6-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "state", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "", - "event_type": "compute.instance.create.end", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "message": "Success", - "deleted_at": "", - "reservation_id": "r-mqh9u63a", - "instance_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "display_name": "instance3", - "hostname": "instance3", - "image_meta.size": "25165824", - "state": "active", - "image_meta.min_disk": "0", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:40:10.328813", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_ref_url": "http://10.0.2.15:9292/images/", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18T23:40:00.000000", - "image_meta.image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "image_meta.image_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "state", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "timestamp": "2014-03-18T23:40:10.428457", - "message_id": "a515a556-aef6-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "state", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "deleted_at": "", - "reservation_id": "r-mqh9u63a", - "instance_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "display_name": "instance3", - "instance_type": "m1.nano", - "hostname": "instance3", - "image_meta.size": "25165824", - "state": "active", - "image_meta.min_disk": "0", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "building", - "launched_at": "2014-03-18T23:40:10.328813", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.image_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_ref_url": "http://10.0.2.15:9292/images/", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:40:00", - "image_meta.image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "spawning", - "memory_mb": "64", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "vcpus": "1", - "architecture": "None", - "new_task_state": "None", - "audit_period_ending": "2014-03-18T23:40:10.425800", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "state", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "timestamp": "2014-03-18T23:40:05.227996", - "message_id": "a1f7b350-aef6-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "state", - "counter_volume": 2.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "spawning", - "image_meta.base_image_ref": "", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "deleted_at": "", - "reservation_id": "r-mqh9u63a", - "instance_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "display_name": "instance3", - "instance_type": "m1.nano", - "hostname": "instance3", - "image_meta.size": "25165824", - "state": "building", - "image_meta.min_disk": "0", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "None", - "launched_at": "", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.image_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_ref_url": "http://10.0.2.15:9292/images/", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:40:00", - "image_meta.image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "vcpus": "1", - "architecture": "None", - "new_task_state": "spawning", - "audit_period_ending": "2014-03-18T23:40:05.223750", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "state", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "timestamp": "2014-03-18T23:40:04.711373", - "message_id": "a1b8cab4-aef6-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "state", - "counter_volume": 2.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "spawning", - "image_meta.base_image_ref": "", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "deleted_at": "", - "reservation_id": "r-mqh9u63a", - "instance_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "display_name": "instance3", - "instance_type": "m1.nano", - "hostname": "instance3", - "image_meta.size": "25165824", - "state": "building", - "image_meta.min_disk": "0", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "building", - "launched_at": "", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.image_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_ref_url": "http://10.0.2.15:9292/images/", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:40:00", - "image_meta.image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "block_device_mapping", - "memory_mb": "64", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "vcpus": "1", - "architecture": "None", - "new_task_state": "spawning", - "audit_period_ending": "2014-03-18T23:40:04.704534", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "state", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "timestamp": "2014-03-18T23:40:02.327109", - "message_id": "a114c93c-aef6-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "state", - "counter_volume": 2.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "block_device_mapping", - "image_meta.base_image_ref": "", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "deleted_at": "", - "reservation_id": "r-mqh9u63a", - "instance_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "display_name": "instance3", - "instance_type": "m1.nano", - "hostname": "instance3", - "image_meta.size": "25165824", - "state": "building", - "image_meta.min_disk": "0", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "building", - "launched_at": "", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.image_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_ref_url": "http://10.0.2.15:9292/images/", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:40:00", - "image_meta.image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "networking", - "memory_mb": "64", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "vcpus": "1", - "architecture": "None", - "new_task_state": "block_device_mapping", - "audit_period_ending": "2014-03-18T23:40:02.315446", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "state", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "timestamp": "2014-03-18T23:40:01.946209", - "message_id": "a0de35c0-aef6-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "state", - "counter_volume": 2.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "networking", - "image_meta.base_image_ref": "", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "deleted_at": "", - "reservation_id": "r-mqh9u63a", - "instance_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "display_name": "instance3", - "instance_type": "m1.nano", - "hostname": "instance3", - "image_meta.size": "25165824", - "state": "building", - "image_meta.min_disk": "0", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "building", - "launched_at": "", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.image_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_ref_url": "http://10.0.2.15:9292/images/", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:40:00", - "image_meta.image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "vcpus": "1", - "architecture": "None", - "new_task_state": "networking", - "audit_period_ending": "2014-03-18T23:40:01.941766", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "state", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "timestamp": "2014-03-18T23:40:01.700650", - "message_id": "a0d29620-aef6-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "state", - "counter_volume": 2.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "deleted_at": "", - "reservation_id": "r-mqh9u63a", - "instance_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "display_name": "instance3", - "instance_type": "m1.nano", - "hostname": "instance3", - "image_meta.size": "25165824", - "state": "building", - "image_meta.min_disk": "0", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "None", - "launched_at": "", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.image_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_ref_url": "http://10.0.2.15:9292/images/", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:40:00", - "image_meta.image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "vcpus": "1", - "architecture": "None", - "new_task_state": "None", - "audit_period_ending": "2014-03-18T23:40:01.697845", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "state", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "timestamp": "2014-03-18T23:40:01.463409", - "message_id": "a09e19fe-aef6-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "state", - "counter_volume": 2.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "deleted_at": "", - "reservation_id": "r-mqh9u63a", - "instance_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "display_name": "instance3", - "instance_type": "m1.nano", - "hostname": "instance3", - "image_meta.size": "25165824", - "state": "building", - "image_meta.min_disk": "0", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "None", - "launched_at": "", - "node": "None", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.image_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_ref_url": "http://10.0.2.15:9292/images/", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:40:00", - "image_meta.image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "vcpus": "1", - "architecture": "None", - "new_task_state": "None", - "audit_period_ending": "2014-03-18T23:40:01.447651", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "state", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "timestamp": "2014-03-18T23:40:01.329597", - "message_id": "a02b87a4-aef6-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "state", - "counter_volume": 2.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "scheduling", - "image_meta.base_image_ref": "", - "event_type": "compute.instance.create.start", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "message": "", - "deleted_at": "", - "reservation_id": "r-mqh9u63a", - "instance_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "display_name": "instance3", - "hostname": "instance3", - "image_meta.size": "25165824", - "state": "building", - "image_meta.min_disk": "0", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "", - "node": "None", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_ref_url": "http://10.0.2.15:9292/images/", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18T23:40:00.000000", - "image_meta.image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "image_meta.image_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "state", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "timestamp": "2014-03-18T23:40:01.277252", - "message_id": "9fcec82a-aef6-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "state", - "counter_volume": 2.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "deleted_at": "", - "reservation_id": "r-mqh9u63a", - "instance_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "display_name": "instance3", - "instance_type": "m1.nano", - "hostname": "instance3", - "image_meta.size": "25165824", - "state": "building", - "image_meta.min_disk": "0", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "building", - "launched_at": "", - "node": "None", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.image_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_ref_url": "http://10.0.2.15:9292/images/", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:40:00", - "image_meta.image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "scheduling", - "memory_mb": "64", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "vcpus": "1", - "architecture": "None", - "new_task_state": "None", - "audit_period_ending": "2014-03-18T23:40:01.273406", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "state", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "timestamp": "2014-03-18T23:40:00.873278", - "message_id": "9f845f56-aef6-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "state", - "counter_volume": 2.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "scheduling", - "image_meta.base_image_ref": "", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "deleted_at": "", - "reservation_id": "r-mqh9u63a", - "instance_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "display_name": "instance3", - "instance_type": "m1.nano", - "hostname": "instance3", - "image_meta.size": "25165824", - "state": "building", - "image_meta.min_disk": "0", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "None", - "launched_at": "", - "node": "None", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.image_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_ref_url": "http://10.0.2.15:9292/images/", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:40:00.753219+00:00", - "image_meta.image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.min_ram": "0", - "host": "api.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "vcpus": "1", - "architecture": "None", - "new_task_state": "scheduling", - "audit_period_ending": "2014-03-18T23:40:00.869585", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - } - ] -} \ No newline at end of file diff --git a/distil/tests/unit/data/map_fixture_3.json b/distil/tests/unit/data/map_fixture_3.json deleted file mode 100644 index 2acec3c..0000000 --- a/distil/tests/unit/data/map_fixture_3.json +++ /dev/null @@ -1,60 +0,0 @@ -{ - "http://localhost:8777/v2/meters/port.update?q.field=resource_id&q.value=002a338d-1eda-4cd4-a94c-d1495db1efd9": [ - { - "counter_name": "port.update", - "user_id": "5fbff7d5c307476fb3db36f3ffbcca07", - "resource_id": "002a338d-1eda-4cd4-a94c-d1495db1efd9", - "timestamp": "2014-03-18T23:51:05.527721", - "message_id": "2b8386ac-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "port", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "status": "ACTIVE", - "binding:host_id": "vagrant-ubuntu-precise-64", - "binding:capabilities.port_filter": "True", - "admin_state_up": "True", - "network_id": "5b771cb2-961a-4042-a814-2f78c5545f8a", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "device_owner": "compute:nova", - "binding:vif_type": "ovs", - "host": "network.vagrant-ubuntu-precise-64", - "mac_address": "fa:16:3e:65:d2:cf", - "event_type": "port.update.end", - "device_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "id": "002a338d-1eda-4cd4-a94c-d1495db1efd9", - "name": "" - }, - "counter_type": "delta" - }, - { - "counter_name": "port.update", - "user_id": "5fbff7d5c307476fb3db36f3ffbcca07", - "resource_id": "002a338d-1eda-4cd4-a94c-d1495db1efd9", - "timestamp": "2014-03-18T23:26:31.483476", - "message_id": "bcffa4b6-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "port", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "status": "ACTIVE", - "binding:host_id": "vagrant-ubuntu-precise-64", - "binding:capabilities.port_filter": "True", - "admin_state_up": "True", - "network_id": "5b771cb2-961a-4042-a814-2f78c5545f8a", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "device_owner": "compute:nova", - "binding:vif_type": "ovs", - "host": "network.vagrant-ubuntu-precise-64", - "mac_address": "fa:16:3e:65:d2:cf", - "event_type": "port.update.end", - "device_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "id": "002a338d-1eda-4cd4-a94c-d1495db1efd9", - "name": "" - }, - "counter_type": "delta" - } - ] -} \ No newline at end of file diff --git a/distil/tests/unit/data/map_fixture_30.json b/distil/tests/unit/data/map_fixture_30.json deleted file mode 100644 index a866b81..0000000 --- a/distil/tests/unit/data/map_fixture_30.json +++ /dev/null @@ -1,1132 +0,0 @@ -{ - "http://localhost:8777/v2/meters/vcpus?q.field=resource_id&q.value=7992f8f7-0181-4a15-b6a8-99dec4d20c73": [ - { - "counter_name": "vcpus", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "timestamp": "2014-03-19T00:00:12.204287", - "message_id": "71d59a54-aef9-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "vcpu", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "", - "event_type": "compute.instance.exists", - "availability_zone": "nova", - "terminated_at": "2014-03-18T23:56:49.000000", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "deleted_at": "2014-03-18T23:56:49.000000", - "reservation_id": "r-mqh9u63a", - "instance_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "display_name": "instance3", - "instance_type": "m1.nano", - "hostname": "instance3", - "image_meta.size": "25165824", - "state": "deleted", - "image_meta.min_disk": "0", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:40:10.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_ref_url": "http://10.0.2.15:9292/images/", - "audit_period_beginning": "2014-03-18 23:00:00", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18T23:40:00.000000", - "image_meta.image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "image_meta.image_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "memory_mb": "64", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "vcpus": "1", - "architecture": "None", - "audit_period_ending": "2014-03-19 00:00:00", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "vcpus", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "timestamp": "2014-03-18T23:56:49.561007", - "message_id": "f8c5bb58-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "vcpu", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "", - "event_type": "compute.instance.delete.end", - "availability_zone": "nova", - "terminated_at": "2014-03-18T23:56:49.115564", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "deleted_at": "", - "reservation_id": "r-mqh9u63a", - "instance_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "display_name": "instance3", - "hostname": "instance3", - "image_meta.size": "25165824", - "state": "deleted", - "image_meta.min_disk": "0", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:40:10.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_ref_url": "http://10.0.2.15:9292/images/", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:40:00+00:00", - "image_meta.image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "image_meta.image_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "vcpus", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "timestamp": "2014-03-18T23:56:49.291768", - "message_id": "f8a6f182-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "vcpu", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "2014-03-18T23:56:49.000000", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "deleted_at": "", - "reservation_id": "r-mqh9u63a", - "instance_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "display_name": "instance3", - "instance_type": "m1.nano", - "hostname": "instance3", - "image_meta.size": "25165824", - "state": "deleted", - "image_meta.min_disk": "0", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "active", - "launched_at": "2014-03-18T23:40:10.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.image_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_ref_url": "http://10.0.2.15:9292/images/", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:40:00", - "image_meta.image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "deleting", - "memory_mb": "64", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "vcpus": "1", - "architecture": "None", - "new_task_state": "None", - "audit_period_ending": "2014-03-18T23:56:49.286924", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "vcpus", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "timestamp": "2014-03-18T23:56:49.105195", - "message_id": "f853bc92-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "vcpu", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "deleting", - "image_meta.base_image_ref": "", - "event_type": "compute.instance.shutdown.end", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "deleted_at": "", - "reservation_id": "r-mqh9u63a", - "instance_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "display_name": "instance3", - "hostname": "instance3", - "image_meta.size": "25165824", - "state": "active", - "image_meta.min_disk": "0", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:40:10.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_ref_url": "http://10.0.2.15:9292/images/", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:40:00+00:00", - "image_meta.image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "image_meta.image_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "vcpus", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "timestamp": "2014-03-18T23:56:47.762036", - "message_id": "f7811eea-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "vcpu", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "deleting", - "image_meta.base_image_ref": "", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "deleted_at": "", - "reservation_id": "r-mqh9u63a", - "instance_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "display_name": "instance3", - "instance_type": "m1.nano", - "hostname": "instance3", - "image_meta.size": "25165824", - "state": "active", - "image_meta.min_disk": "0", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "None", - "launched_at": "2014-03-18T23:40:10.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.image_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_ref_url": "http://10.0.2.15:9292/images/", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:40:00", - "image_meta.image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "vcpus": "1", - "architecture": "None", - "new_task_state": "deleting", - "audit_period_ending": "2014-03-18T23:56:47.758932", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "vcpus", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "timestamp": "2014-03-18T23:56:44.352762", - "message_id": "f59c9712-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "vcpu", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "deleting", - "image_meta.base_image_ref": "", - "event_type": "compute.instance.shutdown.start", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "deleted_at": "", - "reservation_id": "r-mqh9u63a", - "instance_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "display_name": "instance3", - "hostname": "instance3", - "image_meta.size": "25165824", - "state": "active", - "image_meta.min_disk": "0", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:40:10.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_ref_url": "http://10.0.2.15:9292/images/", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:40:00+00:00", - "image_meta.image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "image_meta.image_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "vcpus", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "timestamp": "2014-03-18T23:56:44.345577", - "message_id": "f59544b2-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "vcpu", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "deleting", - "image_meta.base_image_ref": "", - "event_type": "compute.instance.delete.start", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "deleted_at": "", - "reservation_id": "r-mqh9u63a", - "instance_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "display_name": "instance3", - "hostname": "instance3", - "image_meta.size": "25165824", - "state": "active", - "image_meta.min_disk": "0", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:40:10.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_ref_url": "http://10.0.2.15:9292/images/", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:40:00+00:00", - "image_meta.image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "image_meta.image_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "vcpus", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "timestamp": "2014-03-18T23:56:44.207101", - "message_id": "f5584c10-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "vcpu", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "deleting", - "image_meta.base_image_ref": "", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "deleted_at": "", - "reservation_id": "r-mqh9u63a", - "instance_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "display_name": "instance3", - "instance_type": "m1.nano", - "hostname": "instance3", - "image_meta.size": "25165824", - "state": "active", - "image_meta.min_disk": "0", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "active", - "launched_at": "2014-03-18T23:40:10.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.image_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_ref_url": "http://10.0.2.15:9292/images/", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:40:00", - "image_meta.image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "vcpus": "1", - "architecture": "None", - "new_task_state": "deleting", - "audit_period_ending": "2014-03-18T23:56:44.203509", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "vcpus", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "timestamp": "2014-03-18T23:40:10.548176", - "message_id": "a52ae1c8-aef6-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "vcpu", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "", - "event_type": "compute.instance.create.end", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "message": "Success", - "deleted_at": "", - "reservation_id": "r-mqh9u63a", - "instance_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "display_name": "instance3", - "hostname": "instance3", - "image_meta.size": "25165824", - "state": "active", - "image_meta.min_disk": "0", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:40:10.328813", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_ref_url": "http://10.0.2.15:9292/images/", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18T23:40:00.000000", - "image_meta.image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "image_meta.image_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "vcpus", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "timestamp": "2014-03-18T23:40:10.428457", - "message_id": "a5064f48-aef6-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "vcpu", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "deleted_at": "", - "reservation_id": "r-mqh9u63a", - "instance_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "display_name": "instance3", - "instance_type": "m1.nano", - "hostname": "instance3", - "image_meta.size": "25165824", - "state": "active", - "image_meta.min_disk": "0", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "building", - "launched_at": "2014-03-18T23:40:10.328813", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.image_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_ref_url": "http://10.0.2.15:9292/images/", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:40:00", - "image_meta.image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "spawning", - "memory_mb": "64", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "vcpus": "1", - "architecture": "None", - "new_task_state": "None", - "audit_period_ending": "2014-03-18T23:40:10.425800", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "vcpus", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "timestamp": "2014-03-18T23:40:05.227996", - "message_id": "a1eebdea-aef6-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "vcpu", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "spawning", - "image_meta.base_image_ref": "", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "deleted_at": "", - "reservation_id": "r-mqh9u63a", - "instance_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "display_name": "instance3", - "instance_type": "m1.nano", - "hostname": "instance3", - "image_meta.size": "25165824", - "state": "building", - "image_meta.min_disk": "0", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "None", - "launched_at": "", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.image_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_ref_url": "http://10.0.2.15:9292/images/", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:40:00", - "image_meta.image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "vcpus": "1", - "architecture": "None", - "new_task_state": "spawning", - "audit_period_ending": "2014-03-18T23:40:05.223750", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "vcpus", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "timestamp": "2014-03-18T23:40:04.711373", - "message_id": "a1b2cdbc-aef6-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "vcpu", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "spawning", - "image_meta.base_image_ref": "", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "deleted_at": "", - "reservation_id": "r-mqh9u63a", - "instance_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "display_name": "instance3", - "instance_type": "m1.nano", - "hostname": "instance3", - "image_meta.size": "25165824", - "state": "building", - "image_meta.min_disk": "0", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "building", - "launched_at": "", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.image_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_ref_url": "http://10.0.2.15:9292/images/", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:40:00", - "image_meta.image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "block_device_mapping", - "memory_mb": "64", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "vcpus": "1", - "architecture": "None", - "new_task_state": "spawning", - "audit_period_ending": "2014-03-18T23:40:04.704534", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "vcpus", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "timestamp": "2014-03-18T23:40:02.327109", - "message_id": "a0cf4fe2-aef6-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "vcpu", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "block_device_mapping", - "image_meta.base_image_ref": "", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "deleted_at": "", - "reservation_id": "r-mqh9u63a", - "instance_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "display_name": "instance3", - "instance_type": "m1.nano", - "hostname": "instance3", - "image_meta.size": "25165824", - "state": "building", - "image_meta.min_disk": "0", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "building", - "launched_at": "", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.image_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_ref_url": "http://10.0.2.15:9292/images/", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:40:00", - "image_meta.image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "networking", - "memory_mb": "64", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "vcpus": "1", - "architecture": "None", - "new_task_state": "block_device_mapping", - "audit_period_ending": "2014-03-18T23:40:02.315446", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "vcpus", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "timestamp": "2014-03-18T23:40:01.946209", - "message_id": "a0d120a6-aef6-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "vcpu", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "networking", - "image_meta.base_image_ref": "", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "deleted_at": "", - "reservation_id": "r-mqh9u63a", - "instance_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "display_name": "instance3", - "instance_type": "m1.nano", - "hostname": "instance3", - "image_meta.size": "25165824", - "state": "building", - "image_meta.min_disk": "0", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "building", - "launched_at": "", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.image_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_ref_url": "http://10.0.2.15:9292/images/", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:40:00", - "image_meta.image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "vcpus": "1", - "architecture": "None", - "new_task_state": "networking", - "audit_period_ending": "2014-03-18T23:40:01.941766", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "vcpus", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "timestamp": "2014-03-18T23:40:01.700650", - "message_id": "a09bf214-aef6-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "vcpu", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "deleted_at": "", - "reservation_id": "r-mqh9u63a", - "instance_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "display_name": "instance3", - "instance_type": "m1.nano", - "hostname": "instance3", - "image_meta.size": "25165824", - "state": "building", - "image_meta.min_disk": "0", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "None", - "launched_at": "", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.image_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_ref_url": "http://10.0.2.15:9292/images/", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:40:00", - "image_meta.image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "vcpus": "1", - "architecture": "None", - "new_task_state": "None", - "audit_period_ending": "2014-03-18T23:40:01.697845", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "vcpus", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "timestamp": "2014-03-18T23:40:01.463409", - "message_id": "a076a1da-aef6-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "vcpu", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "deleted_at": "", - "reservation_id": "r-mqh9u63a", - "instance_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "display_name": "instance3", - "instance_type": "m1.nano", - "hostname": "instance3", - "image_meta.size": "25165824", - "state": "building", - "image_meta.min_disk": "0", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "None", - "launched_at": "", - "node": "None", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.image_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_ref_url": "http://10.0.2.15:9292/images/", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:40:00", - "image_meta.image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "vcpus": "1", - "architecture": "None", - "new_task_state": "None", - "audit_period_ending": "2014-03-18T23:40:01.447651", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "vcpus", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "timestamp": "2014-03-18T23:40:01.329597", - "message_id": "9fc4de82-aef6-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "vcpu", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "scheduling", - "image_meta.base_image_ref": "", - "event_type": "compute.instance.create.start", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "message": "", - "deleted_at": "", - "reservation_id": "r-mqh9u63a", - "instance_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "display_name": "instance3", - "hostname": "instance3", - "image_meta.size": "25165824", - "state": "building", - "image_meta.min_disk": "0", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "", - "node": "None", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_ref_url": "http://10.0.2.15:9292/images/", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18T23:40:00.000000", - "image_meta.image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "image_meta.image_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "vcpus", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "timestamp": "2014-03-18T23:40:01.277252", - "message_id": "9fcc3664-aef6-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "vcpu", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "deleted_at": "", - "reservation_id": "r-mqh9u63a", - "instance_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "display_name": "instance3", - "instance_type": "m1.nano", - "hostname": "instance3", - "image_meta.size": "25165824", - "state": "building", - "image_meta.min_disk": "0", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "building", - "launched_at": "", - "node": "None", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.image_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_ref_url": "http://10.0.2.15:9292/images/", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:40:00", - "image_meta.image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "scheduling", - "memory_mb": "64", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "vcpus": "1", - "architecture": "None", - "new_task_state": "None", - "audit_period_ending": "2014-03-18T23:40:01.273406", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "vcpus", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "timestamp": "2014-03-18T23:40:00.873278", - "message_id": "9f63a7fc-aef6-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "vcpu", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "scheduling", - "image_meta.base_image_ref": "", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "deleted_at": "", - "reservation_id": "r-mqh9u63a", - "instance_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "display_name": "instance3", - "instance_type": "m1.nano", - "hostname": "instance3", - "image_meta.size": "25165824", - "state": "building", - "image_meta.min_disk": "0", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "None", - "launched_at": "", - "node": "None", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.image_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_ref_url": "http://10.0.2.15:9292/images/", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:40:00.753219+00:00", - "image_meta.image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.min_ram": "0", - "host": "api.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "vcpus": "1", - "architecture": "None", - "new_task_state": "scheduling", - "audit_period_ending": "2014-03-18T23:40:00.869585", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - } - ] -} \ No newline at end of file diff --git a/distil/tests/unit/data/map_fixture_31.json b/distil/tests/unit/data/map_fixture_31.json deleted file mode 100644 index b1752a6..0000000 --- a/distil/tests/unit/data/map_fixture_31.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "http://localhost:8777/v2/resources/982c1e1f-25ff-41a1-8354-3ab63d986a0d": { - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "links": [ - { - "href": "http://localhost:8777/v2/resources/982c1e1f-25ff-41a1-8354-3ab63d986a0d", - "rel": "self" - }, - { - "href": "http://localhost:8777/v2/meters/volume?q.field=resource_id&q.value=982c1e1f-25ff-41a1-8354-3ab63d986a0d", - "rel": "volume" - }, - { - "href": "http://localhost:8777/v2/meters/volume.size?q.field=resource_id&q.value=982c1e1f-25ff-41a1-8354-3ab63d986a0d", - "rel": "volume.size" - } - ], - "resource_id": "982c1e1f-25ff-41a1-8354-3ab63d986a0d", - "last_sample_timestamp": "2014-03-18T23:27:55.323414", - "first_sample_timestamp": "2014-03-18T23:27:48.477554", - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "metadata": { - "status": "available", - "display_name": "volume1", - "event_type": "volume.create.end", - "availability_zone": "nova", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:27:47", - "snapshot_id": "None", - "volume_type": "None", - "host": "volume.vagrant-ubuntu-precise-64", - "volume_id": "982c1e1f-25ff-41a1-8354-3ab63d986a0d", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "launched_at": "2014-03-18 23:27:55.255191", - "size": "10" - } - } -} \ No newline at end of file diff --git a/distil/tests/unit/data/map_fixture_32.json b/distil/tests/unit/data/map_fixture_32.json deleted file mode 100644 index 0039280..0000000 --- a/distil/tests/unit/data/map_fixture_32.json +++ /dev/null @@ -1,58 +0,0 @@ -{ - "http://localhost:8777/v2/meters/volume?q.field=resource_id&q.value=982c1e1f-25ff-41a1-8354-3ab63d986a0d": [ - { - "counter_name": "volume", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "982c1e1f-25ff-41a1-8354-3ab63d986a0d", - "timestamp": "2014-03-18T23:27:55.323414", - "message_id": "eedf8fa0-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "volume", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "status": "available", - "display_name": "volume1", - "event_type": "volume.create.end", - "availability_zone": "nova", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:27:47", - "snapshot_id": "None", - "volume_type": "None", - "host": "volume.vagrant-ubuntu-precise-64", - "volume_id": "982c1e1f-25ff-41a1-8354-3ab63d986a0d", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "launched_at": "2014-03-18 23:27:55.255191", - "size": "10" - }, - "counter_type": "gauge" - }, - { - "counter_name": "volume", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "982c1e1f-25ff-41a1-8354-3ab63d986a0d", - "timestamp": "2014-03-18T23:27:48.477554", - "message_id": "eace92a8-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "volume", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "status": "creating", - "display_name": "volume1", - "event_type": "volume.create.start", - "availability_zone": "nova", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:27:47", - "snapshot_id": "None", - "volume_type": "None", - "host": "volume.vagrant-ubuntu-precise-64", - "volume_id": "982c1e1f-25ff-41a1-8354-3ab63d986a0d", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "launched_at": "", - "size": "10" - }, - "counter_type": "gauge" - } - ] -} \ No newline at end of file diff --git a/distil/tests/unit/data/map_fixture_33.json b/distil/tests/unit/data/map_fixture_33.json deleted file mode 100644 index de79225..0000000 --- a/distil/tests/unit/data/map_fixture_33.json +++ /dev/null @@ -1,58 +0,0 @@ -{ - "http://localhost:8777/v2/meters/volume.size?q.field=resource_id&q.value=982c1e1f-25ff-41a1-8354-3ab63d986a0d": [ - { - "counter_name": "volume.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "982c1e1f-25ff-41a1-8354-3ab63d986a0d", - "timestamp": "2014-03-18T23:27:55.323414", - "message_id": "eed4aff4-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 10.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "status": "available", - "display_name": "volume1", - "event_type": "volume.create.end", - "availability_zone": "nova", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:27:47", - "snapshot_id": "None", - "volume_type": "None", - "host": "volume.vagrant-ubuntu-precise-64", - "volume_id": "982c1e1f-25ff-41a1-8354-3ab63d986a0d", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "launched_at": "2014-03-18 23:27:55.255191", - "size": "10" - }, - "counter_type": "gauge" - }, - { - "counter_name": "volume.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "982c1e1f-25ff-41a1-8354-3ab63d986a0d", - "timestamp": "2014-03-18T23:27:48.477554", - "message_id": "eac06d0e-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 10.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "status": "creating", - "display_name": "volume1", - "event_type": "volume.create.start", - "availability_zone": "nova", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:27:47", - "snapshot_id": "None", - "volume_type": "None", - "host": "volume.vagrant-ubuntu-precise-64", - "volume_id": "982c1e1f-25ff-41a1-8354-3ab63d986a0d", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "launched_at": "", - "size": "10" - }, - "counter_type": "gauge" - } - ] -} \ No newline at end of file diff --git a/distil/tests/unit/data/map_fixture_34.json b/distil/tests/unit/data/map_fixture_34.json deleted file mode 100644 index 2a90cd8..0000000 --- a/distil/tests/unit/data/map_fixture_34.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "http://localhost:8777/v2/resources/99e2d00e-d966-4821-8c70-6895b1f9d78a": { - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "links": [ - { - "href": "http://localhost:8777/v2/resources/99e2d00e-d966-4821-8c70-6895b1f9d78a", - "rel": "self" - }, - { - "href": "http://localhost:8777/v2/meters/ip.floating?q.field=resource_id&q.value=99e2d00e-d966-4821-8c70-6895b1f9d78a", - "rel": "ip.floating" - }, - { - "href": "http://localhost:8777/v2/meters/ip.floating.create?q.field=resource_id&q.value=99e2d00e-d966-4821-8c70-6895b1f9d78a", - "rel": "ip.floating.create" - }, - { - "href": "http://localhost:8777/v2/meters/ip.floating.update?q.field=resource_id&q.value=99e2d00e-d966-4821-8c70-6895b1f9d78a", - "rel": "ip.floating.update" - } - ], - "resource_id": "99e2d00e-d966-4821-8c70-6895b1f9d78a", - "last_sample_timestamp": "2014-03-18T23:29:03.515986", - "first_sample_timestamp": "2014-03-18T23:28:58.653516", - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "metadata": { - "router_id": "6d53d8e1-7738-4d35-a012-344042a7669a", - "event_type": "floatingip.update.end", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "floating_network_id": "c4bd625d-daf0-42fb-85d1-cce1de845b58", - "host": "network.vagrant-ubuntu-precise-64", - "fixed_ip_address": "10.0.0.4", - "floating_ip_address": "172.24.4.227", - "port_id": "06245705-edbe-4e9e-8954-f568520cecec", - "id": "99e2d00e-d966-4821-8c70-6895b1f9d78a" - } - } -} \ No newline at end of file diff --git a/distil/tests/unit/data/map_fixture_35.json b/distil/tests/unit/data/map_fixture_35.json deleted file mode 100644 index 28089d1..0000000 --- a/distil/tests/unit/data/map_fixture_35.json +++ /dev/null @@ -1,50 +0,0 @@ -{ - "http://localhost:8777/v2/meters/ip.floating?q.field=resource_id&q.value=99e2d00e-d966-4821-8c70-6895b1f9d78a": [ - { - "counter_name": "ip.floating", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "99e2d00e-d966-4821-8c70-6895b1f9d78a", - "timestamp": "2014-03-18T23:29:03.515986", - "message_id": "177a4f54-aef5-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "ip", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "router_id": "6d53d8e1-7738-4d35-a012-344042a7669a", - "event_type": "floatingip.update.end", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "floating_network_id": "c4bd625d-daf0-42fb-85d1-cce1de845b58", - "host": "network.vagrant-ubuntu-precise-64", - "fixed_ip_address": "10.0.0.4", - "floating_ip_address": "172.24.4.227", - "port_id": "06245705-edbe-4e9e-8954-f568520cecec", - "id": "99e2d00e-d966-4821-8c70-6895b1f9d78a" - }, - "counter_type": "gauge" - }, - { - "counter_name": "ip.floating", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "99e2d00e-d966-4821-8c70-6895b1f9d78a", - "timestamp": "2014-03-18T23:28:58.653516", - "message_id": "14947620-aef5-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "ip", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "router_id": "None", - "event_type": "floatingip.create.end", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "floating_network_id": "c4bd625d-daf0-42fb-85d1-cce1de845b58", - "host": "network.vagrant-ubuntu-precise-64", - "fixed_ip_address": "None", - "floating_ip_address": "172.24.4.227", - "port_id": "None", - "id": "99e2d00e-d966-4821-8c70-6895b1f9d78a" - }, - "counter_type": "gauge" - } - ] -} \ No newline at end of file diff --git a/distil/tests/unit/data/map_fixture_36.json b/distil/tests/unit/data/map_fixture_36.json deleted file mode 100644 index 107cb5a..0000000 --- a/distil/tests/unit/data/map_fixture_36.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "http://localhost:8777/v2/meters/ip.floating.create?q.field=resource_id&q.value=99e2d00e-d966-4821-8c70-6895b1f9d78a": [ - { - "counter_name": "ip.floating.create", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "99e2d00e-d966-4821-8c70-6895b1f9d78a", - "timestamp": "2014-03-18T23:28:58.653516", - "message_id": "14947990-aef5-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "ip", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "router_id": "None", - "event_type": "floatingip.create.end", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "floating_network_id": "c4bd625d-daf0-42fb-85d1-cce1de845b58", - "host": "network.vagrant-ubuntu-precise-64", - "fixed_ip_address": "None", - "floating_ip_address": "172.24.4.227", - "port_id": "None", - "id": "99e2d00e-d966-4821-8c70-6895b1f9d78a" - }, - "counter_type": "delta" - } - ] -} \ No newline at end of file diff --git a/distil/tests/unit/data/map_fixture_37.json b/distil/tests/unit/data/map_fixture_37.json deleted file mode 100644 index 5d104da..0000000 --- a/distil/tests/unit/data/map_fixture_37.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "http://localhost:8777/v2/meters/ip.floating.update?q.field=resource_id&q.value=99e2d00e-d966-4821-8c70-6895b1f9d78a": [ - { - "counter_name": "ip.floating.update", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "99e2d00e-d966-4821-8c70-6895b1f9d78a", - "timestamp": "2014-03-18T23:29:03.515986", - "message_id": "177a52ce-aef5-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "ip", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "router_id": "6d53d8e1-7738-4d35-a012-344042a7669a", - "event_type": "floatingip.update.end", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "floating_network_id": "c4bd625d-daf0-42fb-85d1-cce1de845b58", - "host": "network.vagrant-ubuntu-precise-64", - "fixed_ip_address": "10.0.0.4", - "floating_ip_address": "172.24.4.227", - "port_id": "06245705-edbe-4e9e-8954-f568520cecec", - "id": "99e2d00e-d966-4821-8c70-6895b1f9d78a" - }, - "counter_type": "delta" - } - ] -} \ No newline at end of file diff --git a/distil/tests/unit/data/map_fixture_38.json b/distil/tests/unit/data/map_fixture_38.json deleted file mode 100644 index 72dafc4..0000000 --- a/distil/tests/unit/data/map_fixture_38.json +++ /dev/null @@ -1,39 +0,0 @@ -{ - "http://localhost:8777/v2/resources/c02b2782-2180-4992-a934-306b1e60296c": { - "user_id": "5fbff7d5c307476fb3db36f3ffbcca07", - "links": [ - { - "href": "http://localhost:8777/v2/resources/c02b2782-2180-4992-a934-306b1e60296c", - "rel": "self" - }, - { - "href": "http://localhost:8777/v2/meters/port?q.field=resource_id&q.value=c02b2782-2180-4992-a934-306b1e60296c", - "rel": "port" - }, - { - "href": "http://localhost:8777/v2/meters/port.create?q.field=resource_id&q.value=c02b2782-2180-4992-a934-306b1e60296c", - "rel": "port.create" - } - ], - "resource_id": "c02b2782-2180-4992-a934-306b1e60296c", - "last_sample_timestamp": "2014-03-18T23:40:03.063737", - "first_sample_timestamp": "2014-03-18T23:40:03.063737", - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "metadata": { - "status": "DOWN", - "binding:host_id": "vagrant-ubuntu-precise-64", - "binding:capabilities.port_filter": "True", - "admin_state_up": "True", - "network_id": "5b771cb2-961a-4042-a814-2f78c5545f8a", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "device_owner": "compute:nova", - "binding:vif_type": "ovs", - "host": "network.vagrant-ubuntu-precise-64", - "mac_address": "fa:16:3e:e5:10:3f", - "event_type": "port.create.end", - "device_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "id": "c02b2782-2180-4992-a934-306b1e60296c", - "name": "" - } - } -} \ No newline at end of file diff --git a/distil/tests/unit/data/map_fixture_39.json b/distil/tests/unit/data/map_fixture_39.json deleted file mode 100644 index ca72672..0000000 --- a/distil/tests/unit/data/map_fixture_39.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "http://localhost:8777/v2/meters/port?q.field=resource_id&q.value=c02b2782-2180-4992-a934-306b1e60296c": [ - { - "counter_name": "port", - "user_id": "5fbff7d5c307476fb3db36f3ffbcca07", - "resource_id": "c02b2782-2180-4992-a934-306b1e60296c", - "timestamp": "2014-03-18T23:40:03.063737", - "message_id": "a0a54c92-aef6-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "port", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "status": "DOWN", - "binding:host_id": "vagrant-ubuntu-precise-64", - "binding:capabilities.port_filter": "True", - "admin_state_up": "True", - "network_id": "5b771cb2-961a-4042-a814-2f78c5545f8a", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "device_owner": "compute:nova", - "binding:vif_type": "ovs", - "host": "network.vagrant-ubuntu-precise-64", - "mac_address": "fa:16:3e:e5:10:3f", - "event_type": "port.create.end", - "device_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "id": "c02b2782-2180-4992-a934-306b1e60296c", - "name": "" - }, - "counter_type": "gauge" - } - ] -} \ No newline at end of file diff --git a/distil/tests/unit/data/map_fixture_4.json b/distil/tests/unit/data/map_fixture_4.json deleted file mode 100644 index 0db72b7..0000000 --- a/distil/tests/unit/data/map_fixture_4.json +++ /dev/null @@ -1,39 +0,0 @@ -{ - "http://localhost:8777/v2/resources/06245705-edbe-4e9e-8954-f568520cecec": { - "user_id": "5fbff7d5c307476fb3db36f3ffbcca07", - "links": [ - { - "href": "http://localhost:8777/v2/resources/06245705-edbe-4e9e-8954-f568520cecec", - "rel": "self" - }, - { - "href": "http://localhost:8777/v2/meters/port?q.field=resource_id&q.value=06245705-edbe-4e9e-8954-f568520cecec", - "rel": "port" - }, - { - "href": "http://localhost:8777/v2/meters/port.create?q.field=resource_id&q.value=06245705-edbe-4e9e-8954-f568520cecec", - "rel": "port.create" - } - ], - "resource_id": "06245705-edbe-4e9e-8954-f568520cecec", - "last_sample_timestamp": "2014-03-18T23:27:23.335516", - "first_sample_timestamp": "2014-03-18T23:27:23.335516", - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "metadata": { - "status": "DOWN", - "binding:host_id": "vagrant-ubuntu-precise-64", - "binding:capabilities.port_filter": "True", - "admin_state_up": "True", - "network_id": "5b771cb2-961a-4042-a814-2f78c5545f8a", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "device_owner": "compute:nova", - "binding:vif_type": "ovs", - "host": "network.vagrant-ubuntu-precise-64", - "mac_address": "fa:16:3e:17:ab:99", - "event_type": "port.create.end", - "device_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "id": "06245705-edbe-4e9e-8954-f568520cecec", - "name": "" - } - } -} \ No newline at end of file diff --git a/distil/tests/unit/data/map_fixture_40.json b/distil/tests/unit/data/map_fixture_40.json deleted file mode 100644 index 464ba40..0000000 --- a/distil/tests/unit/data/map_fixture_40.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "http://localhost:8777/v2/meters/port.create?q.field=resource_id&q.value=c02b2782-2180-4992-a934-306b1e60296c": [ - { - "counter_name": "port.create", - "user_id": "5fbff7d5c307476fb3db36f3ffbcca07", - "resource_id": "c02b2782-2180-4992-a934-306b1e60296c", - "timestamp": "2014-03-18T23:40:03.063737", - "message_id": "a0a54fc6-aef6-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "port", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "status": "DOWN", - "binding:host_id": "vagrant-ubuntu-precise-64", - "binding:capabilities.port_filter": "True", - "admin_state_up": "True", - "network_id": "5b771cb2-961a-4042-a814-2f78c5545f8a", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "device_owner": "compute:nova", - "binding:vif_type": "ovs", - "host": "network.vagrant-ubuntu-precise-64", - "mac_address": "fa:16:3e:e5:10:3f", - "event_type": "port.create.end", - "device_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "id": "c02b2782-2180-4992-a934-306b1e60296c", - "name": "" - }, - "counter_type": "delta" - } - ] -} \ No newline at end of file diff --git a/distil/tests/unit/data/map_fixture_41.json b/distil/tests/unit/data/map_fixture_41.json deleted file mode 100644 index b20f7e4..0000000 --- a/distil/tests/unit/data/map_fixture_41.json +++ /dev/null @@ -1,55 +0,0 @@ -{ - "http://localhost:8777/v2/resources/c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a": { - "user_id": null, - "links": [ - { - "href": "http://localhost:8777/v2/resources/c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "rel": "self" - }, - { - "href": "http://localhost:8777/v2/meters/image?q.field=resource_id&q.value=c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "rel": "image" - }, - { - "href": "http://localhost:8777/v2/meters/image.download?q.field=resource_id&q.value=c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "rel": "image.download" - }, - { - "href": "http://localhost:8777/v2/meters/image.serve?q.field=resource_id&q.value=c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "rel": "image.serve" - }, - { - "href": "http://localhost:8777/v2/meters/image.size?q.field=resource_id&q.value=c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "rel": "image.size" - }, - { - "href": "http://localhost:8777/v2/meters/image.update?q.field=resource_id&q.value=c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "rel": "image.update" - }, - { - "href": "http://localhost:8777/v2/meters/image.upload?q.field=resource_id&q.value=c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "rel": "image.upload" - } - ], - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "last_sample_timestamp": "2014-03-18T23:59:52", - "first_sample_timestamp": "2014-03-18T21:08:26.884833", - "project_id": "7a64220a45c84104ac95258de1a3720a", - "metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - } - } -} \ No newline at end of file diff --git a/distil/tests/unit/data/map_fixture_42.json b/distil/tests/unit/data/map_fixture_42.json deleted file mode 100644 index eedf37e..0000000 --- a/distil/tests/unit/data/map_fixture_42.json +++ /dev/null @@ -1,4884 +0,0 @@ -{ - "http://localhost:8777/v2/meters/image?q.field=resource_id&q.value=c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a": [ - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T23:59:52", - "message_id": "658df20a-aef9-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T23:58:52", - "message_id": "41ec1e4e-aef9-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T23:57:52", - "message_id": "1e182fe4-aef9-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T23:56:52", - "message_id": "fa474596-aef8-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T23:55:52", - "message_id": "d66ffe1a-aef8-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T23:54:52", - "message_id": "b2ac6a18-aef8-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T23:53:52", - "message_id": "8ef04ad6-aef8-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T23:52:52", - "message_id": "6b240bba-aef8-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T23:51:52", - "message_id": "478293de-aef8-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T23:50:52", - "message_id": "23a64b9a-aef8-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T23:49:52", - "message_id": "ffdc9b2e-aef7-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T23:48:52", - "message_id": "dc0e90a8-aef7-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T23:47:52", - "message_id": "b8542cf4-aef7-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T23:46:52", - "message_id": "9491a058-aef7-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T23:45:52", - "message_id": "70b8033e-aef7-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T23:44:52", - "message_id": "4cedbc64-aef7-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T23:43:52", - "message_id": "2928c684-aef7-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T23:42:52", - "message_id": "05676264-aef7-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T23:41:52", - "message_id": "e199ec94-aef6-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T23:40:52", - "message_id": "be065c86-aef6-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T23:39:52", - "message_id": "9a1c9740-aef6-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T23:38:52", - "message_id": "765005f4-aef6-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T23:37:52", - "message_id": "529c12ba-aef6-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T23:36:52", - "message_id": "2ecd66ae-aef6-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T23:35:52", - "message_id": "0b064704-aef6-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T23:34:52", - "message_id": "e730a84c-aef5-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T23:33:52", - "message_id": "c36d898e-aef5-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T23:32:51", - "message_id": "9fa47eae-aef5-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T23:31:51", - "message_id": "7bdfcbd6-aef5-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T23:30:51", - "message_id": "58177f0a-aef5-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T23:29:52", - "message_id": "346c7dda-aef5-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T23:28:51", - "message_id": "108f2a5c-aef5-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T23:27:52", - "message_id": "ed120522-aef4-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T23:26:52", - "message_id": "c9276954-aef4-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T23:25:52", - "message_id": "a5d62bb6-aef4-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T23:24:51", - "message_id": "817b1042-aef4-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T23:23:51", - "message_id": "5dbab19e-aef4-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T23:22:51", - "message_id": "39e0a224-aef4-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T23:21:51", - "message_id": "16206db0-aef4-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T23:20:51", - "message_id": "f258cb8e-aef3-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T23:19:51", - "message_id": "ceaca534-aef3-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T23:18:51", - "message_id": "aae246e0-aef3-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T23:17:51", - "message_id": "8709f196-aef3-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T23:16:51", - "message_id": "63412f90-aef3-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T23:15:51", - "message_id": "3f7f0532-aef3-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T23:14:51", - "message_id": "1bb52bea-aef3-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T23:13:51", - "message_id": "f7efced6-aef2-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T23:12:51", - "message_id": "d423f720-aef2-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T23:11:51", - "message_id": "b05ddbe4-aef2-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T23:10:51", - "message_id": "8c93cae8-aef2-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T23:09:51", - "message_id": "68d602a6-aef2-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T23:08:51", - "message_id": "4531cc36-aef2-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T23:07:51", - "message_id": "2153c8f0-aef2-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T23:06:51", - "message_id": "fd8673fa-aef1-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T23:05:51", - "message_id": "d9bff9d2-aef1-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T23:04:51", - "message_id": "b5f09ed0-aef1-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T23:03:51", - "message_id": "923ce0f2-aef1-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T23:02:51", - "message_id": "6e68512a-aef1-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T23:01:51", - "message_id": "4a9e2968-aef1-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T23:00:51", - "message_id": "26d8880c-aef1-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T22:59:51", - "message_id": "0316cee2-aef1-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T22:58:51", - "message_id": "df4eb434-aef0-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T22:57:51", - "message_id": "bbd85cee-aef0-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T22:56:51", - "message_id": "97c4cc16-aef0-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T22:55:51", - "message_id": "73fd69b4-aef0-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T22:54:51", - "message_id": "5030e678-aef0-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T22:53:51", - "message_id": "2c719142-aef0-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T22:52:51", - "message_id": "08c81964-aef0-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T22:51:51", - "message_id": "e4e0ab7e-aeef-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T22:50:51", - "message_id": "c11fb6ee-aeef-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T22:49:51", - "message_id": "9d6129ea-aeef-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T22:48:51", - "message_id": "79999e84-aeef-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T22:47:51", - "message_id": "55d60870-aeef-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T22:46:51", - "message_id": "32220ffa-aeef-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T22:45:51", - "message_id": "0e427980-aeef-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T22:44:51", - "message_id": "ea81d54a-aeee-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T22:43:51", - "message_id": "c6b0fbfa-aeee-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T22:42:51", - "message_id": "a2f97ea8-aeee-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T22:41:51", - "message_id": "7f434a34-aeee-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T22:40:51", - "message_id": "5b6981fa-aeee-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T22:39:51", - "message_id": "37a998f4-aeee-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T22:38:51", - "message_id": "13e5285c-aeee-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T22:37:51", - "message_id": "f02056a8-aeed-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T22:36:51", - "message_id": "cc699fd0-aeed-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T22:35:51", - "message_id": "a898c78e-aeed-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T22:34:50", - "message_id": "84c0a084-aeed-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T22:33:50", - "message_id": "610cde1e-aeed-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T22:32:50", - "message_id": "3d392d08-aeed-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T22:31:51", - "message_id": "199a10d8-aeed-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T22:30:50", - "message_id": "f5b30b0c-aeec-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T22:29:50", - "message_id": "d1eb9360-aeec-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T22:28:50", - "message_id": "ae260fd2-aeec-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T22:27:50", - "message_id": "8a5cd464-aeec-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T22:26:50", - "message_id": "66b21024-aeec-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T22:25:50", - "message_id": "42c67d58-aeec-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T22:24:50", - "message_id": "1f0cd952-aeec-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T22:23:50", - "message_id": "fb4f0634-aeeb-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T22:22:50", - "message_id": "d78633b2-aeeb-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T22:21:50", - "message_id": "b3cb12d0-aeeb-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T22:20:50", - "message_id": "9006b8ae-aeeb-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T22:19:50", - "message_id": "6c338fe2-aeeb-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T22:18:50", - "message_id": "487b373a-aeeb-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T22:17:50", - "message_id": "24ad59e6-aeeb-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T22:16:50", - "message_id": "00e40db6-aeeb-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T22:15:50", - "message_id": "dd2380a0-aeea-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T22:14:50", - "message_id": "b942cbd2-aeea-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T22:13:50", - "message_id": "958d45a0-aeea-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T22:12:50", - "message_id": "71c0a8f6-aeea-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T22:11:50", - "message_id": "4e064218-aeea-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T22:10:50", - "message_id": "2a48738c-aeea-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T22:09:50", - "message_id": "06691b74-aeea-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T22:08:50", - "message_id": "e2ad043e-aee9-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T22:07:50", - "message_id": "bef3ee68-aee9-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T22:06:50", - "message_id": "9b262e6a-aee9-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T22:05:50", - "message_id": "776d6d44-aee9-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T22:04:50", - "message_id": "5386067a-aee9-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T22:03:50", - "message_id": "2fc0c680-aee9-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T22:02:50", - "message_id": "0c076c12-aee9-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T22:01:50", - "message_id": "e847d80c-aee8-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T22:00:50", - "message_id": "c4897bb4-aee8-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T21:59:50", - "message_id": "a0acac3e-aee8-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T21:58:50", - "message_id": "7cea0ba2-aee8-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T21:57:50", - "message_id": "59299124-aee8-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T21:56:50", - "message_id": "356f8cac-aee8-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T21:55:50", - "message_id": "11a2f502-aee8-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T21:54:50", - "message_id": "edc1ac14-aee7-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T21:53:50", - "message_id": "ca082a3c-aee7-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T21:52:50", - "message_id": "a6445a80-aee7-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T21:51:50", - "message_id": "82877dfc-aee7-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T21:50:50", - "message_id": "5ec27818-aee7-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T21:49:50", - "message_id": "3ae7a256-aee7-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T21:48:50", - "message_id": "173257c0-aee7-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T21:47:50", - "message_id": "f3655b80-aee6-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T21:46:50", - "message_id": "cfa43450-aee6-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T21:45:50", - "message_id": "abef5d32-aee6-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T21:44:49", - "message_id": "880ce1a0-aee6-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T21:43:49", - "message_id": "644c0890-aee6-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T21:42:49", - "message_id": "407a5d4a-aee6-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T21:41:49", - "message_id": "1cbf0b44-aee6-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T21:40:50", - "message_id": "f90f9830-aee5-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T21:39:49", - "message_id": "d527cb04-aee5-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T21:38:49", - "message_id": "b16747d0-aee5-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T21:37:49", - "message_id": "8da06e1c-aee5-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T21:36:49", - "message_id": "69d9cbe0-aee5-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T21:35:49", - "message_id": "4629d87a-aee5-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T21:34:49", - "message_id": "224738e4-aee5-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T21:33:49", - "message_id": "fe7a401e-aee4-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T21:32:49", - "message_id": "dab7ceb2-aee4-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T21:31:49", - "message_id": "b6f6d1e4-aee4-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T21:30:49", - "message_id": "932f22d4-aee4-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T21:29:49", - "message_id": "6f7d5b3a-aee4-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T21:28:49", - "message_id": "4ba538d6-aee4-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T21:27:49", - "message_id": "27e18e86-aee4-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T21:26:49", - "message_id": "041c3a46-aee4-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T21:25:49", - "message_id": "e04d1cca-aee3-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T21:24:49", - "message_id": "bc9c88f6-aee3-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T21:23:49", - "message_id": "98beec30-aee3-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T21:22:49", - "message_id": "74f89a12-aee3-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T21:21:49", - "message_id": "51365a56-aee3-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T21:20:49", - "message_id": "2d6d9c10-aee3-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T21:19:49", - "message_id": "09aa15b0-aee3-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T21:18:49", - "message_id": "e606e0fc-aee2-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T21:17:49", - "message_id": "c2279046-aee2-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T21:16:49", - "message_id": "9e6240f2-aee2-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T21:15:49", - "message_id": "7a99505c-aee2-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T21:14:49", - "message_id": "56c9d250-aee2-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T21:13:49", - "message_id": "3313369e-aee2-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T21:12:49", - "message_id": "0f2f46c8-aee2-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T21:11:49", - "message_id": "eb67a85c-aee1-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T21:10:49", - "message_id": "c79d0f20-aee1-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T21:09:49", - "message_id": "a3cf6638-aee1-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T21:08:49", - "message_id": "802247dc-aee1-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T21:08:26.922647", - "message_id": "72e722fe-aee1-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "event_type": "image.update", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "min_disk": "0", - "host": "vagrant-ubuntu-precise-64", - "protected": "False", - "container_format": "aki", - "owner": "7a64220a45c84104ac95258de1a3720a", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T21:08:26.884833", - "message_id": "72dc0964-aee1-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "saving", - "event_type": "image.upload", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "min_disk": "0", - "host": "vagrant-ubuntu-precise-64", - "protected": "False", - "container_format": "aki", - "owner": "7a64220a45c84104ac95258de1a3720a", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - } - ] -} \ No newline at end of file diff --git a/distil/tests/unit/data/map_fixture_43.json b/distil/tests/unit/data/map_fixture_43.json deleted file mode 100644 index 90ad645..0000000 --- a/distil/tests/unit/data/map_fixture_43.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "http://localhost:8777/v2/meters/image.download?q.field=resource_id&q.value=c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a": [ - { - "counter_name": "image.download", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T23:25:53.294596", - "message_id": "a7001b1e-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "receiver_tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "destination_ip": "10.0.2.15", - "event_type": "image.send", - "bytes_sent": "4955792", - "image_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "host": "vagrant-ubuntu-precise-64", - "receiver_user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "owner_id": "7a64220a45c84104ac95258de1a3720a" - }, - "counter_type": "delta" - } - ] -} \ No newline at end of file diff --git a/distil/tests/unit/data/map_fixture_44.json b/distil/tests/unit/data/map_fixture_44.json deleted file mode 100644 index 102b442..0000000 --- a/distil/tests/unit/data/map_fixture_44.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "http://localhost:8777/v2/meters/image.serve?q.field=resource_id&q.value=c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a": [ - { - "counter_name": "image.serve", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T23:25:53.294596", - "message_id": "a814b4ec-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "receiver_tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "destination_ip": "10.0.2.15", - "event_type": "image.send", - "bytes_sent": "4955792", - "image_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "host": "vagrant-ubuntu-precise-64", - "receiver_user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "owner_id": "7a64220a45c84104ac95258de1a3720a" - }, - "counter_type": "delta" - } - ] -} \ No newline at end of file diff --git a/distil/tests/unit/data/map_fixture_45.json b/distil/tests/unit/data/map_fixture_45.json deleted file mode 100644 index f17a857..0000000 --- a/distil/tests/unit/data/map_fixture_45.json +++ /dev/null @@ -1,4884 +0,0 @@ -{ - "http://localhost:8777/v2/meters/image.size?q.field=resource_id&q.value=c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a": [ - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T23:59:52", - "message_id": "6570b384-aef9-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T23:58:52", - "message_id": "41b27586-aef9-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T23:57:52", - "message_id": "1def597a-aef9-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T23:56:52", - "message_id": "fa1dfeac-aef8-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T23:55:52", - "message_id": "d650769e-aef8-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T23:54:52", - "message_id": "b28dbba4-aef8-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T23:53:52", - "message_id": "8ecafb50-aef8-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T23:52:52", - "message_id": "6b055882-aef8-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T23:51:52", - "message_id": "4761c46a-aef8-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T23:50:52", - "message_id": "23871914-aef8-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T23:49:52", - "message_id": "ffb916cc-aef7-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T23:48:52", - "message_id": "dbef922a-aef7-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T23:47:52", - "message_id": "b82e15d2-aef7-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T23:46:52", - "message_id": "94708332-aef7-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T23:45:52", - "message_id": "70995178-aef7-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T23:44:51", - "message_id": "4cccd97c-aef7-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T23:43:51", - "message_id": "29093f80-aef7-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T23:42:51", - "message_id": "054182ba-aef7-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T23:41:51", - "message_id": "e17aaad2-aef6-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T23:40:52", - "message_id": "bde6cac4-aef6-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T23:39:52", - "message_id": "99fe7b02-aef6-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T23:38:51", - "message_id": "7634ac50-aef6-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T23:37:51", - "message_id": "5274f978-aef6-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T23:36:51", - "message_id": "2ea7a874-aef6-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T23:35:51", - "message_id": "0ae8f17c-aef6-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T23:34:51", - "message_id": "e7121508-aef5-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T23:33:51", - "message_id": "c34ee948-aef5-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T23:32:51", - "message_id": "9f8516b8-aef5-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T23:31:51", - "message_id": "7bbcaa66-aef5-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T23:30:51", - "message_id": "57f88c76-aef5-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T23:29:51", - "message_id": "34477bf2-aef5-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T23:28:51", - "message_id": "10720378-aef5-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T23:27:52", - "message_id": "ecd74518-aef4-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T23:26:51", - "message_id": "c8ffad2e-aef4-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T23:25:52", - "message_id": "a57945d6-aef4-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T23:24:51", - "message_id": "815e3a94-aef4-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T23:23:51", - "message_id": "5d8f202e-aef4-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T23:22:51", - "message_id": "39c1c282-aef4-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T23:21:51", - "message_id": "15fcb8c0-aef4-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T23:20:51", - "message_id": "f23a1b08-aef3-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T23:19:51", - "message_id": "ce83e0d6-aef3-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T23:18:51", - "message_id": "aac1b5a6-aef3-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T23:17:51", - "message_id": "86eb3652-aef3-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T23:16:51", - "message_id": "6322cb54-aef3-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T23:15:51", - "message_id": "3f60b08c-aef3-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T23:14:51", - "message_id": "1b905b9e-aef3-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T23:13:51", - "message_id": "f7d37d58-aef2-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T23:12:51", - "message_id": "d404dff2-aef2-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T23:11:51", - "message_id": "b0406942-aef2-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T23:10:51", - "message_id": "8c79997a-aef2-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T23:09:51", - "message_id": "68b7b68e-aef2-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T23:08:51", - "message_id": "45074c72-aef2-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T23:07:51", - "message_id": "213241e4-aef2-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T23:06:51", - "message_id": "fd647c3c-aef1-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T23:05:51", - "message_id": "d9a1374a-aef1-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T23:04:51", - "message_id": "b5d04aa4-aef1-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T23:03:51", - "message_id": "921806d8-aef1-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T23:02:51", - "message_id": "6e4a3a28-aef1-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T23:01:51", - "message_id": "4a8364b6-aef1-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T23:00:51", - "message_id": "26bc312a-aef1-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T22:59:51", - "message_id": "02f92ef0-aef1-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T22:58:51", - "message_id": "df303824-aef0-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T22:57:51", - "message_id": "bb9cbbf8-aef0-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T22:56:51", - "message_id": "97a7984e-aef0-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T22:55:51", - "message_id": "73e00a18-aef0-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T22:54:51", - "message_id": "50153536-aef0-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T22:53:51", - "message_id": "2c532f72-aef0-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T22:52:51", - "message_id": "089e8572-aef0-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T22:51:50", - "message_id": "e4c429f4-aeef-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T22:50:50", - "message_id": "c100ebb0-aeef-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T22:49:50", - "message_id": "9d3cb79a-aeef-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T22:48:50", - "message_id": "797733f8-aeef-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T22:47:50", - "message_id": "55ad19c4-aeef-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T22:46:51", - "message_id": "31ff6b4e-aeef-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T22:45:50", - "message_id": "0e21b952-aeef-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T22:44:50", - "message_id": "ea5dce52-aeee-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T22:43:50", - "message_id": "c69150b6-aeee-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T22:42:50", - "message_id": "a2ce3090-aeee-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T22:41:50", - "message_id": "7f1b20b8-aeee-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T22:40:50", - "message_id": "5b3e9274-aeee-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T22:39:50", - "message_id": "3781a3ee-aeee-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T22:38:50", - "message_id": "13b92e00-aeee-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T22:37:50", - "message_id": "eff46a66-aeed-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T22:36:50", - "message_id": "cc41f37c-aeed-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T22:35:50", - "message_id": "a8655ea8-aeed-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T22:34:50", - "message_id": "84a1c1aa-aeed-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T22:33:50", - "message_id": "60df0624-aeed-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T22:32:50", - "message_id": "3d146a4a-aeed-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T22:31:50", - "message_id": "19630570-aeed-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T22:30:50", - "message_id": "f5896734-aeec-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T22:29:50", - "message_id": "d1c91b6e-aeec-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T22:28:50", - "message_id": "adfbe752-aeec-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T22:27:50", - "message_id": "8a3b00be-aeec-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T22:26:50", - "message_id": "6686fc40-aeec-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T22:25:50", - "message_id": "42a39216-aeec-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T22:24:50", - "message_id": "1ee0de60-aeec-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T22:23:50", - "message_id": "fb27aac6-aeeb-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T22:22:50", - "message_id": "d756a48a-aeeb-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T22:21:50", - "message_id": "b391f5d6-aeeb-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T22:20:50", - "message_id": "8fde6e62-aeeb-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T22:19:50", - "message_id": "6c032a3c-aeeb-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T22:18:50", - "message_id": "48437d4a-aeeb-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T22:17:50", - "message_id": "247eb0fa-aeeb-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T22:16:50", - "message_id": "00b34b68-aeeb-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T22:15:50", - "message_id": "dcfbaf30-aeea-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T22:14:50", - "message_id": "b9216d66-aeea-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T22:13:50", - "message_id": "9561f90e-aeea-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T22:12:50", - "message_id": "719c19dc-aeea-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T22:11:50", - "message_id": "4dd5d27c-aeea-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T22:10:50", - "message_id": "2a1b4cc2-aeea-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T22:09:50", - "message_id": "06447aa8-aeea-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T22:08:50", - "message_id": "e282db3c-aee9-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T22:07:50", - "message_id": "bec2e430-aee9-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T22:06:50", - "message_id": "9af86f52-aee9-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T22:05:50", - "message_id": "773dd3a4-aee9-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T22:04:50", - "message_id": "535e0364-aee9-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T22:03:50", - "message_id": "2f9f884e-aee9-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T22:02:50", - "message_id": "0be34ff8-aee9-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T22:01:50", - "message_id": "e81c5d44-aee8-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T22:00:50", - "message_id": "c45e506a-aee8-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T21:59:50", - "message_id": "a0870d80-aee8-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T21:58:50", - "message_id": "7cc50bcc-aee8-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T21:57:50", - "message_id": "5904dbb8-aee8-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T21:56:50", - "message_id": "353f03ac-aee8-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T21:55:50", - "message_id": "117e82bc-aee8-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T21:54:49", - "message_id": "ed9dd208-aee7-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T21:53:49", - "message_id": "c9e4409a-aee7-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T21:52:49", - "message_id": "a61ce3d8-aee7-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T21:51:49", - "message_id": "825a503e-aee7-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T21:50:49", - "message_id": "5e9f0c0c-aee7-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T21:49:49", - "message_id": "3ac6787e-aee7-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T21:48:49", - "message_id": "17091086-aee7-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T21:47:49", - "message_id": "f340e50c-aee6-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T21:46:49", - "message_id": "cf7c9a12-aee6-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T21:45:49", - "message_id": "abc6144a-aee6-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T21:44:49", - "message_id": "87e37e14-aee6-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T21:43:49", - "message_id": "6421855c-aee6-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T21:42:49", - "message_id": "405b99be-aee6-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T21:41:49", - "message_id": "1c9a6c80-aee6-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T21:40:49", - "message_id": "f8e62504-aee5-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T21:39:49", - "message_id": "d507d65a-aee5-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T21:38:49", - "message_id": "b146a1c4-aee5-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T21:37:49", - "message_id": "8d82b822-aee5-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T21:36:49", - "message_id": "69ba6c3c-aee5-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T21:35:49", - "message_id": "46049c90-aee5-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T21:34:49", - "message_id": "222721d0-aee5-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T21:33:49", - "message_id": "fe5ad454-aee4-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T21:32:49", - "message_id": "da974fac-aee4-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T21:31:49", - "message_id": "b6dab98c-aee4-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T21:30:49", - "message_id": "9313cb10-aee4-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T21:29:49", - "message_id": "6f5b9ebe-aee4-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T21:28:49", - "message_id": "4b886904-aee4-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T21:27:49", - "message_id": "27c55be4-aee4-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T21:26:49", - "message_id": "04007608-aee4-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T21:25:49", - "message_id": "e02f6dc4-aee3-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T21:24:49", - "message_id": "bc78d9b0-aee3-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T21:23:49", - "message_id": "98a166b0-aee3-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T21:22:49", - "message_id": "74daeecc-aee3-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T21:21:49", - "message_id": "5119ca8a-aee3-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T21:20:49", - "message_id": "2d509b42-aee3-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T21:19:49", - "message_id": "098e0c4e-aee3-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T21:18:49", - "message_id": "e5dea81c-aee2-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T21:17:49", - "message_id": "c209d344-aee2-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T21:16:49", - "message_id": "9e43b812-aee2-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T21:15:49", - "message_id": "7a79d858-aee2-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T21:14:49", - "message_id": "56abf30c-aee2-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T21:13:49", - "message_id": "32f03676-aee2-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T21:12:49", - "message_id": "0f1374a2-aee2-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T21:11:48", - "message_id": "eb4b3f1e-aee1-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T21:10:48", - "message_id": "c77f2b04-aee1-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T21:09:48", - "message_id": "a3b212ae-aee1-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T21:08:48", - "message_id": "7ffcfa72-aee1-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "protected": "False", - "container_format": "aki", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T21:08:26.922647", - "message_id": "72f1945a-aee1-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "event_type": "image.update", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "min_disk": "0", - "host": "vagrant-ubuntu-precise-64", - "protected": "False", - "container_format": "aki", - "owner": "7a64220a45c84104ac95258de1a3720a", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T21:08:26.884833", - "message_id": "72df0f24-aee1-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4955792.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "saving", - "event_type": "image.upload", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "min_disk": "0", - "host": "vagrant-ubuntu-precise-64", - "protected": "False", - "container_format": "aki", - "owner": "7a64220a45c84104ac95258de1a3720a", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "gauge" - } - ] -} \ No newline at end of file diff --git a/distil/tests/unit/data/map_fixture_46.json b/distil/tests/unit/data/map_fixture_46.json deleted file mode 100644 index 5d37cbb..0000000 --- a/distil/tests/unit/data/map_fixture_46.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "http://localhost:8777/v2/meters/image.update?q.field=resource_id&q.value=c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a": [ - { - "counter_name": "image.update", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T21:08:26.922647", - "message_id": "72f09d2a-aee1-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "event_type": "image.update", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "min_disk": "0", - "host": "vagrant-ubuntu-precise-64", - "protected": "False", - "container_format": "aki", - "owner": "7a64220a45c84104ac95258de1a3720a", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "delta" - } - ] -} \ No newline at end of file diff --git a/distil/tests/unit/data/map_fixture_47.json b/distil/tests/unit/data/map_fixture_47.json deleted file mode 100644 index c2f75f3..0000000 --- a/distil/tests/unit/data/map_fixture_47.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "http://localhost:8777/v2/meters/image.upload?q.field=resource_id&q.value=c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a": [ - { - "counter_name": "image.upload", - "user_id": null, - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "timestamp": "2014-03-18T21:08:26.884833", - "message_id": "72de3874-aee1-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "saving", - "event_type": "image.upload", - "name": "cirros-0.3.1-x86_64-uec-kernel", - "deleted": "False", - "checksum": "c352f4e7121c6eae958bc1570324f17e", - "created_at": "2014-03-18T21:08:26", - "disk_format": "aki", - "updated_at": "2014-03-18T21:08:26", - "id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "min_disk": "0", - "host": "vagrant-ubuntu-precise-64", - "protected": "False", - "container_format": "aki", - "owner": "7a64220a45c84104ac95258de1a3720a", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "4955792" - }, - "counter_type": "delta" - } - ] -} \ No newline at end of file diff --git a/distil/tests/unit/data/map_fixture_48.json b/distil/tests/unit/data/map_fixture_48.json deleted file mode 100644 index 04619bd..0000000 --- a/distil/tests/unit/data/map_fixture_48.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "http://localhost:8777/v2/resources/cd3deadd3d5a4f11802d03928195f4ef": { - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "links": [ - { - "href": "http://localhost:8777/v2/resources/cd3deadd3d5a4f11802d03928195f4ef", - "rel": "self" - }, - { - "href": "http://localhost:8777/v2/meters/storage.api.request?q.field=resource_id&q.value=cd3deadd3d5a4f11802d03928195f4ef", - "rel": "storage.api.request" - }, - { - "href": "http://localhost:8777/v2/meters/storage.objects?q.field=resource_id&q.value=cd3deadd3d5a4f11802d03928195f4ef", - "rel": "storage.objects" - }, - { - "href": "http://localhost:8777/v2/meters/storage.objects.containers?q.field=resource_id&q.value=cd3deadd3d5a4f11802d03928195f4ef", - "rel": "storage.objects.containers" - }, - { - "href": "http://localhost:8777/v2/meters/storage.objects.incoming.bytes?q.field=resource_id&q.value=cd3deadd3d5a4f11802d03928195f4ef", - "rel": "storage.objects.incoming.bytes" - }, - { - "href": "http://localhost:8777/v2/meters/storage.objects.outgoing.bytes?q.field=resource_id&q.value=cd3deadd3d5a4f11802d03928195f4ef", - "rel": "storage.objects.outgoing.bytes" - }, - { - "href": "http://localhost:8777/v2/meters/storage.objects.size?q.field=resource_id&q.value=cd3deadd3d5a4f11802d03928195f4ef", - "rel": "storage.objects.size" - } - ], - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "last_sample_timestamp": "2014-03-18T23:59:52.461499", - "first_sample_timestamp": "2014-03-18T21:08:49", - "project_id": "aacd76e85201469082547632561105bc", - "metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - } - } -} \ No newline at end of file diff --git a/distil/tests/unit/data/map_fixture_49.json b/distil/tests/unit/data/map_fixture_49.json deleted file mode 100644 index 4811a56..0000000 --- a/distil/tests/unit/data/map_fixture_49.json +++ /dev/null @@ -1,3481 +0,0 @@ -{ - "http://localhost:8777/v2/meters/storage.api.request?q.field=resource_id&q.value=cd3deadd3d5a4f11802d03928195f4ef": [ - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:59:52.461499", - "message_id": "6586005e-aef9-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:58:52.667887", - "message_id": "41e23762-aef9-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:57:52.557279", - "message_id": "1e0e0eb0-aef9-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:56:52.464838", - "message_id": "fa3cb0cc-aef8-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:55:52.347631", - "message_id": "d6678532-aef8-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:54:52.346908", - "message_id": "b2a422ea-aef8-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:53:52.395239", - "message_id": "8ee83d32-aef8-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:52:52.341560", - "message_id": "6b1cc63e-aef8-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:51:52.554794", - "message_id": "477a0cf0-aef8-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:50:52.388103", - "message_id": "239d53f0-aef8-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:49:52.350584", - "message_id": "ffd459e6-aef7-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:48:52.280930", - "message_id": "dc066fcc-aef7-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:47:52.343235", - "message_id": "b84ca970-aef7-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:46:52.328012", - "message_id": "94871282-aef7-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:45:52.192344", - "message_id": "70af1706-aef7-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:44:52.151558", - "message_id": "4ce59840-aef7-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:43:52.146332", - "message_id": "292187f2-aef7-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:42:52.156133", - "message_id": "055fc496-aef7-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:41:52.085088", - "message_id": "e191a160-aef6-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:40:52.396023", - "message_id": "bdfdcdbe-aef6-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:39:52.148364", - "message_id": "9a14bd7c-aef6-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:38:52.088223", - "message_id": "764849fe-aef6-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:37:52.169679", - "message_id": "52917472-aef6-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:36:52.111908", - "message_id": "2ec55b8a-aef6-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:35:52.087473", - "message_id": "0afe5ac6-aef6-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:34:51.962796", - "message_id": "e72816d2-aef5-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:33:51.971031", - "message_id": "c3660ad8-aef5-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:32:51.931725", - "message_id": "9f9cc682-aef5-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:31:51.923129", - "message_id": "7bd82eb2-aef5-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:30:51.883900", - "message_id": "580eecdc-aef5-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:29:52.049509", - "message_id": "3464ebd8-aef5-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:28:51.880007", - "message_id": "1087c87a-aef5-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:28:36.201789", - "message_id": "07306cf0-aef5-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef/container1", - "object": "None", - "container": "container1", - "method": "get", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:28:36.175276", - "message_id": "072c54b2-aef5-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef/container1", - "object": "None", - "container": "container1", - "method": "get", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:28:36.144911", - "message_id": "0727aa98-aef5-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "get", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:28:36.117083", - "message_id": "07237572-aef5-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "get", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:28:36.078922", - "message_id": "071d79ba-aef5-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef/container1/pycharm", - "object": "pycharm", - "container": "container1", - "method": "put", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:28:09.263864", - "message_id": "f721e97e-aef4-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef/container1", - "object": "None", - "container": "container1", - "method": "get", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:28:09.235290", - "message_id": "f71d968a-aef4-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "get", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:28:09.207954", - "message_id": "f7197ad2-aef4-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "get", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:28:09.173449", - "message_id": "f7134766-aef4-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef/container1", - "object": "None", - "container": "container1", - "method": "put", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:28:09.127469", - "message_id": "f70c4434-aef4-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef/container1", - "object": "None", - "container": "container1", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:28:02.173733", - "message_id": "f2e8d520-aef4-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "get", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:27:52.284267", - "message_id": "ed023228-aef4-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:26:52.037500", - "message_id": "c91944aa-aef4-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:25:52.774872", - "message_id": "a5c6830a-aef4-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:24:51.832459", - "message_id": "8173703a-aef4-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:23:51.822760", - "message_id": "5daeb10a-aef4-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:22:51.695701", - "message_id": "39d80560-aef4-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:21:51.711240", - "message_id": "16171eea-aef4-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:20:51.694273", - "message_id": "f2514170-aef3-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:19:51.840881", - "message_id": "cea45b68-aef3-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:18:51.789868", - "message_id": "aad94c5c-aef3-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:17:51.655310", - "message_id": "87017eb2-aef3-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:16:51.623550", - "message_id": "63395e8c-aef3-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:15:51.626195", - "message_id": "3f76802e-aef3-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:14:51.588294", - "message_id": "1bad7120-aef3-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:13:51.572415", - "message_id": "f7e7bf16-aef2-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:12:51.517748", - "message_id": "d41c2234-aef2-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:11:51.501134", - "message_id": "b05652d4-aef2-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:10:51.454776", - "message_id": "8c8bf9da-aef2-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:09:51.488135", - "message_id": "68cdcd3e-aef2-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:08:51.671840", - "message_id": "45268fb0-aef2-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:07:51.506870", - "message_id": "214a1b8e-aef2-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:06:51.451602", - "message_id": "fd7e66b0-aef1-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:05:51.428691", - "message_id": "d9b7a192-aef1-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:04:51.349096", - "message_id": "b5e8361e-aef1-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:03:51.453946", - "message_id": "9234ee42-aef1-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:02:51.339152", - "message_id": "6e6025e0-aef1-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:01:51.296239", - "message_id": "4a965274-aef1-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:00:51.283607", - "message_id": "26d11ff4-aef1-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:59:51.289885", - "message_id": "030ed0ac-aef1-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:58:51.255959", - "message_id": "df465bcc-aef0-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:57:51.731329", - "message_id": "bbcba26a-aef0-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:56:51.237154", - "message_id": "97bcf0c2-aef0-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:55:51.211298", - "message_id": "73f5b912-aef0-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:54:51.150390", - "message_id": "50292776-aef0-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:53:51.174043", - "message_id": "2c697e9e-aef0-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:52:51.344070", - "message_id": "08c02af6-aef0-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:51:51.110709", - "message_id": "e4d94758-aeef-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:50:51.112842", - "message_id": "c11654dc-aeef-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:49:51.126048", - "message_id": "9d5513d0-aeef-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:48:51.118012", - "message_id": "79909e7e-aeef-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:47:51.114491", - "message_id": "55ccc3a0-aeef-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:46:51.224619", - "message_id": "321a4afe-aeef-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:45:51.040039", - "message_id": "0e3adbbc-aeef-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:44:51.049268", - "message_id": "ea78fdbc-aeee-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:43:50.962625", - "message_id": "c6a88114-aeee-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:42:51.038589", - "message_id": "a2f0d06e-aeee-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:41:51.119570", - "message_id": "7f39e61a-aeee-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:40:50.954185", - "message_id": "5b5d635c-aeee-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:39:50.991979", - "message_id": "379fe188-aeee-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:38:50.986258", - "message_id": "13dbbc7c-aeee-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:37:50.943873", - "message_id": "f0120d96-aeed-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:36:51.069673", - "message_id": "cc61eab0-aeed-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:35:50.958263", - "message_id": "a88da520-aeed-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:34:50.839149", - "message_id": "84b8364c-aeed-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:33:50.916616", - "message_id": "6100bdfa-aeed-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:32:50.815208", - "message_id": "3d2dfed8-aeed-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:31:51.056165", - "message_id": "198f7f10-aeed-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:30:50.841109", - "message_id": "f5ab6b68-aeec-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:29:50.810073", - "message_id": "d1e363e8-aeec-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:28:50.791324", - "message_id": "ae1d423a-aeec-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:27:50.755897", - "message_id": "8a549614-aeec-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:26:50.914693", - "message_id": "66a988e6-aeec-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:25:50.645485", - "message_id": "42bd2ed8-aeec-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:24:50.708329", - "message_id": "1f039f18-aeec-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:23:50.743034", - "message_id": "fb45896a-aeeb-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:22:50.712401", - "message_id": "d77d92ca-aeeb-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:21:50.742537", - "message_id": "b3bee690-aeeb-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:20:50.762576", - "message_id": "8ffeaea2-aeeb-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:19:50.630270", - "message_id": "6c273954-aeeb-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:18:50.697489", - "message_id": "486e3850-aeeb-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:17:50.657064", - "message_id": "24a4c380-aeeb-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:16:50.618513", - "message_id": "00db9bd6-aeeb-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:15:50.633705", - "message_id": "dd1aa66a-aeea-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:14:50.448906", - "message_id": "b93b2e86-aeea-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:13:50.513500", - "message_id": "9581c3b0-aeea-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:12:50.473911", - "message_id": "71b87302-aeea-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:11:50.531685", - "message_id": "4dfdfd92-aeea-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:10:50.545621", - "message_id": "2a3cd7f2-aeea-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:09:50.374992", - "message_id": "065f8a82-aeea-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:08:50.417387", - "message_id": "e2a2bab0-aee9-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:07:50.468151", - "message_id": "bee7348e-aee9-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:06:50.428643", - "message_id": "9b1de624-aee9-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:05:50.465779", - "message_id": "77604c18-aee9-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:04:50.262536", - "message_id": "537e01d2-aee9-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:03:50.247077", - "message_id": "2fb86080-aee9-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:02:50.313244", - "message_id": "0bff348e-aee9-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:01:50.331854", - "message_id": "e83ec38e-aee8-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:00:50.370525", - "message_id": "c48163de-aee8-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:59:50.200883", - "message_id": "a0a43c5c-aee8-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:58:50.207745", - "message_id": "7ce201aa-aee8-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:57:50.209712", - "message_id": "591f08bc-aee8-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:56:50.287389", - "message_id": "35679ce0-aee8-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:55:50.224931", - "message_id": "119ad160-aee8-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:54:50.030601", - "message_id": "edb9e1aa-aee7-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:53:50.074934", - "message_id": "c9fd7006-aee7-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:52:50.065459", - "message_id": "a638ac44-aee7-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:51:50.125955", - "message_id": "827e9dd6-aee7-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:50:50.119596", - "message_id": "5eba5c78-aee7-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:49:49.964091", - "message_id": "3adf5e34-aee7-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:48:50.038965", - "message_id": "172783f4-aee7-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:47:49.988951", - "message_id": "f35c9f4a-aee6-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:46:49.959619", - "message_id": "cf94dd0c-aee6-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:45:50.101296", - "message_id": "abe735bc-aee6-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:44:49.871316", - "message_id": "8800d860-aee6-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:43:49.913397", - "message_id": "6443ff1a-aee6-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:42:49.818934", - "message_id": "4072537a-aee6-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:41:49.869705", - "message_id": "1cb6c72c-aee6-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:40:49.994170", - "message_id": "f9068088-aee5-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:39:49.762749", - "message_id": "d51fe8bc-aee5-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:38:49.777838", - "message_id": "b15ef08a-aee5-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:37:49.757313", - "message_id": "8d9888aa-aee5-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:36:49.736549", - "message_id": "69d21774-aee5-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:35:49.857794", - "message_id": "46215204-aee5-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:34:49.650020", - "message_id": "223e5738-aee5-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:33:49.594098", - "message_id": "fe728932-aee4-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:32:49.596066", - "message_id": "daaf9206-aee4-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:31:49.618221", - "message_id": "b6efabb2-aee4-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:30:49.587737", - "message_id": "9327be72-aee4-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:29:49.704787", - "message_id": "6f765506-aee4-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:28:49.567990", - "message_id": "4b9e30f4-aee4-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:27:49.560730", - "message_id": "27d9cd68-aee4-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:26:49.547170", - "message_id": "04147a0e-aee4-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:25:49.469092", - "message_id": "e04545d6-aee3-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:24:49.592765", - "message_id": "bc94dea8-aee3-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:23:49.418778", - "message_id": "98b70c72-aee3-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:22:49.401150", - "message_id": "74f1160c-aee3-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:21:49.407040", - "message_id": "512eb788-aee3-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:20:49.368619", - "message_id": "2d659114-aee3-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:19:49.370674", - "message_id": "09a29e66-aee3-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:18:49.570890", - "message_id": "e5fde592-aee2-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:17:49.393379", - "message_id": "c21f8b4e-aee2-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:16:49.371921", - "message_id": "9e58fca4-aee2-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:15:49.346731", - "message_id": "7a91de58-aee2-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:14:49.266322", - "message_id": "56c25318-aee2-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:13:49.347928", - "message_id": "330b86e2-aee2-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:12:49.138444", - "message_id": "0f2843d2-aee2-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:11:49.105287", - "message_id": "eb5fef5e-aee1-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:10:49.060118", - "message_id": "c795c42c-aee1-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:09:48.990606", - "message_id": "a3c7e28c-aee1-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.api.request", - "user_id": "6324deba5a12450c80f02dd9f91bae2a", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:08:49.110354", - "message_id": "8016e3b0-aee1-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 1.0, - "project_id": "aacd76e85201469082547632561105bc", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "method": "head", - "version": "v1" - }, - "counter_type": "delta" - } - ] -} \ No newline at end of file diff --git a/distil/tests/unit/data/map_fixture_5.json b/distil/tests/unit/data/map_fixture_5.json deleted file mode 100644 index a27abcb..0000000 --- a/distil/tests/unit/data/map_fixture_5.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "http://localhost:8777/v2/meters/port?q.field=resource_id&q.value=06245705-edbe-4e9e-8954-f568520cecec": [ - { - "counter_name": "port", - "user_id": "5fbff7d5c307476fb3db36f3ffbcca07", - "resource_id": "06245705-edbe-4e9e-8954-f568520cecec", - "timestamp": "2014-03-18T23:27:23.335516", - "message_id": "dc0aa41e-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "port", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "status": "DOWN", - "binding:host_id": "vagrant-ubuntu-precise-64", - "binding:capabilities.port_filter": "True", - "admin_state_up": "True", - "network_id": "5b771cb2-961a-4042-a814-2f78c5545f8a", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "device_owner": "compute:nova", - "binding:vif_type": "ovs", - "host": "network.vagrant-ubuntu-precise-64", - "mac_address": "fa:16:3e:17:ab:99", - "event_type": "port.create.end", - "device_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "id": "06245705-edbe-4e9e-8954-f568520cecec", - "name": "" - }, - "counter_type": "gauge" - } - ] -} \ No newline at end of file diff --git a/distil/tests/unit/data/map_fixture_50.json b/distil/tests/unit/data/map_fixture_50.json deleted file mode 100644 index 258bdd4..0000000 --- a/distil/tests/unit/data/map_fixture_50.json +++ /dev/null @@ -1,2240 +0,0 @@ -{ - "http://localhost:8777/v2/meters/storage.objects?q.field=resource_id&q.value=cd3deadd3d5a4f11802d03928195f4ef": [ - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:59:52", - "message_id": "658d2bcc-aef9-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:58:52", - "message_id": "41eb7246-aef9-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:57:52", - "message_id": "1e174638-aef9-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:56:52", - "message_id": "fa466b9e-aef8-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:55:52", - "message_id": "d66f259e-aef8-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:54:52", - "message_id": "b2ab7338-aef8-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:53:52", - "message_id": "8eef87ae-aef8-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:52:52", - "message_id": "6b2345f4-aef8-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:51:52", - "message_id": "47818ea8-aef8-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:50:52", - "message_id": "23a56ef0-aef8-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:49:52", - "message_id": "ffdbd7a2-aef7-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:48:52", - "message_id": "dc0dce7a-aef7-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:47:52", - "message_id": "b8537426-aef7-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:46:52", - "message_id": "9490d57e-aef7-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:45:52", - "message_id": "70b6ce4c-aef7-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:44:52", - "message_id": "4cecc78c-aef7-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:43:52", - "message_id": "2927fae2-aef7-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:42:52", - "message_id": "05668542-aef7-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:41:52", - "message_id": "e1992692-aef6-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:40:52", - "message_id": "be05b33a-aef6-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:39:52", - "message_id": "9a1be390-aef6-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:38:52", - "message_id": "764f3840-aef6-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:37:52", - "message_id": "529b54ec-aef6-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:36:52", - "message_id": "2eccb6aa-aef6-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:35:52", - "message_id": "0b05787e-aef6-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:34:52", - "message_id": "e72fc7ce-aef5-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:33:52", - "message_id": "c36caa28-aef5-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:32:51", - "message_id": "9fa3c5c2-aef5-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:31:51", - "message_id": "7bdf26ae-aef5-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:30:51", - "message_id": "5816934c-aef5-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:29:52", - "message_id": "346bc700-aef5-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:28:51", - "message_id": "108e5898-aef5-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:27:52", - "message_id": "ed112de6-aef4-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:26:52", - "message_id": "c9268002-aef4-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:25:52", - "message_id": "a5d53468-aef4-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:24:51", - "message_id": "817a571a-aef4-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:23:51", - "message_id": "5db9d40e-aef4-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:22:51", - "message_id": "39dfe1ea-aef4-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:21:51", - "message_id": "161f632a-aef4-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:20:51", - "message_id": "f258042e-aef3-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:19:51", - "message_id": "ceabc72c-aef3-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:18:51", - "message_id": "aae14290-aef3-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:17:51", - "message_id": "87093ec2-aef3-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:16:51", - "message_id": "63404f9e-aef3-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:15:51", - "message_id": "3f7e1366-aef3-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:14:51", - "message_id": "1bb45184-aef3-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:13:51", - "message_id": "f7ef0ca8-aef2-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:12:51", - "message_id": "d4233326-aef2-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:11:51", - "message_id": "b05d21cc-aef2-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:10:51", - "message_id": "8c930fcc-aef2-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:09:51", - "message_id": "68d523b8-aef2-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:08:51", - "message_id": "453104f4-aef2-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:07:51", - "message_id": "2152e0f2-aef2-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:06:51", - "message_id": "fd858fc6-aef1-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:05:51", - "message_id": "d9bf32b8-aef1-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:04:51", - "message_id": "b5efcd02-aef1-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:03:51", - "message_id": "923bf778-aef1-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:02:51", - "message_id": "6e6700a4-aef1-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:01:51", - "message_id": "4a9ccdde-aef1-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:00:51", - "message_id": "26d7d402-aef1-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:59:51", - "message_id": "0315e7b6-aef1-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:58:51", - "message_id": "df4d7b5a-aef0-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:57:51", - "message_id": "bbd79ce6-aef0-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:56:51", - "message_id": "97c41852-aef0-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:55:51", - "message_id": "73fca736-aef0-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:54:51", - "message_id": "50301856-aef0-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:53:51", - "message_id": "2c70c0dc-aef0-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:52:51", - "message_id": "08c7605a-aef0-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:51:51", - "message_id": "e4dfe536-aeef-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:50:51", - "message_id": "c11eed40-aeef-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:49:51", - "message_id": "9d5fee68-aeef-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:48:51", - "message_id": "7998c1a8-aeef-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:47:51", - "message_id": "55d541e2-aeef-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:46:51", - "message_id": "322154b6-aeef-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:45:51", - "message_id": "0e41ab36-aeef-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:44:51", - "message_id": "ea8108ea-aeee-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:43:51", - "message_id": "c6b05592-aeee-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:42:51", - "message_id": "a2f8b70c-aeee-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:41:51", - "message_id": "7f429238-aeee-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:40:51", - "message_id": "5b68c774-aeee-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:39:51", - "message_id": "37a8a854-aeee-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:38:51", - "message_id": "13e458aa-aeee-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:37:51", - "message_id": "f01f8872-aeed-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:36:51", - "message_id": "cc68d7c6-aeed-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:35:51", - "message_id": "a8981334-aeed-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:34:50", - "message_id": "84bfd726-aeed-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:33:50", - "message_id": "610c267c-aeed-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:32:50", - "message_id": "3d382e6c-aeed-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:31:51", - "message_id": "19995850-aeed-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:30:50", - "message_id": "f5b248b6-aeec-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:29:50", - "message_id": "d1ead704-aeec-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:28:50", - "message_id": "ae2540fc-aeec-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:27:50", - "message_id": "8a5c1114-aeec-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:26:50", - "message_id": "66b14ea0-aeec-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:25:50", - "message_id": "42c5ad4c-aeec-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:24:50", - "message_id": "1f0c188c-aeec-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:23:50", - "message_id": "fb4d300c-aeeb-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:22:50", - "message_id": "d7856df6-aeeb-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:21:50", - "message_id": "b3ca573c-aeeb-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:20:50", - "message_id": "9005f7f2-aeeb-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:19:50", - "message_id": "6c32dd7c-aeeb-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:18:50", - "message_id": "487a4ca8-aeeb-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:17:50", - "message_id": "24ac8d04-aeeb-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:16:50", - "message_id": "00e32a5e-aeeb-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:15:50", - "message_id": "dd22cfca-aeea-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:14:50", - "message_id": "b942097c-aeea-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:13:50", - "message_id": "958c83e0-aeea-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:12:50", - "message_id": "71bfe11e-aeea-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:11:50", - "message_id": "4e05772a-aeea-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:10:50", - "message_id": "2a473f3a-aeea-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:09:50", - "message_id": "06670258-aeea-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:08:50", - "message_id": "e2ac1d58-aee9-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:07:50", - "message_id": "bef31830-aee9-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:06:50", - "message_id": "9b25637c-aee9-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:05:50", - "message_id": "776cafb2-aee9-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:04:50", - "message_id": "53854d2a-aee9-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:03:50", - "message_id": "2fbff19c-aee9-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:02:50", - "message_id": "0c066984-aee9-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:01:50", - "message_id": "e846ecee-aee8-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:00:50", - "message_id": "c488a6d0-aee8-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:59:50", - "message_id": "a0abb450-aee8-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:58:50", - "message_id": "7ce9539c-aee8-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:57:50", - "message_id": "5928df5e-aee8-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:56:50", - "message_id": "356eabf2-aee8-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:55:50", - "message_id": "11a22816-aee8-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:54:50", - "message_id": "edc0f508-aee7-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:53:50", - "message_id": "ca07545e-aee7-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:52:50", - "message_id": "a643a9aa-aee7-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:51:50", - "message_id": "8286c0f6-aee7-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:50:50", - "message_id": "5ec1b824-aee7-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:49:50", - "message_id": "3ae6b864-aee7-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:48:50", - "message_id": "17316ca2-aee7-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:47:50", - "message_id": "f364b0ea-aee6-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:46:50", - "message_id": "cfa37038-aee6-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:45:50", - "message_id": "abeea54a-aee6-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:44:49", - "message_id": "880c085c-aee6-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:43:49", - "message_id": "644b4022-aee6-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:42:49", - "message_id": "4079850a-aee6-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:41:49", - "message_id": "1cbe5956-aee6-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:40:50", - "message_id": "f90eeed0-aee5-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:39:49", - "message_id": "d5271baa-aee5-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:38:49", - "message_id": "b1668c8c-aee5-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:37:49", - "message_id": "8d9fb9a4-aee5-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:36:49", - "message_id": "69d91df8-aee5-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:35:49", - "message_id": "46290544-aee5-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:34:49", - "message_id": "22463458-aee5-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:33:49", - "message_id": "fe7982b4-aee4-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:32:49", - "message_id": "dab6f6cc-aee4-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:31:49", - "message_id": "b6f62cb2-aee4-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:30:49", - "message_id": "932e7c6c-aee4-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:29:49", - "message_id": "6f7cabea-aee4-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:28:49", - "message_id": "4ba47c02-aee4-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:27:49", - "message_id": "27e0ce88-aee4-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:26:49", - "message_id": "041b84ac-aee4-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:25:49", - "message_id": "e04c63c0-aee3-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:24:49", - "message_id": "bc9bd0b4-aee3-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:23:49", - "message_id": "98be3cea-aee3-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:22:49", - "message_id": "74f7bbb0-aee3-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:21:49", - "message_id": "51359198-aee3-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:20:49", - "message_id": "2d6cd51e-aee3-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:19:49", - "message_id": "09a9702e-aee3-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:18:49", - "message_id": "e606015a-aee2-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:17:49", - "message_id": "c226ca8a-aee2-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:16:49", - "message_id": "9e619756-aee2-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:15:49", - "message_id": "7a98a4ea-aee2-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:14:49", - "message_id": "56c92eae-aee2-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:13:49", - "message_id": "33126c32-aee2-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:12:49", - "message_id": "0f2e99da-aee2-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:11:49", - "message_id": "eb66f074-aee1-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:10:49", - "message_id": "c79c5832-aee1-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:09:49", - "message_id": "a3ceb6de-aee1-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:08:49", - "message_id": "80219de6-aee1-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "object", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - } - ] -} \ No newline at end of file diff --git a/distil/tests/unit/data/map_fixture_51.json b/distil/tests/unit/data/map_fixture_51.json deleted file mode 100644 index 6183084..0000000 --- a/distil/tests/unit/data/map_fixture_51.json +++ /dev/null @@ -1,2240 +0,0 @@ -{ - "http://localhost:8777/v2/meters/storage.objects.containers?q.field=resource_id&q.value=cd3deadd3d5a4f11802d03928195f4ef": [ - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:59:52", - "message_id": "658ea902-aef9-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:58:52", - "message_id": "41ed102e-aef9-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:57:52", - "message_id": "1e1918b4-aef9-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:56:52", - "message_id": "fa4804ea-aef8-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:55:52", - "message_id": "d670ba3a-aef8-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:54:52", - "message_id": "b2ad37e0-aef8-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:53:52", - "message_id": "8ef10aa2-aef8-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:52:52", - "message_id": "6b2498fa-aef8-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:51:52", - "message_id": "4783e1bc-aef8-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:50:52", - "message_id": "23a6fba8-aef8-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:49:52", - "message_id": "ffdd4768-aef7-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:48:52", - "message_id": "dc0f47e6-aef7-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:47:52", - "message_id": "b85512fe-aef7-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:46:52", - "message_id": "9492c6ea-aef7-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:45:52", - "message_id": "70b8ba54-aef7-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:44:52", - "message_id": "4cee92b0-aef7-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:43:52", - "message_id": "2929c368-aef7-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:42:52", - "message_id": "05682244-aef7-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:41:52", - "message_id": "e19acf38-aef6-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:40:52", - "message_id": "be06f786-aef6-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:39:52", - "message_id": "9a1d2d90-aef6-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:38:52", - "message_id": "7650b260-aef6-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:37:52", - "message_id": "529cc99e-aef6-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:36:52", - "message_id": "2ece19d2-aef6-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:35:52", - "message_id": "0b06e31c-aef6-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:34:52", - "message_id": "e731dd0c-aef5-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:33:52", - "message_id": "c36e4c66-aef5-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:32:51", - "message_id": "9fa53718-aef5-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:31:51", - "message_id": "7be09b88-aef5-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:30:51", - "message_id": "581850d8-aef5-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:29:52", - "message_id": "346d20fa-aef5-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:28:51", - "message_id": "10901016-aef5-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:27:52", - "message_id": "ed12da7e-aef4-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:26:52", - "message_id": "c928ecde-aef4-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:25:52", - "message_id": "a5d758ce-aef4-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:24:51", - "message_id": "817bccda-aef4-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:23:51", - "message_id": "5dbb6bde-aef4-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:22:51", - "message_id": "39e14d6e-aef4-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:21:51", - "message_id": "1621af36-aef4-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:20:51", - "message_id": "f2597246-aef3-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:19:51", - "message_id": "cead6d5c-aef3-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:18:51", - "message_id": "aae3379e-aef3-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:17:51", - "message_id": "870a9c36-aef3-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:16:51", - "message_id": "6341fcea-aef3-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:15:51", - "message_id": "3f7faffa-aef3-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:14:51", - "message_id": "1bb5f020-aef3-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:13:51", - "message_id": "f7f07caa-aef2-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:12:51", - "message_id": "d424b17e-aef2-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:11:51", - "message_id": "b05e886e-aef2-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:10:51", - "message_id": "8c94aaee-aef2-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:09:51", - "message_id": "68d6b57a-aef2-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:08:51", - "message_id": "45329df0-aef2-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:07:51", - "message_id": "2154b378-aef2-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:06:51", - "message_id": "fd87203e-aef1-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:05:51", - "message_id": "d9c0da96-aef1-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:04:51", - "message_id": "b5f15cf8-aef1-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:03:51", - "message_id": "923de4ca-aef1-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:02:51", - "message_id": "6e69b27c-aef1-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:01:51", - "message_id": "4a9f84fc-aef1-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:00:51", - "message_id": "26d93cca-aef1-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:59:51", - "message_id": "03176fd2-aef1-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:58:51", - "message_id": "df4fbac8-aef0-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:57:51", - "message_id": "bbda4cca-aef0-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:56:51", - "message_id": "97c5b392-aef0-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:55:51", - "message_id": "73fe0dce-aef0-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:54:51", - "message_id": "50317db8-aef0-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:53:51", - "message_id": "2c723a70-aef0-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:52:51", - "message_id": "08c8d7b4-aef0-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:51:51", - "message_id": "e4e16532-aeef-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:50:51", - "message_id": "c1207bba-aeef-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:49:51", - "message_id": "9d62a81a-aeef-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:48:51", - "message_id": "799a7228-aeef-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:47:51", - "message_id": "55d6be6e-aeef-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:46:51", - "message_id": "3222c5bc-aeef-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:45:51", - "message_id": "0e4331d6-aeef-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:44:51", - "message_id": "ea82840e-aeee-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:43:51", - "message_id": "c6b1b0d6-aeee-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:42:51", - "message_id": "a2fa3f32-aeee-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:41:51", - "message_id": "7f43efe8-aeee-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:40:51", - "message_id": "5b6a3334-aeee-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:39:51", - "message_id": "37ab3628-aeee-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:38:51", - "message_id": "13e60bf0-aeee-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:37:51", - "message_id": "f02164bc-aeed-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:36:51", - "message_id": "cc6a7298-aeed-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:35:51", - "message_id": "a899ba7c-aeed-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:34:50", - "message_id": "84c169ec-aeed-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:33:51", - "message_id": "610d96e2-aeed-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:32:50", - "message_id": "3d3a4cce-aeed-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:31:51", - "message_id": "199adb1c-aeed-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:30:50", - "message_id": "f5b3c9e8-aeec-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:29:50", - "message_id": "d1ec4cb0-aeec-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:28:50", - "message_id": "ae26cc56-aeec-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:27:50", - "message_id": "8a5d9db8-aeec-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:26:50", - "message_id": "66b2ce88-aeec-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:25:50", - "message_id": "42c74440-aeec-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:24:50", - "message_id": "1f0e0a34-aeec-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:23:50", - "message_id": "fb4fb48a-aeeb-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:22:50", - "message_id": "d7873960-aeeb-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:21:50", - "message_id": "b3cbf010-aeeb-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:20:50", - "message_id": "900769ac-aeeb-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:19:50", - "message_id": "6c344342-aeeb-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:18:50", - "message_id": "487c627c-aeeb-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:17:50", - "message_id": "24ae25c4-aeeb-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:16:50", - "message_id": "00e4bf86-aeeb-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:15:50", - "message_id": "dd243fc2-aeea-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:14:50", - "message_id": "b9438054-aeea-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:13:50", - "message_id": "958deafa-aeea-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:12:50", - "message_id": "71c2f9ee-aeea-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:11:50", - "message_id": "4e08a4cc-aeea-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:10:50", - "message_id": "2a4a1c64-aeea-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:09:50", - "message_id": "0669d7bc-aeea-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:08:50", - "message_id": "e2adcdc4-aee9-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:07:50", - "message_id": "bef4abdc-aee9-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:06:50", - "message_id": "9b26e21a-aee9-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:05:50", - "message_id": "776e2414-aee9-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:04:50", - "message_id": "5386c89e-aee9-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:03:50", - "message_id": "2fc1a1a4-aee9-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:02:50", - "message_id": "0c082170-aee9-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:01:50", - "message_id": "e848b8d0-aee8-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:00:50", - "message_id": "c48a3e6e-aee8-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:59:50", - "message_id": "a0ad7d6c-aee8-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:58:50", - "message_id": "7ceacc0e-aee8-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:57:50", - "message_id": "592a3be2-aee8-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:56:50", - "message_id": "35703562-aee8-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:55:50", - "message_id": "11a3ad08-aee8-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:54:50", - "message_id": "edc25e16-aee7-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:53:50", - "message_id": "ca090b5a-aee7-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:52:50", - "message_id": "a6454030-aee7-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:51:50", - "message_id": "82883800-aee7-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:50:50", - "message_id": "5ec3274a-aee7-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:49:50", - "message_id": "3ae8596c-aee7-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:48:50", - "message_id": "17336d36-aee7-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:47:50", - "message_id": "f3661034-aee6-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:46:50", - "message_id": "cfa4df5e-aee6-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:45:50", - "message_id": "abf00aa2-aee6-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:44:49", - "message_id": "880d82c2-aee6-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:43:49", - "message_id": "644cb51a-aee6-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:42:49", - "message_id": "407b1780-aee6-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:41:49", - "message_id": "1cbfb544-aee6-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:40:50", - "message_id": "f9103fb0-aee5-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:39:49", - "message_id": "d5288ecc-aee5-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:38:49", - "message_id": "b1680d64-aee5-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:37:49", - "message_id": "8da10ff2-aee5-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:36:49", - "message_id": "69da9034-aee5-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:35:49", - "message_id": "462a8950-aee5-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:34:49", - "message_id": "22480c24-aee5-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:33:49", - "message_id": "fe7b0440-aee4-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:32:49", - "message_id": "dab87506-aee4-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:31:49", - "message_id": "b6f7624e-aee4-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:30:49", - "message_id": "932fba64-aee4-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:29:49", - "message_id": "6f7e1e44-aee4-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:28:49", - "message_id": "4ba5f44c-aee4-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:27:49", - "message_id": "27e296fa-aee4-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:26:49", - "message_id": "041ce9f0-aee4-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:25:49", - "message_id": "e04dcf9e-aee3-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:24:49", - "message_id": "bc9d24e6-aee3-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:23:49", - "message_id": "98bf9ab8-aee3-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:22:49", - "message_id": "74f95e98-aee3-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:21:49", - "message_id": "51371734-aee3-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:20:49", - "message_id": "2d6e5966-aee3-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:19:49", - "message_id": "09aacd98-aee3-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:18:49", - "message_id": "e607b036-aee2-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:17:49", - "message_id": "c2286ca0-aee2-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:16:49", - "message_id": "9e62e3ae-aee2-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:15:49", - "message_id": "7a99ef44-aee2-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:14:49", - "message_id": "56ca7714-aee2-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:13:49", - "message_id": "33141ee2-aee2-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:12:49", - "message_id": "0f304302-aee2-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:11:49", - "message_id": "eb687aca-aee1-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:10:49", - "message_id": "c79db542-aee1-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:09:49", - "message_id": "a3d00994-aee1-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.containers", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:08:49", - "message_id": "8023d2aa-aee1-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "container", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - } - ] -} \ No newline at end of file diff --git a/distil/tests/unit/data/map_fixture_52.json b/distil/tests/unit/data/map_fixture_52.json deleted file mode 100644 index b648cae..0000000 --- a/distil/tests/unit/data/map_fixture_52.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "http://localhost:8777/v2/meters/storage.objects.incoming.bytes?q.field=resource_id&q.value=cd3deadd3d5a4f11802d03928195f4ef": [ - { - "counter_name": "storage.objects.incoming.bytes", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:28:36.078922", - "message_id": "071cc362-aef5-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 86994864.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef/container1/pycharm", - "object": "pycharm", - "container": "container1", - "version": "v1" - }, - "counter_type": "delta" - } - ] -} \ No newline at end of file diff --git a/distil/tests/unit/data/map_fixture_53.json b/distil/tests/unit/data/map_fixture_53.json deleted file mode 100644 index acfea8e..0000000 --- a/distil/tests/unit/data/map_fixture_53.json +++ /dev/null @@ -1,148 +0,0 @@ -{ - "http://localhost:8777/v2/meters/storage.objects.outgoing.bytes?q.field=resource_id&q.value=cd3deadd3d5a4f11802d03928195f4ef": [ - { - "counter_name": "storage.objects.outgoing.bytes", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:28:36.201789", - "message_id": "072f7a52-aef5-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 2.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef/container1", - "object": "None", - "container": "container1", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.objects.outgoing.bytes", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:28:36.175276", - "message_id": "072b6e94-aef5-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 175.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef/container1", - "object": "None", - "container": "container1", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.objects.outgoing.bytes", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:28:36.144911", - "message_id": "0726cd8a-aef5-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 2.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.objects.outgoing.bytes", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:28:36.117083", - "message_id": "07228df6-aef5-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 48.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.objects.outgoing.bytes", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:28:09.263864", - "message_id": "f721158a-aef4-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 2.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef/container1", - "object": "None", - "container": "container1", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.objects.outgoing.bytes", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:28:09.235290", - "message_id": "f71cb742-aef4-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 2.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.objects.outgoing.bytes", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:28:09.207954", - "message_id": "f7188be0-aef4-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 48.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "version": "v1" - }, - "counter_type": "delta" - }, - { - "counter_name": "storage.objects.outgoing.bytes", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:28:02.173733", - "message_id": "f2e7383c-aef4-11e3-b25f-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 2.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "path": "/v1/AUTH_cd3deadd3d5a4f11802d03928195f4ef", - "object": "None", - "container": "None", - "version": "v1" - }, - "counter_type": "delta" - } - ] -} \ No newline at end of file diff --git a/distil/tests/unit/data/map_fixture_54.json b/distil/tests/unit/data/map_fixture_54.json deleted file mode 100644 index 25952e6..0000000 --- a/distil/tests/unit/data/map_fixture_54.json +++ /dev/null @@ -1,2240 +0,0 @@ -{ - "http://localhost:8777/v2/meters/storage.objects.size?q.field=resource_id&q.value=cd3deadd3d5a4f11802d03928195f4ef": [ - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:59:52", - "message_id": "658f69dc-aef9-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 86994864.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:58:52", - "message_id": "41eded32-aef9-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 86994864.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:57:52", - "message_id": "1e19e42e-aef9-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 86994864.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:56:52", - "message_id": "fa498838-aef8-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 86994864.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:55:52", - "message_id": "d6716a5c-aef8-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 86994864.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:54:52", - "message_id": "b2ae04e0-aef8-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 86994864.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:53:52", - "message_id": "8ef1c870-aef8-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 86994864.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:52:52", - "message_id": "6b253f6c-aef8-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 86994864.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:51:52", - "message_id": "4784ceb0-aef8-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 86994864.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:50:52", - "message_id": "23a7b96c-aef8-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 86994864.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:49:52", - "message_id": "ffde07f2-aef7-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 86994864.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:48:52", - "message_id": "dc1019b4-aef7-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 86994864.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:47:52", - "message_id": "b85608da-aef7-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 86994864.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:46:52", - "message_id": "9493f8f8-aef7-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 86994864.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:45:52", - "message_id": "70b97912-aef7-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 86994864.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:44:52", - "message_id": "4cef8508-aef7-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 86994864.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:43:52", - "message_id": "292a6f7a-aef7-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 86994864.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:42:52", - "message_id": "0568db3a-aef7-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 86994864.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:41:52", - "message_id": "e19bce56-aef6-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 86994864.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:40:52", - "message_id": "be0795a6-aef6-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 86994864.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:39:52", - "message_id": "9a1df34c-aef6-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 86994864.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:38:52", - "message_id": "765171f0-aef6-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 86994864.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:37:52", - "message_id": "529d7600-aef6-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 86994864.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:36:52", - "message_id": "2ececdbe-aef6-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 86994864.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:35:52", - "message_id": "0b079ea6-aef6-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 86994864.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:34:52", - "message_id": "e732e53a-aef5-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 86994864.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:33:52", - "message_id": "c36f1ea2-aef5-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 86994864.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:32:51", - "message_id": "9fa5ef82-aef5-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 86994864.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:31:51", - "message_id": "7be16edc-aef5-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 86994864.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:30:51", - "message_id": "581921a2-aef5-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 86994864.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:29:52", - "message_id": "346defd0-aef5-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 86994864.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:28:51", - "message_id": "1090f47c-aef5-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:27:52", - "message_id": "ed15090c-aef4-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:26:52", - "message_id": "c92a6d02-aef4-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:25:52", - "message_id": "a5d8e09a-aef4-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:24:51", - "message_id": "817c842c-aef4-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:23:51", - "message_id": "5dbc236c-aef4-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:22:51", - "message_id": "39e202e0-aef4-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:21:51", - "message_id": "1622b8c2-aef4-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:20:51", - "message_id": "f25a2574-aef3-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:19:51", - "message_id": "ceae1fd6-aef3-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:18:51", - "message_id": "aae409e4-aef3-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:17:51", - "message_id": "870b43c0-aef3-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:16:51", - "message_id": "6342ac58-aef3-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:15:51", - "message_id": "3f80743a-aef3-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:14:51", - "message_id": "1bb706e0-aef3-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:13:51", - "message_id": "f7f1c308-aef2-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:12:51", - "message_id": "d4256b46-aef2-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:11:51", - "message_id": "b05f3020-aef2-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:10:51", - "message_id": "8c956114-aef2-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:09:51", - "message_id": "68d76d3a-aef2-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:08:51", - "message_id": "45336ca8-aef2-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:07:51", - "message_id": "215598c4-aef2-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:06:51", - "message_id": "fd87cdfe-aef1-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:05:51", - "message_id": "d9c19dd2-aef1-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:04:51", - "message_id": "b5f23b96-aef1-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:03:51", - "message_id": "923ffb52-aef1-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:02:51", - "message_id": "6e6a669a-aef1-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:01:51", - "message_id": "4aa0f896-aef1-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T23:00:51", - "message_id": "26da0fce-aef1-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:59:51", - "message_id": "0318154a-aef1-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:58:51", - "message_id": "df5105c2-aef0-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:57:51", - "message_id": "bbdaf40e-aef0-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:56:51", - "message_id": "97c694b0-aef0-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:55:51", - "message_id": "73fec502-aef0-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:54:51", - "message_id": "50322380-aef0-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:53:51", - "message_id": "2c72feb0-aef0-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:52:51", - "message_id": "08c9b512-aef0-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:51:51", - "message_id": "e4e22e54-aeef-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:50:51", - "message_id": "c1213bb8-aeef-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:49:51", - "message_id": "9d637d80-aeef-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:48:51", - "message_id": "799b3cc6-aeef-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:47:51", - "message_id": "55d77af2-aeef-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:46:51", - "message_id": "3223806a-aeef-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:45:51", - "message_id": "0e43e7d4-aeef-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:44:51", - "message_id": "ea834a10-aeee-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:43:51", - "message_id": "c6b2825e-aeee-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:42:51", - "message_id": "a2fb1e20-aeee-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:41:51", - "message_id": "7f4557de-aeee-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:40:51", - "message_id": "5b6c0b32-aeee-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:39:51", - "message_id": "37ac5404-aeee-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:38:51", - "message_id": "13e714d2-aeee-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:37:51", - "message_id": "f02214de-aeed-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:36:51", - "message_id": "cc6b3278-aeed-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:35:51", - "message_id": "a89ad92a-aeed-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:34:50", - "message_id": "84c24f06-aeed-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:33:51", - "message_id": "610e641e-aeed-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:32:50", - "message_id": "3d3b02ea-aeed-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:31:51", - "message_id": "199cfe10-aeed-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:30:50", - "message_id": "f5b47d16-aeec-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:29:50", - "message_id": "d1ed1dac-aeec-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:28:50", - "message_id": "ae278538-aeec-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:27:50", - "message_id": "8a5e64be-aeec-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:26:50", - "message_id": "66b385da-aeec-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:25:50", - "message_id": "42c81802-aeec-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:24:50", - "message_id": "1f0ec53c-aeec-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:23:50", - "message_id": "fb5062a4-aeeb-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:22:50", - "message_id": "d78927ac-aeeb-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:21:50", - "message_id": "b3cd2ca0-aeeb-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:20:50", - "message_id": "900820b8-aeeb-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:19:50", - "message_id": "6c3513c6-aeeb-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:18:50", - "message_id": "48801372-aeeb-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:17:50", - "message_id": "24af0106-aeeb-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:16:50", - "message_id": "00e62ad8-aeeb-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:15:50", - "message_id": "dd24f142-aeea-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:14:50", - "message_id": "b944520e-aeea-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:13:50", - "message_id": "959033c8-aeea-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:12:50", - "message_id": "71c3bde8-aeea-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:11:50", - "message_id": "4e09bf10-aeea-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:10:50", - "message_id": "2a4af332-aeea-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:09:50", - "message_id": "066aab7e-aeea-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:08:50", - "message_id": "e2ae8e76-aee9-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:07:50", - "message_id": "bef6153a-aee9-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:06:50", - "message_id": "9b27a38a-aee9-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:05:50", - "message_id": "77702782-aee9-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:04:50", - "message_id": "538788a6-aee9-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:03:50", - "message_id": "2fc269c2-aee9-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:02:50", - "message_id": "0c08fbf4-aee9-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:01:50", - "message_id": "e8497bda-aee8-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T22:00:50", - "message_id": "c48b21a8-aee8-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:59:50", - "message_id": "a0ae64ac-aee8-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:58:50", - "message_id": "7cebb89e-aee8-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:57:50", - "message_id": "592bd68c-aee8-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:56:50", - "message_id": "357115e0-aee8-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:55:50", - "message_id": "11a473d2-aee8-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:54:50", - "message_id": "edc30e42-aee7-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:53:50", - "message_id": "ca0a5708-aee7-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:52:50", - "message_id": "a646d4ea-aee7-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:51:50", - "message_id": "8288f362-aee7-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:50:50", - "message_id": "5ec41b28-aee7-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:49:50", - "message_id": "3ae92fc2-aee7-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:48:50", - "message_id": "1734eb5c-aee7-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:47:50", - "message_id": "f366b642-aee6-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:46:50", - "message_id": "cfa6a50a-aee6-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:45:50", - "message_id": "abf0c668-aee6-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:44:49", - "message_id": "880e2c54-aee6-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:43:49", - "message_id": "644d6ba4-aee6-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:42:49", - "message_id": "407bf1b4-aee6-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:41:49", - "message_id": "1cc05dd2-aee6-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:40:50", - "message_id": "f910e65e-aee5-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:39:49", - "message_id": "d529605e-aee5-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:38:49", - "message_id": "b168dfe6-aee5-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:37:49", - "message_id": "8da1b39e-aee5-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:36:49", - "message_id": "69db3aca-aee5-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:35:49", - "message_id": "462b4868-aee5-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:34:49", - "message_id": "2248b246-aee5-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:33:49", - "message_id": "fe7be25c-aee4-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:32:49", - "message_id": "dab91ff6-aee4-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:31:49", - "message_id": "b6f7fd30-aee4-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:30:49", - "message_id": "9330445c-aee4-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:29:49", - "message_id": "6f7eeb8a-aee4-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:28:49", - "message_id": "4ba6a572-aee4-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:27:49", - "message_id": "27e372c8-aee4-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:26:49", - "message_id": "041dd20c-aee4-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:25:49", - "message_id": "e04eb03a-aee3-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:24:49", - "message_id": "bc9df59c-aee3-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:23:49", - "message_id": "98c043b4-aee3-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:22:49", - "message_id": "74fa16da-aee3-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:21:49", - "message_id": "5137d8e0-aee3-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:20:49", - "message_id": "2d6f0bfe-aee3-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:19:49", - "message_id": "09ab6fe6-aee3-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:18:49", - "message_id": "e6087930-aee2-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:17:49", - "message_id": "c2292802-aee2-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:16:49", - "message_id": "9e6390e2-aee2-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:15:49", - "message_id": "7a9aa2c2-aee2-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:14:49", - "message_id": "56cb2420-aee2-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:13:49", - "message_id": "331536e2-aee2-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:12:49", - "message_id": "0f30fa9a-aee2-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:11:49", - "message_id": "eb6947e8-aee1-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:10:49", - "message_id": "c79e7298-aee1-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:09:49", - "message_id": "a3d0b48e-aee1-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - }, - { - "counter_name": "storage.objects.size", - "user_id": null, - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "timestamp": "2014-03-18T21:08:49", - "message_id": "80246b98-aee1-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": {}, - "counter_type": "gauge" - } - ] -} \ No newline at end of file diff --git a/distil/tests/unit/data/map_fixture_55.json b/distil/tests/unit/data/map_fixture_55.json deleted file mode 100644 index e5cd329..0000000 --- a/distil/tests/unit/data/map_fixture_55.json +++ /dev/null @@ -1,55 +0,0 @@ -{ - "http://localhost:8777/v2/resources/d5c36550-2476-43a3-9535-fa799782fd53": { - "user_id": null, - "links": [ - { - "href": "http://localhost:8777/v2/resources/d5c36550-2476-43a3-9535-fa799782fd53", - "rel": "self" - }, - { - "href": "http://localhost:8777/v2/meters/image?q.field=resource_id&q.value=d5c36550-2476-43a3-9535-fa799782fd53", - "rel": "image" - }, - { - "href": "http://localhost:8777/v2/meters/image.download?q.field=resource_id&q.value=d5c36550-2476-43a3-9535-fa799782fd53", - "rel": "image.download" - }, - { - "href": "http://localhost:8777/v2/meters/image.serve?q.field=resource_id&q.value=d5c36550-2476-43a3-9535-fa799782fd53", - "rel": "image.serve" - }, - { - "href": "http://localhost:8777/v2/meters/image.size?q.field=resource_id&q.value=d5c36550-2476-43a3-9535-fa799782fd53", - "rel": "image.size" - }, - { - "href": "http://localhost:8777/v2/meters/image.update?q.field=resource_id&q.value=d5c36550-2476-43a3-9535-fa799782fd53", - "rel": "image.update" - }, - { - "href": "http://localhost:8777/v2/meters/image.upload?q.field=resource_id&q.value=d5c36550-2476-43a3-9535-fa799782fd53", - "rel": "image.upload" - } - ], - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "last_sample_timestamp": "2014-03-18T23:59:52", - "first_sample_timestamp": "2014-03-18T21:08:27.737629", - "project_id": "7a64220a45c84104ac95258de1a3720a", - "metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - } - } -} \ No newline at end of file diff --git a/distil/tests/unit/data/map_fixture_56.json b/distil/tests/unit/data/map_fixture_56.json deleted file mode 100644 index 7404621..0000000 --- a/distil/tests/unit/data/map_fixture_56.json +++ /dev/null @@ -1,4884 +0,0 @@ -{ - "http://localhost:8777/v2/meters/image?q.field=resource_id&q.value=d5c36550-2476-43a3-9535-fa799782fd53": [ - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T23:59:52", - "message_id": "658dee40-aef9-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T23:58:52", - "message_id": "41ec1ab6-aef9-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T23:57:52", - "message_id": "1e182c2e-aef9-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T23:56:52", - "message_id": "fa4741e0-aef8-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T23:55:52", - "message_id": "d66ffa50-aef8-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T23:54:52", - "message_id": "b2ac668a-aef8-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T23:53:52", - "message_id": "8ef04702-aef8-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T23:52:52", - "message_id": "6b24082c-aef8-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T23:51:52", - "message_id": "478289d4-aef8-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T23:50:52", - "message_id": "23a647da-aef8-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T23:49:52", - "message_id": "ffdc97f0-aef7-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T23:48:52", - "message_id": "dc0e8ce8-aef7-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T23:47:52", - "message_id": "b854295c-aef7-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T23:46:52", - "message_id": "94919c3e-aef7-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T23:45:52", - "message_id": "70b7ff6a-aef7-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T23:44:52", - "message_id": "4ceda922-aef7-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T23:43:52", - "message_id": "2928c2d8-aef7-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T23:42:52", - "message_id": "05675e4a-aef7-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T23:41:52", - "message_id": "e199e8d4-aef6-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T23:40:52", - "message_id": "be0658da-aef6-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T23:39:52", - "message_id": "9a1c9394-aef6-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T23:38:52", - "message_id": "7650022a-aef6-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T23:37:52", - "message_id": "529c0ea0-aef6-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T23:36:52", - "message_id": "2ecd62d0-aef6-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T23:35:52", - "message_id": "0b06433a-aef6-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T23:34:52", - "message_id": "e730a478-aef5-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T23:33:52", - "message_id": "c36d85c4-aef5-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T23:32:51", - "message_id": "9fa475bc-aef5-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T23:31:51", - "message_id": "7bdfc80c-aef5-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T23:30:51", - "message_id": "58177b36-aef5-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T23:29:52", - "message_id": "346c7a2e-aef5-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T23:28:51", - "message_id": "108f26a6-aef5-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T23:27:52", - "message_id": "ed12014e-aef4-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T23:26:52", - "message_id": "c9276580-aef4-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T23:25:52", - "message_id": "a5d62594-aef4-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T23:24:51", - "message_id": "817b0c0a-aef4-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T23:23:51", - "message_id": "5dbaadb6-aef4-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T23:22:51", - "message_id": "39e09e32-aef4-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T23:21:51", - "message_id": "162069d2-aef4-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T23:20:51", - "message_id": "f258c850-aef3-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T23:19:51", - "message_id": "ceaca16a-aef3-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T23:18:51", - "message_id": "aae242bc-aef3-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T23:17:51", - "message_id": "8709edf4-aef3-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T23:16:51", - "message_id": "63412b12-aef3-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T23:15:51", - "message_id": "3f7f00fa-aef3-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T23:14:51", - "message_id": "1bb51d94-aef3-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T23:13:51", - "message_id": "f7efbef0-aef2-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T23:12:51", - "message_id": "d423f306-aef2-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T23:11:51", - "message_id": "b05dd860-aef2-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T23:10:51", - "message_id": "8c93c386-aef2-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T23:09:51", - "message_id": "68d5fc8e-aef2-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T23:08:51", - "message_id": "4531c8f8-aef2-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T23:07:51", - "message_id": "2153c4cc-aef2-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T23:06:51", - "message_id": "fd86701c-aef1-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T23:05:51", - "message_id": "d9bff554-aef1-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T23:04:51", - "message_id": "b5f09ac0-aef1-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T23:03:51", - "message_id": "923cdd14-aef1-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T23:02:51", - "message_id": "6e684d42-aef1-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T23:01:51", - "message_id": "4a9e2652-aef1-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T23:00:51", - "message_id": "26d88460-aef1-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T22:59:51", - "message_id": "0316cafa-aef1-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T22:58:51", - "message_id": "df4eae80-aef0-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T22:57:51", - "message_id": "bbd85910-aef0-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T22:56:51", - "message_id": "97c4c8c4-aef0-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T22:55:51", - "message_id": "73fd661c-aef0-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T22:54:51", - "message_id": "5030e2ae-aef0-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T22:53:51", - "message_id": "2c718d82-aef0-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T22:52:51", - "message_id": "08c81590-aef0-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T22:51:51", - "message_id": "e4e0a7aa-aeef-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T22:50:51", - "message_id": "c11fb2f2-aeef-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T22:49:51", - "message_id": "9d612634-aeef-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T22:48:51", - "message_id": "79999a56-aeef-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T22:47:51", - "message_id": "55d604c4-aeef-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T22:46:51", - "message_id": "32220c26-aeef-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T22:45:51", - "message_id": "0e42758e-aeef-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T22:44:51", - "message_id": "ea81d086-aeee-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T22:43:51", - "message_id": "c6b0f8bc-aeee-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T22:42:51", - "message_id": "a2f97aac-aeee-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T22:41:51", - "message_id": "7f434688-aeee-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T22:40:51", - "message_id": "5b697e3a-aeee-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T22:39:51", - "message_id": "37a9934a-aeee-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T22:38:51", - "message_id": "13e52474-aeee-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T22:37:51", - "message_id": "f0205306-aeed-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T22:36:51", - "message_id": "cc699c42-aeed-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T22:35:51", - "message_id": "a898c3ce-aeed-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T22:34:50", - "message_id": "84c09c1a-aeed-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T22:33:50", - "message_id": "610cda72-aeed-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T22:32:50", - "message_id": "3d3928e4-aeed-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T22:31:51", - "message_id": "199a0cfa-aeed-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T22:30:50", - "message_id": "f5b3072e-aeec-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T22:29:50", - "message_id": "d1eb8fbe-aeec-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T22:28:50", - "message_id": "ae260c08-aeec-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T22:27:50", - "message_id": "8a5cd0cc-aeec-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T22:26:50", - "message_id": "66b20d04-aeec-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T22:25:50", - "message_id": "42c67a10-aeec-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T22:24:50", - "message_id": "1f0cd574-aeec-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T22:23:50", - "message_id": "fb4f0256-aeeb-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T22:22:50", - "message_id": "d7862e3a-aeeb-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T22:21:50", - "message_id": "b3cb0efc-aeeb-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T22:20:50", - "message_id": "9006b4e4-aeeb-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T22:19:50", - "message_id": "6c338c0e-aeeb-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T22:18:50", - "message_id": "487b338e-aeeb-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T22:17:50", - "message_id": "24ad55ea-aeeb-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T22:16:50", - "message_id": "00e40a14-aeeb-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T22:15:50", - "message_id": "dd237d3a-aeea-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T22:14:50", - "message_id": "b942c7e0-aeea-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T22:13:50", - "message_id": "958d3ed4-aeea-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T22:12:50", - "message_id": "71c0a50e-aeea-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T22:11:50", - "message_id": "4e0637d2-aeea-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T22:10:50", - "message_id": "2a486f72-aeea-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T22:09:50", - "message_id": "066917a0-aeea-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T22:08:50", - "message_id": "e2ad0088-aee9-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T22:07:50", - "message_id": "bef3ea3a-aee9-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T22:06:50", - "message_id": "9b262a50-aee9-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T22:05:50", - "message_id": "776d69b6-aee9-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T22:04:50", - "message_id": "5386029c-aee9-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T22:03:50", - "message_id": "2fc0c2c0-aee9-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T22:02:50", - "message_id": "0c076636-aee9-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T22:01:50", - "message_id": "e847d42e-aee8-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T22:00:50", - "message_id": "c48977cc-aee8-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T21:59:50", - "message_id": "a0aca838-aee8-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T21:58:50", - "message_id": "7cea07d8-aee8-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T21:57:50", - "message_id": "59298d28-aee8-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T21:56:50", - "message_id": "356f88d8-aee8-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T21:55:50", - "message_id": "11a2f1b0-aee8-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T21:54:50", - "message_id": "edc1a854-aee7-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T21:53:50", - "message_id": "ca082672-aee7-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T21:52:50", - "message_id": "a64456de-aee7-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T21:51:50", - "message_id": "82877a5a-aee7-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T21:50:50", - "message_id": "5ec27458-aee7-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T21:49:50", - "message_id": "3ae79f04-aee7-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T21:48:50", - "message_id": "173253ec-aee7-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T21:47:50", - "message_id": "f36557b6-aee6-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T21:46:50", - "message_id": "cfa43130-aee6-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T21:45:50", - "message_id": "abef5364-aee6-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T21:44:49", - "message_id": "880cde26-aee6-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T21:43:49", - "message_id": "644c0462-aee6-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T21:42:49", - "message_id": "407a59b2-aee6-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T21:41:49", - "message_id": "1cbf0752-aee6-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T21:40:50", - "message_id": "f90f9498-aee5-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T21:39:49", - "message_id": "d527c79e-aee5-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T21:38:49", - "message_id": "b1674438-aee5-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T21:37:49", - "message_id": "8da06ad4-aee5-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T21:36:49", - "message_id": "69d9c816-aee5-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T21:35:49", - "message_id": "4629d49c-aee5-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T21:34:49", - "message_id": "2247338a-aee5-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T21:33:49", - "message_id": "fe7a3c36-aee4-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T21:32:49", - "message_id": "dab7cae8-aee4-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T21:31:49", - "message_id": "b6f6ce10-aee4-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T21:30:49", - "message_id": "932f1ef6-aee4-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T21:29:49", - "message_id": "6f7d57e8-aee4-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T21:28:49", - "message_id": "4ba5350c-aee4-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T21:27:49", - "message_id": "27e18a6c-aee4-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T21:26:49", - "message_id": "041c36c2-aee4-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T21:25:49", - "message_id": "e04d193c-aee3-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T21:24:49", - "message_id": "bc9c8504-aee3-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T21:23:49", - "message_id": "98bee870-aee3-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T21:22:49", - "message_id": "74f895b2-aee3-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T21:21:49", - "message_id": "5136566e-aee3-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T21:20:49", - "message_id": "2d6d94ea-aee3-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T21:19:49", - "message_id": "09aa11f0-aee3-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T21:18:49", - "message_id": "e606dcd8-aee2-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T21:17:49", - "message_id": "c2278b0a-aee2-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T21:16:49", - "message_id": "9e623d32-aee2-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T21:15:49", - "message_id": "7a994c74-aee2-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T21:14:49", - "message_id": "56c9cce2-aee2-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T21:13:49", - "message_id": "331332ca-aee2-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T21:12:49", - "message_id": "0f2f42fe-aee2-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T21:11:49", - "message_id": "eb67a46a-aee1-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T21:10:49", - "message_id": "c79d0b42-aee1-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T21:09:49", - "message_id": "a3cf6278-aee1-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T21:08:49", - "message_id": "802243ea-aee1-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T21:08:27.768720", - "message_id": "736208b6-aee1-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "event_type": "image.update", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "id": "d5c36550-2476-43a3-9535-fa799782fd53", - "min_disk": "0", - "host": "vagrant-ubuntu-precise-64", - "protected": "False", - "container_format": "ari", - "owner": "7a64220a45c84104ac95258de1a3720a", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T21:08:27.737629", - "message_id": "735e7160-aee1-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "saving", - "event_type": "image.upload", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "id": "d5c36550-2476-43a3-9535-fa799782fd53", - "min_disk": "0", - "host": "vagrant-ubuntu-precise-64", - "protected": "False", - "container_format": "ari", - "owner": "7a64220a45c84104ac95258de1a3720a", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - } - ] -} \ No newline at end of file diff --git a/distil/tests/unit/data/map_fixture_57.json b/distil/tests/unit/data/map_fixture_57.json deleted file mode 100644 index 7eacf9b..0000000 --- a/distil/tests/unit/data/map_fixture_57.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "http://localhost:8777/v2/meters/image.download?q.field=resource_id&q.value=d5c36550-2476-43a3-9535-fa799782fd53": [ - { - "counter_name": "image.download", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T23:25:54.496640", - "message_id": "a7835916-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "receiver_tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "destination_ip": "10.0.2.15", - "event_type": "image.send", - "bytes_sent": "3714968", - "image_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "host": "vagrant-ubuntu-precise-64", - "receiver_user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "owner_id": "7a64220a45c84104ac95258de1a3720a" - }, - "counter_type": "delta" - } - ] -} \ No newline at end of file diff --git a/distil/tests/unit/data/map_fixture_58.json b/distil/tests/unit/data/map_fixture_58.json deleted file mode 100644 index 8081c52..0000000 --- a/distil/tests/unit/data/map_fixture_58.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "http://localhost:8777/v2/meters/image.serve?q.field=resource_id&q.value=d5c36550-2476-43a3-9535-fa799782fd53": [ - { - "counter_name": "image.serve", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T23:25:54.496640", - "message_id": "a8aeaed0-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "receiver_tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "destination_ip": "10.0.2.15", - "event_type": "image.send", - "bytes_sent": "3714968", - "image_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "host": "vagrant-ubuntu-precise-64", - "receiver_user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "owner_id": "7a64220a45c84104ac95258de1a3720a" - }, - "counter_type": "delta" - } - ] -} \ No newline at end of file diff --git a/distil/tests/unit/data/map_fixture_59.json b/distil/tests/unit/data/map_fixture_59.json deleted file mode 100644 index 1a8df1a..0000000 --- a/distil/tests/unit/data/map_fixture_59.json +++ /dev/null @@ -1,4884 +0,0 @@ -{ - "http://localhost:8777/v2/meters/image.size?q.field=resource_id&q.value=d5c36550-2476-43a3-9535-fa799782fd53": [ - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T23:59:52", - "message_id": "6570afd8-aef9-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T23:58:52", - "message_id": "41b27202-aef9-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T23:57:52", - "message_id": "1def5588-aef9-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T23:56:52", - "message_id": "fa1dfb14-aef8-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T23:55:52", - "message_id": "d65072ca-aef8-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T23:54:52", - "message_id": "b28db79e-aef8-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T23:53:52", - "message_id": "8ecaf56a-aef8-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T23:52:52", - "message_id": "6b0554f4-aef8-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T23:51:52", - "message_id": "4761c0a0-aef8-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T23:50:52", - "message_id": "23871342-aef8-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T23:49:52", - "message_id": "ffb90ed4-aef7-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T23:48:52", - "message_id": "dbef8e88-aef7-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T23:47:52", - "message_id": "b82e11b8-aef7-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T23:46:52", - "message_id": "94707f9a-aef7-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T23:45:52", - "message_id": "70994d72-aef7-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T23:44:51", - "message_id": "4cccd60c-aef7-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T23:43:51", - "message_id": "29093b84-aef7-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T23:42:51", - "message_id": "05417e78-aef7-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T23:41:51", - "message_id": "e17aa6ea-aef6-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T23:40:52", - "message_id": "bde6c6fa-aef6-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T23:39:52", - "message_id": "99fe76ca-aef6-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T23:38:51", - "message_id": "7634a8ea-aef6-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T23:37:51", - "message_id": "5274f45a-aef6-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T23:36:51", - "message_id": "2ea7a4aa-aef6-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T23:35:51", - "message_id": "0ae8edda-aef6-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T23:34:51", - "message_id": "e7121134-aef5-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T23:33:51", - "message_id": "c34ee57e-aef5-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T23:32:51", - "message_id": "9f85132a-aef5-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T23:31:51", - "message_id": "7bbca69c-aef5-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T23:30:51", - "message_id": "57f888ac-aef5-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T23:29:51", - "message_id": "344776e8-aef5-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T23:28:51", - "message_id": "1071ffea-aef5-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T23:27:52", - "message_id": "ecd74108-aef4-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T23:26:51", - "message_id": "c8ffa95a-aef4-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T23:25:52", - "message_id": "a5793f78-aef4-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T23:24:51", - "message_id": "815e3666-aef4-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T23:23:51", - "message_id": "5d8f198a-aef4-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T23:22:51", - "message_id": "39c1bcce-aef4-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T23:21:51", - "message_id": "15fcb4b0-aef4-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T23:20:51", - "message_id": "f23a1766-aef3-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T23:19:51", - "message_id": "ce83dd20-aef3-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T23:18:51", - "message_id": "aac1b1e6-aef3-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T23:17:51", - "message_id": "86eb326a-aef3-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T23:16:51", - "message_id": "6322c74e-aef3-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T23:15:51", - "message_id": "3f60ac9a-aef3-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T23:14:51", - "message_id": "1b9057c0-aef3-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T23:13:51", - "message_id": "f7d3797a-aef2-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T23:12:51", - "message_id": "d404d98a-aef2-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T23:11:51", - "message_id": "b040646a-aef2-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T23:10:51", - "message_id": "8c799588-aef2-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T23:09:51", - "message_id": "68b7b260-aef2-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T23:08:51", - "message_id": "45074600-aef2-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T23:07:51", - "message_id": "21323d8e-aef2-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T23:06:51", - "message_id": "fd647804-aef1-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T23:05:51", - "message_id": "d9a133e4-aef1-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T23:04:51", - "message_id": "b5d0468a-aef1-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T23:03:51", - "message_id": "921803a4-aef1-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T23:02:51", - "message_id": "6e4a35e6-aef1-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T23:01:51", - "message_id": "4a835eda-aef1-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T23:00:51", - "message_id": "26bc2d60-aef1-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T22:59:51", - "message_id": "02f92b58-aef1-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T22:58:51", - "message_id": "df303450-aef0-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T22:57:51", - "message_id": "bb9cb82e-aef0-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T22:56:51", - "message_id": "97a794a2-aef0-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T22:55:51", - "message_id": "73e0063a-aef0-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T22:54:51", - "message_id": "5015314e-aef0-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T22:53:51", - "message_id": "2c532c0c-aef0-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T22:52:51", - "message_id": "089e81d0-aef0-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T22:51:50", - "message_id": "e4c426a2-aeef-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T22:50:50", - "message_id": "c100e43a-aeef-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T22:49:50", - "message_id": "9d3cb45c-aeef-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T22:48:50", - "message_id": "79773038-aeef-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T22:47:50", - "message_id": "55ad15be-aeef-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T22:46:51", - "message_id": "31ff6784-aeef-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T22:45:50", - "message_id": "0e21b59c-aeef-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T22:44:50", - "message_id": "ea5dca2e-aeee-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T22:43:50", - "message_id": "c6914ce2-aeee-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T22:42:50", - "message_id": "a2ce2cb2-aeee-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T22:41:50", - "message_id": "7f1b1cda-aeee-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T22:40:50", - "message_id": "5b3e8e50-aeee-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T22:39:50", - "message_id": "37819ffc-aeee-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T22:38:50", - "message_id": "13b92a04-aeee-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T22:37:50", - "message_id": "eff46692-aeed-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T22:36:50", - "message_id": "cc41ef9e-aeed-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T22:35:50", - "message_id": "a86559e4-aeed-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T22:34:50", - "message_id": "84a1bd7c-aeed-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T22:33:50", - "message_id": "60df0214-aeed-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T22:32:50", - "message_id": "3d14661c-aeed-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T22:31:50", - "message_id": "1963019c-aeed-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T22:30:50", - "message_id": "f5896324-aeec-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T22:29:50", - "message_id": "d1c9177c-aeec-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T22:28:50", - "message_id": "adfbe374-aeec-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T22:27:50", - "message_id": "8a3afcb8-aeec-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T22:26:50", - "message_id": "6686f952-aeec-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T22:25:50", - "message_id": "42a38e74-aeec-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T22:24:50", - "message_id": "1ee0da8c-aeec-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T22:23:50", - "message_id": "fb27a72e-aeeb-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T22:22:50", - "message_id": "d756a0e8-aeeb-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T22:21:50", - "message_id": "b391f20c-aeeb-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T22:20:50", - "message_id": "8fde6a52-aeeb-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T22:19:50", - "message_id": "6c032672-aeeb-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T22:18:50", - "message_id": "4843796c-aeeb-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T22:17:50", - "message_id": "247ead30-aeeb-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T22:16:50", - "message_id": "00b347c6-aeeb-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T22:15:50", - "message_id": "dcfba486-aeea-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T22:14:50", - "message_id": "b921699c-aeea-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T22:13:50", - "message_id": "9561f4ea-aeea-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T22:12:50", - "message_id": "719c163a-aeea-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T22:11:50", - "message_id": "4dd5cea8-aeea-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T22:10:50", - "message_id": "2a1b4984-aeea-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T22:09:50", - "message_id": "064476d4-aeea-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T22:08:50", - "message_id": "e282d7a4-aee9-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T22:07:50", - "message_id": "bec2e08e-aee9-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T22:06:50", - "message_id": "9af86b74-aee9-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T22:05:50", - "message_id": "773dd002-aee9-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T22:04:50", - "message_id": "535e001c-aee9-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T22:03:50", - "message_id": "2f9f848e-aee9-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T22:02:50", - "message_id": "0be34b70-aee9-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T22:01:50", - "message_id": "e81c5984-aee8-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T22:00:50", - "message_id": "c45e4cc8-aee8-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T21:59:50", - "message_id": "a08709e8-aee8-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T21:58:50", - "message_id": "7cc5082a-aee8-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T21:57:50", - "message_id": "5904d7ee-aee8-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T21:56:50", - "message_id": "353f0000-aee8-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T21:55:50", - "message_id": "117e7f4c-aee8-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T21:54:49", - "message_id": "ed9dcdd0-aee7-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T21:53:49", - "message_id": "c9e438e8-aee7-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T21:52:49", - "message_id": "a61cdf5a-aee7-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T21:51:49", - "message_id": "825a4c9c-aee7-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T21:50:49", - "message_id": "5e9f081a-aee7-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T21:49:49", - "message_id": "3ac672d4-aee7-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T21:48:49", - "message_id": "17090ce4-aee7-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T21:47:49", - "message_id": "f340e156-aee6-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T21:46:49", - "message_id": "cf7c967a-aee6-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T21:45:49", - "message_id": "abc61058-aee6-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T21:44:49", - "message_id": "87e37a72-aee6-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T21:43:49", - "message_id": "64218156-aee6-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T21:42:49", - "message_id": "405b95f4-aee6-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T21:41:49", - "message_id": "1c9a6898-aee6-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T21:40:49", - "message_id": "f8e6213a-aee5-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T21:39:49", - "message_id": "d507cf84-aee5-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T21:38:49", - "message_id": "b1469d96-aee5-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T21:37:49", - "message_id": "8d82b458-aee5-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T21:36:49", - "message_id": "69ba6872-aee5-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T21:35:49", - "message_id": "46049894-aee5-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T21:34:49", - "message_id": "22271e38-aee5-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T21:33:49", - "message_id": "fe5ad012-aee4-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T21:32:49", - "message_id": "da974bec-aee4-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T21:31:49", - "message_id": "b6dab392-aee4-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T21:30:49", - "message_id": "9313c58e-aee4-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T21:29:49", - "message_id": "6f5b9b26-aee4-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T21:28:49", - "message_id": "4b886580-aee4-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T21:27:49", - "message_id": "27c55810-aee4-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T21:26:49", - "message_id": "040072de-aee4-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T21:25:49", - "message_id": "e02f6a36-aee3-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T21:24:49", - "message_id": "bc78d618-aee3-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T21:23:49", - "message_id": "98a1630e-aee3-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T21:22:49", - "message_id": "74daeac6-aee3-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T21:21:49", - "message_id": "5119c67a-aee3-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T21:20:49", - "message_id": "2d50976e-aee3-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T21:19:49", - "message_id": "098e0884-aee3-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T21:18:49", - "message_id": "e5dea43e-aee2-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T21:17:49", - "message_id": "c209cf98-aee2-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T21:16:49", - "message_id": "9e43b4c0-aee2-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T21:15:49", - "message_id": "7a79d48e-aee2-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T21:14:49", - "message_id": "56abef88-aee2-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T21:13:49", - "message_id": "32f0328e-aee2-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T21:12:49", - "message_id": "0f13711e-aee2-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T21:11:48", - "message_id": "eb4b3b86-aee1-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T21:10:48", - "message_id": "c77f2762-aee1-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T21:09:48", - "message_id": "a3b20d5e-aee1-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T21:08:48", - "message_id": "7ffcf6b2-aee1-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "protected": "False", - "container_format": "ari", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T21:08:27.768720", - "message_id": "736537fc-aee1-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "event_type": "image.update", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "id": "d5c36550-2476-43a3-9535-fa799782fd53", - "min_disk": "0", - "host": "vagrant-ubuntu-precise-64", - "protected": "False", - "container_format": "ari", - "owner": "7a64220a45c84104ac95258de1a3720a", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image.size", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T21:08:27.737629", - "message_id": "737259dc-aee1-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3714968.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "saving", - "event_type": "image.upload", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "id": "d5c36550-2476-43a3-9535-fa799782fd53", - "min_disk": "0", - "host": "vagrant-ubuntu-precise-64", - "protected": "False", - "container_format": "ari", - "owner": "7a64220a45c84104ac95258de1a3720a", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "gauge" - } - ] -} \ No newline at end of file diff --git a/distil/tests/unit/data/map_fixture_6.json b/distil/tests/unit/data/map_fixture_6.json deleted file mode 100644 index f8ccc22..0000000 --- a/distil/tests/unit/data/map_fixture_6.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "http://localhost:8777/v2/meters/port.create?q.field=resource_id&q.value=06245705-edbe-4e9e-8954-f568520cecec": [ - { - "counter_name": "port.create", - "user_id": "5fbff7d5c307476fb3db36f3ffbcca07", - "resource_id": "06245705-edbe-4e9e-8954-f568520cecec", - "timestamp": "2014-03-18T23:27:23.335516", - "message_id": "dc0aa72a-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "port", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "status": "DOWN", - "binding:host_id": "vagrant-ubuntu-precise-64", - "binding:capabilities.port_filter": "True", - "admin_state_up": "True", - "network_id": "5b771cb2-961a-4042-a814-2f78c5545f8a", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "device_owner": "compute:nova", - "binding:vif_type": "ovs", - "host": "network.vagrant-ubuntu-precise-64", - "mac_address": "fa:16:3e:17:ab:99", - "event_type": "port.create.end", - "device_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "id": "06245705-edbe-4e9e-8954-f568520cecec", - "name": "" - }, - "counter_type": "delta" - } - ] -} \ No newline at end of file diff --git a/distil/tests/unit/data/map_fixture_60.json b/distil/tests/unit/data/map_fixture_60.json deleted file mode 100644 index b0449e0..0000000 --- a/distil/tests/unit/data/map_fixture_60.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "http://localhost:8777/v2/meters/image.update?q.field=resource_id&q.value=d5c36550-2476-43a3-9535-fa799782fd53": [ - { - "counter_name": "image.update", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T21:08:27.768720", - "message_id": "73642646-aee1-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "event_type": "image.update", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "id": "d5c36550-2476-43a3-9535-fa799782fd53", - "min_disk": "0", - "host": "vagrant-ubuntu-precise-64", - "protected": "False", - "container_format": "ari", - "owner": "7a64220a45c84104ac95258de1a3720a", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "delta" - } - ] -} \ No newline at end of file diff --git a/distil/tests/unit/data/map_fixture_61.json b/distil/tests/unit/data/map_fixture_61.json deleted file mode 100644 index 50cc6ce..0000000 --- a/distil/tests/unit/data/map_fixture_61.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "http://localhost:8777/v2/meters/image.upload?q.field=resource_id&q.value=d5c36550-2476-43a3-9535-fa799782fd53": [ - { - "counter_name": "image.upload", - "user_id": null, - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "timestamp": "2014-03-18T21:08:27.737629", - "message_id": "737172ba-aee1-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "saving", - "event_type": "image.upload", - "name": "cirros-0.3.1-x86_64-uec-ramdisk", - "deleted": "False", - "checksum": "69c33642f44ca552ba4bb8b66ad97e85", - "created_at": "2014-03-18T21:08:27", - "disk_format": "ari", - "updated_at": "2014-03-18T21:08:27", - "id": "d5c36550-2476-43a3-9535-fa799782fd53", - "min_disk": "0", - "host": "vagrant-ubuntu-precise-64", - "protected": "False", - "container_format": "ari", - "owner": "7a64220a45c84104ac95258de1a3720a", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "3714968" - }, - "counter_type": "delta" - } - ] -} \ No newline at end of file diff --git a/distil/tests/unit/data/map_fixture_62.json b/distil/tests/unit/data/map_fixture_62.json deleted file mode 100644 index fd4bf72..0000000 --- a/distil/tests/unit/data/map_fixture_62.json +++ /dev/null @@ -1,117 +0,0 @@ -{ - "http://localhost:8777/v2/resources/d9f92c40-23b3-4b86-ade2-ef62d0b459de": { - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "links": [ - { - "href": "http://localhost:8777/v2/resources/d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "rel": "self" - }, - { - "href": "http://localhost:8777/v2/meters/cpu?q.field=resource_id&q.value=d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "rel": "cpu" - }, - { - "href": "http://localhost:8777/v2/meters/cpu_util?q.field=resource_id&q.value=d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "rel": "cpu_util" - }, - { - "href": "http://localhost:8777/v2/meters/disk.ephemeral.size?q.field=resource_id&q.value=d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "rel": "disk.ephemeral.size" - }, - { - "href": "http://localhost:8777/v2/meters/disk.read.bytes?q.field=resource_id&q.value=d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "rel": "disk.read.bytes" - }, - { - "href": "http://localhost:8777/v2/meters/disk.read.requests?q.field=resource_id&q.value=d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "rel": "disk.read.requests" - }, - { - "href": "http://localhost:8777/v2/meters/disk.root.size?q.field=resource_id&q.value=d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "rel": "disk.root.size" - }, - { - "href": "http://localhost:8777/v2/meters/disk.write.bytes?q.field=resource_id&q.value=d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "rel": "disk.write.bytes" - }, - { - "href": "http://localhost:8777/v2/meters/disk.write.requests?q.field=resource_id&q.value=d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "rel": "disk.write.requests" - }, - { - "href": "http://localhost:8777/v2/meters/flavor?q.field=resource_id&q.value=d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "rel": "flavor" - }, - { - "href": "http://localhost:8777/v2/meters/instance?q.field=resource_id&q.value=d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "rel": "instance" - }, - { - "href": "http://localhost:8777/v2/meters/instance.scheduled?q.field=resource_id&q.value=d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "rel": "instance.scheduled" - }, - { - "href": "http://localhost:8777/v2/meters/instance:m1.nano?q.field=resource_id&q.value=d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "rel": "instance:m1.nano" - }, - { - "href": "http://localhost:8777/v2/meters/memory?q.field=resource_id&q.value=d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "rel": "memory" - }, - { - "href": "http://localhost:8777/v2/meters/state?q.field=resource_id&q.value=d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "rel": "state" - }, - { - "href": "http://localhost:8777/v2/meters/vcpus?q.field=resource_id&q.value=d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "rel": "vcpus" - } - ], - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "last_sample_timestamp": "2014-03-19T00:00:12.179696", - "first_sample_timestamp": "2014-03-18T23:27:20.980945", - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.exists", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-zgm8p5qw", - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "display_name": "instance2", - "hostname": "instance2", - "state": "suspended", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:27:29.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18 23:00:00", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18T23:27:20.000000", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "audit_period_ending": "2014-03-19 00:00:00", - "os_type": "None", - "instance_flavor_id": "42" - } - } -} \ No newline at end of file diff --git a/distil/tests/unit/data/map_fixture_63.json b/distil/tests/unit/data/map_fixture_63.json deleted file mode 100644 index ff838a6..0000000 --- a/distil/tests/unit/data/map_fixture_63.json +++ /dev/null @@ -1,633 +0,0 @@ -{ - "http://localhost:8777/v2/meters/cpu?q.field=resource_id&q.value=d9f92c40-23b3-4b86-ade2-ef62d0b459de": [ - { - "counter_name": "cpu", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:59:58", - "message_id": "68d3a1d0-aef9-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "ns", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance2", - "flavor.id": "42", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.nano", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "64", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "cpu_number": "1", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000002", - "memory_mb": "64", - "instance_type": "42", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "cpu", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:58:57", - "message_id": "44df6192-aef9-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "ns", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance2", - "flavor.id": "42", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.nano", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "64", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "cpu_number": "1", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000002", - "memory_mb": "64", - "instance_type": "42", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "cpu", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:57:57", - "message_id": "21209bb8-aef9-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "ns", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance2", - "flavor.id": "42", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.nano", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "64", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "cpu_number": "1", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000002", - "memory_mb": "64", - "instance_type": "42", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "cpu", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:56:57", - "message_id": "fd58d146-aef8-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "ns", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance2", - "flavor.id": "42", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.nano", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "64", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "cpu_number": "1", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000002", - "memory_mb": "64", - "instance_type": "42", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "cpu", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:39:56", - "message_id": "9cb3c8f2-aef6-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "ns", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance2", - "flavor.id": "42", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.nano", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "64", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "cpu_number": "1", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000002", - "memory_mb": "64", - "instance_type": "42", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "cpu", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:38:56", - "message_id": "78e1fdcc-aef6-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "ns", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance2", - "flavor.id": "42", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.nano", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "64", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "cpu_number": "1", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000002", - "memory_mb": "64", - "instance_type": "42", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "cpu", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:37:56", - "message_id": "55266026-aef6-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "ns", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance2", - "flavor.id": "42", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.nano", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "64", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "cpu_number": "1", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000002", - "memory_mb": "64", - "instance_type": "42", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "cpu", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:36:56", - "message_id": "315d8d22-aef6-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "ns", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance2", - "flavor.id": "42", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.nano", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "64", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "cpu_number": "1", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000002", - "memory_mb": "64", - "instance_type": "42", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "cpu", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:35:56", - "message_id": "0d987c1c-aef6-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "ns", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance2", - "flavor.id": "42", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.nano", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "64", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "cpu_number": "1", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000002", - "memory_mb": "64", - "instance_type": "42", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "cpu", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:34:56", - "message_id": "e9b69ad6-aef5-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "ns", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance2", - "flavor.id": "42", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.nano", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "64", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "cpu_number": "1", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000002", - "memory_mb": "64", - "instance_type": "42", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "cpu", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:33:56", - "message_id": "c5ebb9c4-aef5-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "ns", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance2", - "flavor.id": "42", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.nano", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "64", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "cpu_number": "1", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000002", - "memory_mb": "64", - "instance_type": "42", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "cpu", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:32:56", - "message_id": "a234063a-aef5-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "ns", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance2", - "flavor.id": "42", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.nano", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "64", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "cpu_number": "1", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000002", - "memory_mb": "64", - "instance_type": "42", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "cpu", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:31:56", - "message_id": "7e55a4b2-aef5-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "ns", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance2", - "flavor.id": "42", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.nano", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "64", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "cpu_number": "1", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000002", - "memory_mb": "64", - "instance_type": "42", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "cpu", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:30:56", - "message_id": "5aa63dd8-aef5-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "ns", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance2", - "flavor.id": "42", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.nano", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "64", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "cpu_number": "1", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000002", - "memory_mb": "64", - "instance_type": "42", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "cpu", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:29:55", - "message_id": "369f3cbe-aef5-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "ns", - "counter_volume": 19700000000.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance2", - "flavor.id": "42", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.nano", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "64", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "cpu_number": "1", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000002", - "memory_mb": "64", - "instance_type": "42", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "cpu", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:28:56", - "message_id": "12fdb8a8-aef5-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "ns", - "counter_volume": 19420000000.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance2", - "flavor.id": "42", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.nano", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "64", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "cpu_number": "1", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000002", - "memory_mb": "64", - "instance_type": "42", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "cpu", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:27:56", - "message_id": "ef57ad32-aef4-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "ns", - "counter_volume": 11640000000.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance2", - "flavor.id": "42", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.nano", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "64", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "cpu_number": "1", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000002", - "memory_mb": "64", - "instance_type": "42", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "cumulative" - } - ] -} \ No newline at end of file diff --git a/distil/tests/unit/data/map_fixture_64.json b/distil/tests/unit/data/map_fixture_64.json deleted file mode 100644 index 2afcfe5..0000000 --- a/distil/tests/unit/data/map_fixture_64.json +++ /dev/null @@ -1,596 +0,0 @@ -{ - "http://localhost:8777/v2/meters/cpu_util?q.field=resource_id&q.value=d9f92c40-23b3-4b86-ade2-ef62d0b459de": [ - { - "counter_name": "cpu_util", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:59:58", - "message_id": "68d4f346-aef9-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "%", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance2", - "flavor.id": "42", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.nano", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "64", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "cpu_number": "1", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000002", - "memory_mb": "64", - "instance_type": "42", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "cpu_util", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:58:57", - "message_id": "44e00138-aef9-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "%", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance2", - "flavor.id": "42", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.nano", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "64", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "cpu_number": "1", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000002", - "memory_mb": "64", - "instance_type": "42", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "cpu_util", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:57:57", - "message_id": "212157ce-aef9-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "%", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance2", - "flavor.id": "42", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.nano", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "64", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "cpu_number": "1", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000002", - "memory_mb": "64", - "instance_type": "42", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "cpu_util", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:56:57", - "message_id": "fd5b50b0-aef8-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "%", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance2", - "flavor.id": "42", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.nano", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "64", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "cpu_number": "1", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000002", - "memory_mb": "64", - "instance_type": "42", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "cpu_util", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:39:56", - "message_id": "9cb4674e-aef6-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "%", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance2", - "flavor.id": "42", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.nano", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "64", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "cpu_number": "1", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000002", - "memory_mb": "64", - "instance_type": "42", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "cpu_util", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:38:56", - "message_id": "78e2926e-aef6-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "%", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance2", - "flavor.id": "42", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.nano", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "64", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "cpu_number": "1", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000002", - "memory_mb": "64", - "instance_type": "42", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "cpu_util", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:37:56", - "message_id": "55270e54-aef6-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "%", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance2", - "flavor.id": "42", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.nano", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "64", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "cpu_number": "1", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000002", - "memory_mb": "64", - "instance_type": "42", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "cpu_util", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:36:56", - "message_id": "315e9712-aef6-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "%", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance2", - "flavor.id": "42", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.nano", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "64", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "cpu_number": "1", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000002", - "memory_mb": "64", - "instance_type": "42", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "cpu_util", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:35:56", - "message_id": "0d992d88-aef6-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "%", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance2", - "flavor.id": "42", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.nano", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "64", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "cpu_number": "1", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000002", - "memory_mb": "64", - "instance_type": "42", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "cpu_util", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:34:56", - "message_id": "e9b7a37c-aef5-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "%", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance2", - "flavor.id": "42", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.nano", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "64", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "cpu_number": "1", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000002", - "memory_mb": "64", - "instance_type": "42", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "cpu_util", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:33:56", - "message_id": "c5ec8854-aef5-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "%", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance2", - "flavor.id": "42", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.nano", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "64", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "cpu_number": "1", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000002", - "memory_mb": "64", - "instance_type": "42", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "cpu_util", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:32:56", - "message_id": "a234aee6-aef5-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "%", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance2", - "flavor.id": "42", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.nano", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "64", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "cpu_number": "1", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000002", - "memory_mb": "64", - "instance_type": "42", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "cpu_util", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:31:56", - "message_id": "7e567bee-aef5-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "%", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance2", - "flavor.id": "42", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.nano", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "64", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "cpu_number": "1", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000002", - "memory_mb": "64", - "instance_type": "42", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "cpu_util", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:30:56", - "message_id": "5aa6edbe-aef5-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "%", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance2", - "flavor.id": "42", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.nano", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "64", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "cpu_number": "1", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000002", - "memory_mb": "64", - "instance_type": "42", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "cpu_util", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:29:55", - "message_id": "36a031d2-aef5-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "%", - "counter_volume": 0.474576271186441, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance2", - "flavor.id": "42", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.nano", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "64", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "cpu_number": "1", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000002", - "memory_mb": "64", - "instance_type": "42", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "cpu_util", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:28:56", - "message_id": "12fe676c-aef5-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "%", - "counter_volume": 12.9666666666667, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance2", - "flavor.id": "42", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.nano", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "64", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "cpu_number": "1", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000002", - "memory_mb": "64", - "instance_type": "42", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - } - ] -} \ No newline at end of file diff --git a/distil/tests/unit/data/map_fixture_65.json b/distil/tests/unit/data/map_fixture_65.json deleted file mode 100644 index e0d277f..0000000 --- a/distil/tests/unit/data/map_fixture_65.json +++ /dev/null @@ -1,1177 +0,0 @@ -{ - "http://localhost:8777/v2/meters/disk.ephemeral.size?q.field=resource_id&q.value=d9f92c40-23b3-4b86-ade2-ef62d0b459de": [ - { - "counter_name": "disk.ephemeral.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-19T00:00:12.179696", - "message_id": "715aa100-aef9-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.exists", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-zgm8p5qw", - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "display_name": "instance2", - "hostname": "instance2", - "state": "suspended", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:27:29.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18 23:00:00", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18T23:27:20.000000", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "audit_period_ending": "2014-03-19 00:00:00", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.ephemeral.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:52:37.051830", - "message_id": "62295a4c-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.suspend", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "deleted_at": "", - "reservation_id": "r-zgm8p5qw", - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "display_name": "instance2", - "hostname": "instance2", - "state": "suspended", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:27:29.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:27:20+00:00", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.ephemeral.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:52:36.905676", - "message_id": "61fd8912-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-zgm8p5qw", - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "display_name": "instance2", - "hostname": "instance2", - "state": "suspended", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "active", - "launched_at": "2014-03-18T23:27:29.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:27:20", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "suspending", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "None", - "audit_period_ending": "2014-03-18T23:52:36.900368", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.ephemeral.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:52:32.565514", - "message_id": "5f77e066-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "suspending", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-zgm8p5qw", - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "display_name": "instance2", - "hostname": "instance2", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "active", - "launched_at": "2014-03-18T23:27:29.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:27:20", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "suspending", - "audit_period_ending": "2014-03-18T23:52:32.562287", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.ephemeral.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:40:59.491905", - "message_id": "c266e02a-aef6-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.resume", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "deleted_at": "", - "reservation_id": "r-zgm8p5qw", - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "display_name": "instance2", - "hostname": "instance2", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:27:29.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:27:20+00:00", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.ephemeral.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:40:59.452720", - "message_id": "c260a610-aef6-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-zgm8p5qw", - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "display_name": "instance2", - "hostname": "instance2", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "suspended", - "launched_at": "2014-03-18T23:27:29.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:27:20", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "resuming", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "None", - "audit_period_ending": "2014-03-18T23:40:59.447983", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.ephemeral.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:40:55.194510", - "message_id": "bfe07866-aef6-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resuming", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-zgm8p5qw", - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "display_name": "instance2", - "hostname": "instance2", - "state": "suspended", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "suspended", - "launched_at": "2014-03-18T23:27:29.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:27:20", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "resuming", - "audit_period_ending": "2014-03-18T23:40:55.191399", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.ephemeral.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:30:23.712438", - "message_id": "4797f63c-aef5-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.suspend", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "deleted_at": "", - "reservation_id": "r-zgm8p5qw", - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "display_name": "instance2", - "hostname": "instance2", - "state": "suspended", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:27:29.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:27:20+00:00", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.ephemeral.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:30:23.651799", - "message_id": "477848c8-aef5-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-zgm8p5qw", - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "display_name": "instance2", - "hostname": "instance2", - "state": "suspended", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "active", - "launched_at": "2014-03-18T23:27:29.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:27:20", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "suspending", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "None", - "audit_period_ending": "2014-03-18T23:30:23.639376", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.ephemeral.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:30:19.085450", - "message_id": "4498b46c-aef5-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "suspending", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-zgm8p5qw", - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "display_name": "instance2", - "hostname": "instance2", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "active", - "launched_at": "2014-03-18T23:27:29.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:27:20", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "suspending", - "audit_period_ending": "2014-03-18T23:30:19.081098", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.ephemeral.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:27:29.600603", - "message_id": "df938560-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.create.end", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "message": "Success", - "deleted_at": "", - "reservation_id": "r-zgm8p5qw", - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "display_name": "instance2", - "hostname": "instance2", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:27:29.433773", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18T23:27:20.000000", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.ephemeral.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:27:29.492742", - "message_id": "df8d9dd0-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-zgm8p5qw", - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "display_name": "instance2", - "hostname": "instance2", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "building", - "launched_at": "2014-03-18T23:27:29.433773", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:27:20", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "spawning", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "None", - "audit_period_ending": "2014-03-18T23:27:29.489850", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.ephemeral.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:27:24.141567", - "message_id": "dd6903a0-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "spawning", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-zgm8p5qw", - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "display_name": "instance2", - "hostname": "instance2", - "state": "building", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "None", - "launched_at": "", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:27:20", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "spawning", - "audit_period_ending": "2014-03-18T23:27:24.134850", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.ephemeral.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:27:23.007051", - "message_id": "dd24886a-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "spawning", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-zgm8p5qw", - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "display_name": "instance2", - "hostname": "instance2", - "state": "building", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "building", - "launched_at": "", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:27:20", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "block_device_mapping", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "spawning", - "audit_period_ending": "2014-03-18T23:27:23.001305", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.ephemeral.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:27:22.739719", - "message_id": "dc70b920-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "block_device_mapping", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-zgm8p5qw", - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "display_name": "instance2", - "hostname": "instance2", - "state": "building", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "building", - "launched_at": "", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:27:20", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "networking", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "block_device_mapping", - "audit_period_ending": "2014-03-18T23:27:22.737082", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.ephemeral.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:27:22.441122", - "message_id": "db48ea86-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "networking", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-zgm8p5qw", - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "display_name": "instance2", - "hostname": "instance2", - "state": "building", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "building", - "launched_at": "", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:27:20", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "networking", - "audit_period_ending": "2014-03-18T23:27:22.438202", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.ephemeral.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:27:22.245700", - "message_id": "dcd23cd6-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-zgm8p5qw", - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "display_name": "instance2", - "hostname": "instance2", - "state": "building", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "None", - "launched_at": "", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:27:20", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "None", - "audit_period_ending": "2014-03-18T23:27:22.238019", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.ephemeral.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:27:21.997197", - "message_id": "dccdd2b8-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-zgm8p5qw", - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "display_name": "instance2", - "hostname": "instance2", - "state": "building", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "None", - "launched_at": "", - "node": "None", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:27:20", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "None", - "audit_period_ending": "2014-03-18T23:27:21.994613", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.ephemeral.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:27:21.829896", - "message_id": "dc789d34-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "scheduling", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.create.start", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "message": "", - "deleted_at": "", - "reservation_id": "r-zgm8p5qw", - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "display_name": "instance2", - "hostname": "instance2", - "state": "building", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "", - "node": "None", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18T23:27:20.000000", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.ephemeral.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:27:21.705149", - "message_id": "dae7c5bc-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-zgm8p5qw", - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "display_name": "instance2", - "hostname": "instance2", - "state": "building", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "building", - "launched_at": "", - "node": "None", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:27:20", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "scheduling", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "None", - "audit_period_ending": "2014-03-18T23:27:21.699148", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.ephemeral.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:27:20.980945", - "message_id": "dac8874c-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "scheduling", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-zgm8p5qw", - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "display_name": "instance2", - "hostname": "instance2", - "state": "building", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "None", - "launched_at": "", - "node": "None", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:27:20.957149+00:00", - "image_meta.min_ram": "0", - "host": "api.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "scheduling", - "audit_period_ending": "2014-03-18T23:27:20.978273", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - } - ] -} \ No newline at end of file diff --git a/distil/tests/unit/data/map_fixture_66.json b/distil/tests/unit/data/map_fixture_66.json deleted file mode 100644 index 68cbb03..0000000 --- a/distil/tests/unit/data/map_fixture_66.json +++ /dev/null @@ -1,112 +0,0 @@ -{ - "http://localhost:8777/v2/meters/disk.read.bytes?q.field=resource_id&q.value=d9f92c40-23b3-4b86-ade2-ef62d0b459de": [ - { - "counter_name": "disk.read.bytes", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:29:55", - "message_id": "367d3fb0-aef5-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 304128.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance2", - "flavor.id": "42", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.nano", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "64", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000002", - "memory_mb": "64", - "instance_type": "42", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "disk.read.bytes", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:28:55", - "message_id": "12d7b162-aef5-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 304128.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance2", - "flavor.id": "42", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.nano", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "64", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000002", - "memory_mb": "64", - "instance_type": "42", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "disk.read.bytes", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:27:55", - "message_id": "ef332674-aef4-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 283648.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance2", - "flavor.id": "42", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.nano", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "64", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000002", - "memory_mb": "64", - "instance_type": "42", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "cumulative" - } - ] -} \ No newline at end of file diff --git a/distil/tests/unit/data/map_fixture_67.json b/distil/tests/unit/data/map_fixture_67.json deleted file mode 100644 index 8f032d0..0000000 --- a/distil/tests/unit/data/map_fixture_67.json +++ /dev/null @@ -1,112 +0,0 @@ -{ - "http://localhost:8777/v2/meters/disk.read.requests?q.field=resource_id&q.value=d9f92c40-23b3-4b86-ade2-ef62d0b459de": [ - { - "counter_name": "disk.read.requests", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:29:55", - "message_id": "36680032-aef5-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 142.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance2", - "flavor.id": "42", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.nano", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "64", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000002", - "memory_mb": "64", - "instance_type": "42", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "disk.read.requests", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:28:55", - "message_id": "12b51fee-aef5-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 142.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance2", - "flavor.id": "42", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.nano", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "64", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000002", - "memory_mb": "64", - "instance_type": "42", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "disk.read.requests", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:27:55", - "message_id": "ef162c86-aef4-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 122.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance2", - "flavor.id": "42", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.nano", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "64", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000002", - "memory_mb": "64", - "instance_type": "42", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "cumulative" - } - ] -} \ No newline at end of file diff --git a/distil/tests/unit/data/map_fixture_68.json b/distil/tests/unit/data/map_fixture_68.json deleted file mode 100644 index a5b7baa..0000000 --- a/distil/tests/unit/data/map_fixture_68.json +++ /dev/null @@ -1,1177 +0,0 @@ -{ - "http://localhost:8777/v2/meters/disk.root.size?q.field=resource_id&q.value=d9f92c40-23b3-4b86-ade2-ef62d0b459de": [ - { - "counter_name": "disk.root.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-19T00:00:12.179696", - "message_id": "71c76466-aef9-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.exists", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-zgm8p5qw", - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "display_name": "instance2", - "hostname": "instance2", - "state": "suspended", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:27:29.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18 23:00:00", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18T23:27:20.000000", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "audit_period_ending": "2014-03-19 00:00:00", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.root.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:52:37.051830", - "message_id": "622a5a5a-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.suspend", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "deleted_at": "", - "reservation_id": "r-zgm8p5qw", - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "display_name": "instance2", - "hostname": "instance2", - "state": "suspended", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:27:29.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:27:20+00:00", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.root.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:52:36.905676", - "message_id": "61fff99a-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-zgm8p5qw", - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "display_name": "instance2", - "hostname": "instance2", - "state": "suspended", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "active", - "launched_at": "2014-03-18T23:27:29.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:27:20", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "suspending", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "None", - "audit_period_ending": "2014-03-18T23:52:36.900368", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.root.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:52:32.565514", - "message_id": "5f78ce54-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "suspending", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-zgm8p5qw", - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "display_name": "instance2", - "hostname": "instance2", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "active", - "launched_at": "2014-03-18T23:27:29.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:27:20", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "suspending", - "audit_period_ending": "2014-03-18T23:52:32.562287", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.root.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:40:59.491905", - "message_id": "c268360a-aef6-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.resume", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "deleted_at": "", - "reservation_id": "r-zgm8p5qw", - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "display_name": "instance2", - "hostname": "instance2", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:27:29.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:27:20+00:00", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.root.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:40:59.452720", - "message_id": "c261806c-aef6-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-zgm8p5qw", - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "display_name": "instance2", - "hostname": "instance2", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "suspended", - "launched_at": "2014-03-18T23:27:29.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:27:20", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "resuming", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "None", - "audit_period_ending": "2014-03-18T23:40:59.447983", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.root.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:40:55.194510", - "message_id": "bfe3374a-aef6-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resuming", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-zgm8p5qw", - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "display_name": "instance2", - "hostname": "instance2", - "state": "suspended", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "suspended", - "launched_at": "2014-03-18T23:27:29.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:27:20", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "resuming", - "audit_period_ending": "2014-03-18T23:40:55.191399", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.root.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:30:23.712438", - "message_id": "479e1a94-aef5-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.suspend", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "deleted_at": "", - "reservation_id": "r-zgm8p5qw", - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "display_name": "instance2", - "hostname": "instance2", - "state": "suspended", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:27:29.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:27:20+00:00", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.root.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:30:23.651799", - "message_id": "477a1202-aef5-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-zgm8p5qw", - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "display_name": "instance2", - "hostname": "instance2", - "state": "suspended", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "active", - "launched_at": "2014-03-18T23:27:29.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:27:20", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "suspending", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "None", - "audit_period_ending": "2014-03-18T23:30:23.639376", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.root.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:30:19.085450", - "message_id": "449ab5e6-aef5-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "suspending", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-zgm8p5qw", - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "display_name": "instance2", - "hostname": "instance2", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "active", - "launched_at": "2014-03-18T23:27:29.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:27:20", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "suspending", - "audit_period_ending": "2014-03-18T23:30:19.081098", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.root.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:27:29.600603", - "message_id": "df946aac-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.create.end", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "message": "Success", - "deleted_at": "", - "reservation_id": "r-zgm8p5qw", - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "display_name": "instance2", - "hostname": "instance2", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:27:29.433773", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18T23:27:20.000000", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.root.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:27:29.492742", - "message_id": "df8e58f6-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-zgm8p5qw", - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "display_name": "instance2", - "hostname": "instance2", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "building", - "launched_at": "2014-03-18T23:27:29.433773", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:27:20", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "spawning", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "None", - "audit_period_ending": "2014-03-18T23:27:29.489850", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.root.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:27:24.141567", - "message_id": "dd74c0fa-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "spawning", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-zgm8p5qw", - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "display_name": "instance2", - "hostname": "instance2", - "state": "building", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "None", - "launched_at": "", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:27:20", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "spawning", - "audit_period_ending": "2014-03-18T23:27:24.134850", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.root.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:27:23.007051", - "message_id": "dd44f9ce-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "spawning", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-zgm8p5qw", - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "display_name": "instance2", - "hostname": "instance2", - "state": "building", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "building", - "launched_at": "", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:27:20", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "block_device_mapping", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "spawning", - "audit_period_ending": "2014-03-18T23:27:23.001305", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.root.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:27:22.739719", - "message_id": "dc7299e8-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "block_device_mapping", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-zgm8p5qw", - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "display_name": "instance2", - "hostname": "instance2", - "state": "building", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "building", - "launched_at": "", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:27:20", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "networking", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "block_device_mapping", - "audit_period_ending": "2014-03-18T23:27:22.737082", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.root.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:27:22.441122", - "message_id": "dba25f62-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "networking", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-zgm8p5qw", - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "display_name": "instance2", - "hostname": "instance2", - "state": "building", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "building", - "launched_at": "", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:27:20", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "networking", - "audit_period_ending": "2014-03-18T23:27:22.438202", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.root.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:27:22.245700", - "message_id": "dd267576-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-zgm8p5qw", - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "display_name": "instance2", - "hostname": "instance2", - "state": "building", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "None", - "launched_at": "", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:27:20", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "None", - "audit_period_ending": "2014-03-18T23:27:22.238019", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.root.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:27:21.997197", - "message_id": "dd21f578-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-zgm8p5qw", - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "display_name": "instance2", - "hostname": "instance2", - "state": "building", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "None", - "launched_at": "", - "node": "None", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:27:20", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "None", - "audit_period_ending": "2014-03-18T23:27:21.994613", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.root.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:27:21.829896", - "message_id": "dcd60578-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "scheduling", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.create.start", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "message": "", - "deleted_at": "", - "reservation_id": "r-zgm8p5qw", - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "display_name": "instance2", - "hostname": "instance2", - "state": "building", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "", - "node": "None", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18T23:27:20.000000", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.root.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:27:21.705149", - "message_id": "dae8bb5c-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-zgm8p5qw", - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "display_name": "instance2", - "hostname": "instance2", - "state": "building", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "building", - "launched_at": "", - "node": "None", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:27:20", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "scheduling", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "None", - "audit_period_ending": "2014-03-18T23:27:21.699148", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.root.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:27:20.980945", - "message_id": "dada7768-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "scheduling", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-zgm8p5qw", - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "display_name": "instance2", - "hostname": "instance2", - "state": "building", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "None", - "launched_at": "", - "node": "None", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:27:20.957149+00:00", - "image_meta.min_ram": "0", - "host": "api.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "scheduling", - "audit_period_ending": "2014-03-18T23:27:20.978273", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - } - ] -} \ No newline at end of file diff --git a/distil/tests/unit/data/map_fixture_69.json b/distil/tests/unit/data/map_fixture_69.json deleted file mode 100644 index 75999c6..0000000 --- a/distil/tests/unit/data/map_fixture_69.json +++ /dev/null @@ -1,112 +0,0 @@ -{ - "http://localhost:8777/v2/meters/disk.write.bytes?q.field=resource_id&q.value=d9f92c40-23b3-4b86-ade2-ef62d0b459de": [ - { - "counter_name": "disk.write.bytes", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:29:55", - "message_id": "367eb5a2-aef5-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 9462784.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance2", - "flavor.id": "42", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.nano", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "64", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000002", - "memory_mb": "64", - "instance_type": "42", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "disk.write.bytes", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:28:55", - "message_id": "12da53d6-aef5-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 9460736.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance2", - "flavor.id": "42", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.nano", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "64", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000002", - "memory_mb": "64", - "instance_type": "42", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "disk.write.bytes", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:27:55", - "message_id": "ef358c20-aef4-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 9220096.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance2", - "flavor.id": "42", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.nano", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "64", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000002", - "memory_mb": "64", - "instance_type": "42", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "cumulative" - } - ] -} \ No newline at end of file diff --git a/distil/tests/unit/data/map_fixture_7.json b/distil/tests/unit/data/map_fixture_7.json deleted file mode 100644 index 42dd6a0..0000000 --- a/distil/tests/unit/data/map_fixture_7.json +++ /dev/null @@ -1,57 +0,0 @@ -{ - "http://localhost:8777/v2/resources/2c9af0eb-4960-49c2-8c1c-b60de446f212": { - "user_id": null, - "links": [ - { - "href": "http://localhost:8777/v2/resources/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "rel": "self" - }, - { - "href": "http://localhost:8777/v2/meters/image?q.field=resource_id&q.value=2c9af0eb-4960-49c2-8c1c-b60de446f212", - "rel": "image" - }, - { - "href": "http://localhost:8777/v2/meters/image.download?q.field=resource_id&q.value=2c9af0eb-4960-49c2-8c1c-b60de446f212", - "rel": "image.download" - }, - { - "href": "http://localhost:8777/v2/meters/image.serve?q.field=resource_id&q.value=2c9af0eb-4960-49c2-8c1c-b60de446f212", - "rel": "image.serve" - }, - { - "href": "http://localhost:8777/v2/meters/image.size?q.field=resource_id&q.value=2c9af0eb-4960-49c2-8c1c-b60de446f212", - "rel": "image.size" - }, - { - "href": "http://localhost:8777/v2/meters/image.update?q.field=resource_id&q.value=2c9af0eb-4960-49c2-8c1c-b60de446f212", - "rel": "image.update" - }, - { - "href": "http://localhost:8777/v2/meters/image.upload?q.field=resource_id&q.value=2c9af0eb-4960-49c2-8c1c-b60de446f212", - "rel": "image.upload" - } - ], - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "last_sample_timestamp": "2014-03-18T23:59:52", - "first_sample_timestamp": "2014-03-18T21:08:29.526328", - "project_id": "7a64220a45c84104ac95258de1a3720a", - "metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - } - } -} \ No newline at end of file diff --git a/distil/tests/unit/data/map_fixture_70.json b/distil/tests/unit/data/map_fixture_70.json deleted file mode 100644 index b36ff59..0000000 --- a/distil/tests/unit/data/map_fixture_70.json +++ /dev/null @@ -1,112 +0,0 @@ -{ - "http://localhost:8777/v2/meters/disk.write.requests?q.field=resource_id&q.value=d9f92c40-23b3-4b86-ade2-ef62d0b459de": [ - { - "counter_name": "disk.write.requests", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:29:55", - "message_id": "367f5d86-aef5-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 548.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance2", - "flavor.id": "42", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.nano", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "64", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000002", - "memory_mb": "64", - "instance_type": "42", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "disk.write.requests", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:28:55", - "message_id": "12ddc8a4-aef5-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 546.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance2", - "flavor.id": "42", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.nano", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "64", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000002", - "memory_mb": "64", - "instance_type": "42", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "disk.write.requests", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:27:55", - "message_id": "ef36f330-aef4-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 457.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance2", - "flavor.id": "42", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.nano", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "64", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000002", - "memory_mb": "64", - "instance_type": "42", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "cumulative" - } - ] -} \ No newline at end of file diff --git a/distil/tests/unit/data/map_fixture_71.json b/distil/tests/unit/data/map_fixture_71.json deleted file mode 100644 index 3226d7d..0000000 --- a/distil/tests/unit/data/map_fixture_71.json +++ /dev/null @@ -1,670 +0,0 @@ -{ - "http://localhost:8777/v2/meters/flavor?q.field=resource_id&q.value=d9f92c40-23b3-4b86-ade2-ef62d0b459de": [ - { - "counter_name": "flavor", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:59:57", - "message_id": "68678f4a-aef9-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "flavor.id", - "counter_volume": 42.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance2", - "flavor.id": "42", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.nano", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "64", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000002", - "memory_mb": "64", - "instance_type": "42", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "flavor", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:58:57", - "message_id": "448dea38-aef9-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "flavor.id", - "counter_volume": 42.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance2", - "flavor.id": "42", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.nano", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "64", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000002", - "memory_mb": "64", - "instance_type": "42", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "flavor", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:57:57", - "message_id": "20cbe73a-aef9-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "flavor.id", - "counter_volume": 42.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance2", - "flavor.id": "42", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.nano", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "64", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000002", - "memory_mb": "64", - "instance_type": "42", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "flavor", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:56:57", - "message_id": "fd06766c-aef8-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "flavor.id", - "counter_volume": 42.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance2", - "flavor.id": "42", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.nano", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "64", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000002", - "memory_mb": "64", - "instance_type": "42", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "flavor", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:39:55", - "message_id": "9c5c91e0-aef6-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "flavor.id", - "counter_volume": 42.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance2", - "flavor.id": "42", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.nano", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "64", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000002", - "memory_mb": "64", - "instance_type": "42", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "flavor", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:38:55", - "message_id": "788df114-aef6-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "flavor.id", - "counter_volume": 42.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance2", - "flavor.id": "42", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.nano", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "64", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000002", - "memory_mb": "64", - "instance_type": "42", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "flavor", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:37:55", - "message_id": "54d0d476-aef6-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "flavor.id", - "counter_volume": 42.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance2", - "flavor.id": "42", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.nano", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "64", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000002", - "memory_mb": "64", - "instance_type": "42", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "flavor", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:36:55", - "message_id": "30fda4fc-aef6-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "flavor.id", - "counter_volume": 42.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance2", - "flavor.id": "42", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.nano", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "64", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000002", - "memory_mb": "64", - "instance_type": "42", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "flavor", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:35:55", - "message_id": "0d41d678-aef6-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "flavor.id", - "counter_volume": 42.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance2", - "flavor.id": "42", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.nano", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "64", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000002", - "memory_mb": "64", - "instance_type": "42", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "flavor", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:34:55", - "message_id": "e96045fa-aef5-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "flavor.id", - "counter_volume": 42.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance2", - "flavor.id": "42", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.nano", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "64", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000002", - "memory_mb": "64", - "instance_type": "42", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "flavor", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:33:55", - "message_id": "c593edb6-aef5-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "flavor.id", - "counter_volume": 42.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance2", - "flavor.id": "42", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.nano", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "64", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000002", - "memory_mb": "64", - "instance_type": "42", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "flavor", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:32:55", - "message_id": "a1d8c0e0-aef5-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "flavor.id", - "counter_volume": 42.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance2", - "flavor.id": "42", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.nano", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "64", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000002", - "memory_mb": "64", - "instance_type": "42", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "flavor", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:31:55", - "message_id": "7e0202da-aef5-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "flavor.id", - "counter_volume": 42.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance2", - "flavor.id": "42", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.nano", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "64", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000002", - "memory_mb": "64", - "instance_type": "42", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "flavor", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:30:55", - "message_id": "5a46a026-aef5-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "flavor.id", - "counter_volume": 42.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance2", - "flavor.id": "42", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.nano", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "64", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000002", - "memory_mb": "64", - "instance_type": "42", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "flavor", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:29:55", - "message_id": "3668f32a-aef5-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "flavor.id", - "counter_volume": 42.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance2", - "flavor.id": "42", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.nano", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "64", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000002", - "memory_mb": "64", - "instance_type": "42", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "flavor", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:28:55", - "message_id": "12b68316-aef5-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "flavor.id", - "counter_volume": 42.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance2", - "flavor.id": "42", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.nano", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "64", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000002", - "memory_mb": "64", - "instance_type": "42", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "flavor", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:27:55", - "message_id": "ef174fc6-aef4-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "flavor.id", - "counter_volume": 42.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance2", - "flavor.id": "42", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.nano", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "64", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000002", - "memory_mb": "64", - "instance_type": "42", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "flavor", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:27:29.600603", - "message_id": "df87970a-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "flavor.id", - "counter_volume": 42.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.create.end", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "message": "Success", - "deleted_at": "", - "reservation_id": "r-zgm8p5qw", - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "display_name": "instance2", - "hostname": "instance2", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:27:29.433773", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18T23:27:20.000000", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - } - ] -} \ No newline at end of file diff --git a/distil/tests/unit/data/map_fixture_72.json b/distil/tests/unit/data/map_fixture_72.json deleted file mode 100644 index c1f7a20..0000000 --- a/distil/tests/unit/data/map_fixture_72.json +++ /dev/null @@ -1,1789 +0,0 @@ -{ - "http://localhost:8777/v2/meters/instance?q.field=resource_id&q.value=d9f92c40-23b3-4b86-ade2-ef62d0b459de": [ - { - "counter_name": "instance", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-19T00:00:12.179696", - "message_id": "714c2378-aef9-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.exists", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-zgm8p5qw", - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "display_name": "instance2", - "hostname": "instance2", - "state": "suspended", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:27:29.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18 23:00:00", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18T23:27:20.000000", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "audit_period_ending": "2014-03-19 00:00:00", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:59:57", - "message_id": "68683436-aef9-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance2", - "flavor.id": "42", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.nano", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "64", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000002", - "memory_mb": "64", - "instance_type": "42", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:58:57", - "message_id": "448ec9f8-aef9-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance2", - "flavor.id": "42", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.nano", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "64", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000002", - "memory_mb": "64", - "instance_type": "42", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:57:57", - "message_id": "20ccb354-aef9-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance2", - "flavor.id": "42", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.nano", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "64", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000002", - "memory_mb": "64", - "instance_type": "42", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:56:57", - "message_id": "fd076cca-aef8-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance2", - "flavor.id": "42", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.nano", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "64", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000002", - "memory_mb": "64", - "instance_type": "42", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:52:37.051830", - "message_id": "6225dffc-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.suspend", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "deleted_at": "", - "reservation_id": "r-zgm8p5qw", - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "display_name": "instance2", - "hostname": "instance2", - "state": "suspended", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:27:29.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:27:20+00:00", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:52:36.905676", - "message_id": "61f78166-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-zgm8p5qw", - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "display_name": "instance2", - "hostname": "instance2", - "state": "suspended", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "active", - "launched_at": "2014-03-18T23:27:29.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:27:20", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "suspending", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "None", - "audit_period_ending": "2014-03-18T23:52:36.900368", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:52:32.565514", - "message_id": "5f5f7878-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "suspending", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-zgm8p5qw", - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "display_name": "instance2", - "hostname": "instance2", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "active", - "launched_at": "2014-03-18T23:27:29.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:27:20", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "suspending", - "audit_period_ending": "2014-03-18T23:52:32.562287", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:40:59.491905", - "message_id": "c254b1d4-aef6-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.resume", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "deleted_at": "", - "reservation_id": "r-zgm8p5qw", - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "display_name": "instance2", - "hostname": "instance2", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:27:29.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:27:20+00:00", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:40:59.452720", - "message_id": "c23f0438-aef6-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-zgm8p5qw", - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "display_name": "instance2", - "hostname": "instance2", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "suspended", - "launched_at": "2014-03-18T23:27:29.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:27:20", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "resuming", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "None", - "audit_period_ending": "2014-03-18T23:40:59.447983", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:40:55.194510", - "message_id": "bfb4de18-aef6-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resuming", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-zgm8p5qw", - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "display_name": "instance2", - "hostname": "instance2", - "state": "suspended", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "suspended", - "launched_at": "2014-03-18T23:27:29.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:27:20", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "resuming", - "audit_period_ending": "2014-03-18T23:40:55.191399", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:39:55", - "message_id": "9c5d350a-aef6-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance2", - "flavor.id": "42", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.nano", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "64", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000002", - "memory_mb": "64", - "instance_type": "42", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:38:55", - "message_id": "788e8d68-aef6-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance2", - "flavor.id": "42", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.nano", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "64", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000002", - "memory_mb": "64", - "instance_type": "42", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:37:55", - "message_id": "54d1886c-aef6-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance2", - "flavor.id": "42", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.nano", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "64", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000002", - "memory_mb": "64", - "instance_type": "42", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:36:55", - "message_id": "30fe53e8-aef6-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance2", - "flavor.id": "42", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.nano", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "64", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000002", - "memory_mb": "64", - "instance_type": "42", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:35:55", - "message_id": "0d4271dc-aef6-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance2", - "flavor.id": "42", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.nano", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "64", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000002", - "memory_mb": "64", - "instance_type": "42", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:34:55", - "message_id": "e9613442-aef5-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance2", - "flavor.id": "42", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.nano", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "64", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000002", - "memory_mb": "64", - "instance_type": "42", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:33:55", - "message_id": "c595fc1e-aef5-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance2", - "flavor.id": "42", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.nano", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "64", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000002", - "memory_mb": "64", - "instance_type": "42", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:32:55", - "message_id": "a1d97698-aef5-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance2", - "flavor.id": "42", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.nano", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "64", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000002", - "memory_mb": "64", - "instance_type": "42", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:31:55", - "message_id": "7e031706-aef5-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance2", - "flavor.id": "42", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.nano", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "64", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000002", - "memory_mb": "64", - "instance_type": "42", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:30:55", - "message_id": "5a48741e-aef5-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance2", - "flavor.id": "42", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.nano", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "64", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000002", - "memory_mb": "64", - "instance_type": "42", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:30:23.712438", - "message_id": "4767dbbe-aef5-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.suspend", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "deleted_at": "", - "reservation_id": "r-zgm8p5qw", - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "display_name": "instance2", - "hostname": "instance2", - "state": "suspended", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:27:29.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:27:20+00:00", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:30:23.651799", - "message_id": "474e3f7e-aef5-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-zgm8p5qw", - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "display_name": "instance2", - "hostname": "instance2", - "state": "suspended", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "active", - "launched_at": "2014-03-18T23:27:29.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:27:20", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "suspending", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "None", - "audit_period_ending": "2014-03-18T23:30:23.639376", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:30:19.085450", - "message_id": "44927214-aef5-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "suspending", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-zgm8p5qw", - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "display_name": "instance2", - "hostname": "instance2", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "active", - "launched_at": "2014-03-18T23:27:29.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:27:20", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "suspending", - "audit_period_ending": "2014-03-18T23:30:19.081098", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:29:55", - "message_id": "36698416-aef5-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance2", - "flavor.id": "42", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.nano", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "64", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000002", - "memory_mb": "64", - "instance_type": "42", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:28:55", - "message_id": "12b71e16-aef5-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance2", - "flavor.id": "42", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.nano", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "64", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000002", - "memory_mb": "64", - "instance_type": "42", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:27:55", - "message_id": "ef17e896-aef4-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance2", - "flavor.id": "42", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.nano", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "64", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000002", - "memory_mb": "64", - "instance_type": "42", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:27:29.600603", - "message_id": "df909aee-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.create.end", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "message": "Success", - "deleted_at": "", - "reservation_id": "r-zgm8p5qw", - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "display_name": "instance2", - "hostname": "instance2", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:27:29.433773", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18T23:27:20.000000", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:27:29.492742", - "message_id": "df77c320-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-zgm8p5qw", - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "display_name": "instance2", - "hostname": "instance2", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "building", - "launched_at": "2014-03-18T23:27:29.433773", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:27:20", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "spawning", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "None", - "audit_period_ending": "2014-03-18T23:27:29.489850", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:27:24.141567", - "message_id": "dcb88c0a-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "spawning", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-zgm8p5qw", - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "display_name": "instance2", - "hostname": "instance2", - "state": "building", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "None", - "launched_at": "", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:27:20", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "spawning", - "audit_period_ending": "2014-03-18T23:27:24.134850", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:27:23.007051", - "message_id": "dc1e4938-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "spawning", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-zgm8p5qw", - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "display_name": "instance2", - "hostname": "instance2", - "state": "building", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "building", - "launched_at": "", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:27:20", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "block_device_mapping", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "spawning", - "audit_period_ending": "2014-03-18T23:27:23.001305", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:27:22.739719", - "message_id": "dbaf1482-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "block_device_mapping", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-zgm8p5qw", - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "display_name": "instance2", - "hostname": "instance2", - "state": "building", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "building", - "launched_at": "", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:27:20", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "networking", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "block_device_mapping", - "audit_period_ending": "2014-03-18T23:27:22.737082", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:27:22.441122", - "message_id": "db431fb6-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "networking", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-zgm8p5qw", - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "display_name": "instance2", - "hostname": "instance2", - "state": "building", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "building", - "launched_at": "", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:27:20", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "networking", - "audit_period_ending": "2014-03-18T23:27:22.438202", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:27:22.245700", - "message_id": "db56988e-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-zgm8p5qw", - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "display_name": "instance2", - "hostname": "instance2", - "state": "building", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "None", - "launched_at": "", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:27:20", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "None", - "audit_period_ending": "2014-03-18T23:27:22.238019", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:27:21.997197", - "message_id": "dbb73144-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-zgm8p5qw", - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "display_name": "instance2", - "hostname": "instance2", - "state": "building", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "None", - "launched_at": "", - "node": "None", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:27:20", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "None", - "audit_period_ending": "2014-03-18T23:27:21.994613", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:27:21.829896", - "message_id": "db9d3a1e-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "scheduling", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.create.start", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "message": "", - "deleted_at": "", - "reservation_id": "r-zgm8p5qw", - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "display_name": "instance2", - "hostname": "instance2", - "state": "building", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "", - "node": "None", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18T23:27:20.000000", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:27:21.705149", - "message_id": "dae092ce-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-zgm8p5qw", - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "display_name": "instance2", - "hostname": "instance2", - "state": "building", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "building", - "launched_at": "", - "node": "None", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:27:20", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "scheduling", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "None", - "audit_period_ending": "2014-03-18T23:27:21.699148", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:27:20.980945", - "message_id": "da68fb74-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "scheduling", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-zgm8p5qw", - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "display_name": "instance2", - "hostname": "instance2", - "state": "building", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "None", - "launched_at": "", - "node": "None", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:27:20.957149+00:00", - "image_meta.min_ram": "0", - "host": "api.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "scheduling", - "audit_period_ending": "2014-03-18T23:27:20.978273", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - } - ] -} \ No newline at end of file diff --git a/distil/tests/unit/data/map_fixture_73.json b/distil/tests/unit/data/map_fixture_73.json deleted file mode 100644 index 27f94c7..0000000 --- a/distil/tests/unit/data/map_fixture_73.json +++ /dev/null @@ -1,121 +0,0 @@ -{ - "http://localhost:8777/v2/meters/instance.scheduled?q.field=resource_id&q.value=d9f92c40-23b3-4b86-ade2-ef62d0b459de": [ - { - "counter_name": "instance.scheduled", - "user_id": null, - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:27:21.141062", - "message_id": "da7c9f58-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "request_spec.image:deleted_at": "None", - "request_spec.instance_properties:ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "request_spec.instance_properties:display_name": "instance2", - "request_spec.instance_properties:locked_by": "None", - "request_spec.instance_properties:system_metadata:instance_type_rxtx_factor": "1.0", - "request_spec.instance_properties:cell_name": "None", - "request_spec.image:id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "request_spec.instance_properties:cleaned": "False", - "request_spec.instance_properties:launched_at": "None", - "request_spec.image:min_ram": "0", - "request_spec.instance_properties:id": "2", - "request_spec.instance_properties:terminated_at": "None", - "request_spec.instance_properties:host": "None", - "request_spec.instance_properties:deleted_at": "None", - "request_spec.instance_properties:system_metadata:instance_type_ephemeral_gb": "0", - "request_spec.instance_type:id": "6", - "request_spec.instance_properties:progress": "0", - "request_spec.instance_properties:hostname": "instance2", - "request_spec.instance_properties:root_gb": "0", - "request_spec.image:created_at": "2014-03-18T21:08:28.000000", - "request_spec.image:updated_at": "2014-03-18T21:08:29.000000", - "request_spec.instance_properties:memory_mb": "64", - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "request_spec.instance_properties:default_ephemeral_device": "None", - "request_spec.instance_properties:system_metadata:instance_type_memory_mb": "64", - "request_spec.instance_properties:launched_on": "None", - "request_spec.instance_properties:power_state": "0", - "request_spec.image:properties:kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "request_spec.instance_properties:uuid": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "request_spec.instance_type:vcpus": "1", - "request_spec.image:is_public": "True", - "request_spec.instance_properties:node": "None", - "request_spec.instance_properties:key_name": "None", - "request_spec.instance_properties:vm_state": "building", - "weighted_host.host": "vagrant-ubuntu-precise-64", - "request_spec.instance_type:swap": "0", - "request_spec.image:min_disk": "0", - "request_spec.instance_properties:kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "request_spec.instance_properties:system_metadata:image_base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "request_spec.instance_properties:reservation_id": "r-zgm8p5qw", - "request_spec.image:properties:ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "request_spec.instance_properties:system_metadata:image_ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "request_spec.instance_properties:launch_index": "0", - "request_spec.instance_properties:system_metadata:image_min_ram": "0", - "request_spec.image:status": "active", - "request_spec.instance_type:root_gb": "0", - "request_spec.instance_properties:locked": "False", - "host": "scheduler.vagrant-ubuntu-precise-64", - "request_spec.instance_properties:system_metadata:image_kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "request_spec.instance_properties:config_drive": "", - "request_spec.instance_properties:info_cache:instance_uuid": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "request_spec.instance_properties:image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "request_spec.instance_properties:user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "request_spec.instance_type:memory_mb": "64", - "request_spec.num_instances": "1", - "request_spec.image:container_format": "ami", - "request_spec.instance_properties:availability_zone": "nova", - "request_spec.instance_properties:system_metadata:instance_type_name": "m1.nano", - "request_spec.image:deleted": "False", - "request_spec.instance_properties:root_device_name": "None", - "request_spec.instance_type:name": "m1.nano", - "request_spec.instance_properties:key_data": "None", - "request_spec.image:name": "cirros-0.3.1-x86_64-uec", - "request_spec.instance_properties:system_metadata:image_disk_format": "ami", - "request_spec.instance_properties:deleted": "False", - "request_spec.image:size": "25165824", - "request_spec.instance_properties:ephemeral_gb": "0", - "request_spec.instance_properties:disable_terminate": "False", - "request_spec.instance_properties:system_metadata:instance_type_root_gb": "0", - "request_spec.instance_properties:auto_disk_config": "False", - "request_spec.image:disk_format": "ami", - "request_spec.instance_properties:system_metadata:instance_type_flavorid": "42", - "request_spec.instance_properties:project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "request_spec.instance_properties:created_at": "2014-03-18T23:27:20.957149", - "request_spec.instance_properties:updated_at": "None", - "request_spec.instance_type:vcpu_weight": "None", - "request_spec.instance_type:flavorid": "42", - "request_spec.instance_type:rxtx_factor": "1.0", - "request_spec.instance_properties:system_metadata:image_container_format": "ami", - "event_type": "scheduler.run_instance.scheduled", - "request_spec.image:checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "request_spec.instance_properties:system_metadata:instance_type_id": "6", - "request_spec.instance_type:ephemeral_gb": "0", - "request_spec.instance_properties:vcpus": "1", - "request_spec.instance_properties:access_ip_v6": "None", - "request_spec.instance_properties:access_ip_v4": "None", - "request_spec.instance_properties:shutdown_terminate": "False", - "request_spec.instance_properties:system_metadata:instance_type_vcpu_weight": "None", - "request_spec.instance_properties:default_swap_device": "None", - "request_spec.instance_properties:vm_mode": "None", - "request_spec.instance_properties:instance_type_id": "6", - "request_spec.instance_properties:name": "instance-00000002", - "request_spec.instance_properties:user_data": "None", - "request_spec.instance_properties:system_metadata:instance_type_vcpus": "1", - "request_spec.instance_properties:architecture": "None", - "request_spec.instance_properties:os_type": "None", - "request_spec.instance_properties:task_state": "scheduling", - "request_spec.instance_properties:system_metadata:instance_type_swap": "0", - "weighted_host.weight": "3250.0", - "request_spec.instance_properties:display_description": "instance2", - "request_spec.image:owner": "7a64220a45c84104ac95258de1a3720a", - "request_spec.instance_properties:scheduled_at": "None", - "request_spec.instance_properties:system_metadata:image_min_disk": "0" - }, - "counter_type": "delta" - } - ] -} \ No newline at end of file diff --git a/distil/tests/unit/data/map_fixture_74.json b/distil/tests/unit/data/map_fixture_74.json deleted file mode 100644 index 648cda4..0000000 --- a/distil/tests/unit/data/map_fixture_74.json +++ /dev/null @@ -1,1789 +0,0 @@ -{ - "http://localhost:8777/v2/meters/instance:m1.nano?q.field=resource_id&q.value=d9f92c40-23b3-4b86-ade2-ef62d0b459de": [ - { - "counter_name": "instance:m1.nano", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-19T00:00:12.179696", - "message_id": "714a88b0-aef9-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.exists", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-zgm8p5qw", - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "display_name": "instance2", - "hostname": "instance2", - "state": "suspended", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:27:29.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18 23:00:00", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18T23:27:20.000000", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "audit_period_ending": "2014-03-19 00:00:00", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance:m1.nano", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:59:57", - "message_id": "68557094-aef9-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance2", - "flavor.id": "42", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.nano", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "64", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000002", - "memory_mb": "64", - "instance_type": "42", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance:m1.nano", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:58:57", - "message_id": "447d9b9c-aef9-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance2", - "flavor.id": "42", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.nano", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "64", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000002", - "memory_mb": "64", - "instance_type": "42", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance:m1.nano", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:57:57", - "message_id": "20bda030-aef9-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance2", - "flavor.id": "42", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.nano", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "64", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000002", - "memory_mb": "64", - "instance_type": "42", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance:m1.nano", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:56:57", - "message_id": "fcf5f5ee-aef8-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance2", - "flavor.id": "42", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.nano", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "64", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000002", - "memory_mb": "64", - "instance_type": "42", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance:m1.nano", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:52:37.051830", - "message_id": "62246dc0-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.suspend", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "deleted_at": "", - "reservation_id": "r-zgm8p5qw", - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "display_name": "instance2", - "hostname": "instance2", - "state": "suspended", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:27:29.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:27:20+00:00", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance:m1.nano", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:52:36.905676", - "message_id": "61ebf40e-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-zgm8p5qw", - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "display_name": "instance2", - "hostname": "instance2", - "state": "suspended", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "active", - "launched_at": "2014-03-18T23:27:29.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:27:20", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "suspending", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "None", - "audit_period_ending": "2014-03-18T23:52:36.900368", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance:m1.nano", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:52:32.565514", - "message_id": "5f544656-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "suspending", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-zgm8p5qw", - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "display_name": "instance2", - "hostname": "instance2", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "active", - "launched_at": "2014-03-18T23:27:29.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:27:20", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "suspending", - "audit_period_ending": "2014-03-18T23:52:32.562287", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance:m1.nano", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:40:59.491905", - "message_id": "c240b5e4-aef6-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.resume", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "deleted_at": "", - "reservation_id": "r-zgm8p5qw", - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "display_name": "instance2", - "hostname": "instance2", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:27:29.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:27:20+00:00", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance:m1.nano", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:40:59.452720", - "message_id": "c234083a-aef6-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-zgm8p5qw", - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "display_name": "instance2", - "hostname": "instance2", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "suspended", - "launched_at": "2014-03-18T23:27:29.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:27:20", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "resuming", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "None", - "audit_period_ending": "2014-03-18T23:40:59.447983", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance:m1.nano", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:40:55.194510", - "message_id": "bfa9a94e-aef6-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resuming", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-zgm8p5qw", - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "display_name": "instance2", - "hostname": "instance2", - "state": "suspended", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "suspended", - "launched_at": "2014-03-18T23:27:29.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:27:20", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "resuming", - "audit_period_ending": "2014-03-18T23:40:55.191399", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance:m1.nano", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:39:55", - "message_id": "9c4a6ef2-aef6-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance2", - "flavor.id": "42", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.nano", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "64", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000002", - "memory_mb": "64", - "instance_type": "42", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance:m1.nano", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:38:55", - "message_id": "787e72b6-aef6-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance2", - "flavor.id": "42", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.nano", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "64", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000002", - "memory_mb": "64", - "instance_type": "42", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance:m1.nano", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:37:55", - "message_id": "54c231f0-aef6-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance2", - "flavor.id": "42", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.nano", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "64", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000002", - "memory_mb": "64", - "instance_type": "42", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance:m1.nano", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:36:55", - "message_id": "30ed8b62-aef6-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance2", - "flavor.id": "42", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.nano", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "64", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000002", - "memory_mb": "64", - "instance_type": "42", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance:m1.nano", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:35:55", - "message_id": "0d320c2a-aef6-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance2", - "flavor.id": "42", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.nano", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "64", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000002", - "memory_mb": "64", - "instance_type": "42", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance:m1.nano", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:34:55", - "message_id": "e95061bc-aef5-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance2", - "flavor.id": "42", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.nano", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "64", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000002", - "memory_mb": "64", - "instance_type": "42", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance:m1.nano", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:33:55", - "message_id": "c58275e0-aef5-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance2", - "flavor.id": "42", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.nano", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "64", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000002", - "memory_mb": "64", - "instance_type": "42", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance:m1.nano", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:32:55", - "message_id": "a1c8f34a-aef5-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance2", - "flavor.id": "42", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.nano", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "64", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000002", - "memory_mb": "64", - "instance_type": "42", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance:m1.nano", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:31:55", - "message_id": "7df06c64-aef5-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance2", - "flavor.id": "42", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.nano", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "64", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000002", - "memory_mb": "64", - "instance_type": "42", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance:m1.nano", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:30:55", - "message_id": "5a34da94-aef5-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance2", - "flavor.id": "42", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.nano", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "64", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000002", - "memory_mb": "64", - "instance_type": "42", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance:m1.nano", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:30:23.712438", - "message_id": "474f383e-aef5-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.suspend", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "deleted_at": "", - "reservation_id": "r-zgm8p5qw", - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "display_name": "instance2", - "hostname": "instance2", - "state": "suspended", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:27:29.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:27:20+00:00", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance:m1.nano", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:30:23.651799", - "message_id": "473d14b0-aef5-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-zgm8p5qw", - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "display_name": "instance2", - "hostname": "instance2", - "state": "suspended", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "active", - "launched_at": "2014-03-18T23:27:29.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:27:20", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "suspending", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "None", - "audit_period_ending": "2014-03-18T23:30:23.639376", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance:m1.nano", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:30:19.085450", - "message_id": "44834d70-aef5-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "suspending", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-zgm8p5qw", - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "display_name": "instance2", - "hostname": "instance2", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "active", - "launched_at": "2014-03-18T23:27:29.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:27:20", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "suspending", - "audit_period_ending": "2014-03-18T23:30:19.081098", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance:m1.nano", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:29:55", - "message_id": "36582d88-aef5-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance2", - "flavor.id": "42", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.nano", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "64", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000002", - "memory_mb": "64", - "instance_type": "42", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance:m1.nano", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:28:55", - "message_id": "129b30ac-aef5-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance2", - "flavor.id": "42", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.nano", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "64", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000002", - "memory_mb": "64", - "instance_type": "42", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance:m1.nano", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:27:55", - "message_id": "ef00db24-aef4-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance2", - "flavor.id": "42", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.nano", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "64", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000002", - "memory_mb": "64", - "instance_type": "42", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance:m1.nano", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:27:29.600603", - "message_id": "df868aea-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.create.end", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "message": "Success", - "deleted_at": "", - "reservation_id": "r-zgm8p5qw", - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "display_name": "instance2", - "hostname": "instance2", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:27:29.433773", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18T23:27:20.000000", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance:m1.nano", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:27:29.492742", - "message_id": "df6d9472-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-zgm8p5qw", - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "display_name": "instance2", - "hostname": "instance2", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "building", - "launched_at": "2014-03-18T23:27:29.433773", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:27:20", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "spawning", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "None", - "audit_period_ending": "2014-03-18T23:27:29.489850", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance:m1.nano", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:27:24.141567", - "message_id": "dc554f14-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "spawning", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-zgm8p5qw", - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "display_name": "instance2", - "hostname": "instance2", - "state": "building", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "None", - "launched_at": "", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:27:20", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "spawning", - "audit_period_ending": "2014-03-18T23:27:24.134850", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance:m1.nano", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:27:23.007051", - "message_id": "dbb1c970-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "spawning", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-zgm8p5qw", - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "display_name": "instance2", - "hostname": "instance2", - "state": "building", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "building", - "launched_at": "", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:27:20", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "block_device_mapping", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "spawning", - "audit_period_ending": "2014-03-18T23:27:23.001305", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance:m1.nano", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:27:22.739719", - "message_id": "dbad63f8-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "block_device_mapping", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-zgm8p5qw", - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "display_name": "instance2", - "hostname": "instance2", - "state": "building", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "building", - "launched_at": "", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:27:20", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "networking", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "block_device_mapping", - "audit_period_ending": "2014-03-18T23:27:22.737082", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance:m1.nano", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:27:22.441122", - "message_id": "db412120-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "networking", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-zgm8p5qw", - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "display_name": "instance2", - "hostname": "instance2", - "state": "building", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "building", - "launched_at": "", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:27:20", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "networking", - "audit_period_ending": "2014-03-18T23:27:22.438202", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance:m1.nano", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:27:22.245700", - "message_id": "db401dd4-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-zgm8p5qw", - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "display_name": "instance2", - "hostname": "instance2", - "state": "building", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "None", - "launched_at": "", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:27:20", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "None", - "audit_period_ending": "2014-03-18T23:27:22.238019", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance:m1.nano", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:27:21.997197", - "message_id": "db3e9626-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-zgm8p5qw", - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "display_name": "instance2", - "hostname": "instance2", - "state": "building", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "None", - "launched_at": "", - "node": "None", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:27:20", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "None", - "audit_period_ending": "2014-03-18T23:27:21.994613", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance:m1.nano", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:27:21.829896", - "message_id": "daf14402-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "scheduling", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.create.start", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "message": "", - "deleted_at": "", - "reservation_id": "r-zgm8p5qw", - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "display_name": "instance2", - "hostname": "instance2", - "state": "building", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "", - "node": "None", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18T23:27:20.000000", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance:m1.nano", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:27:21.705149", - "message_id": "dacc99d6-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-zgm8p5qw", - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "display_name": "instance2", - "hostname": "instance2", - "state": "building", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "building", - "launched_at": "", - "node": "None", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:27:20", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "scheduling", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "None", - "audit_period_ending": "2014-03-18T23:27:21.699148", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance:m1.nano", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:27:20.980945", - "message_id": "da5b42cc-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "scheduling", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-zgm8p5qw", - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "display_name": "instance2", - "hostname": "instance2", - "state": "building", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "None", - "launched_at": "", - "node": "None", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:27:20.957149+00:00", - "image_meta.min_ram": "0", - "host": "api.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "scheduling", - "audit_period_ending": "2014-03-18T23:27:20.978273", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - } - ] -} \ No newline at end of file diff --git a/distil/tests/unit/data/map_fixture_75.json b/distil/tests/unit/data/map_fixture_75.json deleted file mode 100644 index 3a51e49..0000000 --- a/distil/tests/unit/data/map_fixture_75.json +++ /dev/null @@ -1,1177 +0,0 @@ -{ - "http://localhost:8777/v2/meters/memory?q.field=resource_id&q.value=d9f92c40-23b3-4b86-ade2-ef62d0b459de": [ - { - "counter_name": "memory", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-19T00:00:12.179696", - "message_id": "71589ae0-aef9-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "MB", - "counter_volume": 64.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.exists", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-zgm8p5qw", - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "display_name": "instance2", - "hostname": "instance2", - "state": "suspended", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:27:29.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18 23:00:00", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18T23:27:20.000000", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "audit_period_ending": "2014-03-19 00:00:00", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "memory", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:52:37.051830", - "message_id": "62282dde-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "MB", - "counter_volume": 64.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.suspend", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "deleted_at": "", - "reservation_id": "r-zgm8p5qw", - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "display_name": "instance2", - "hostname": "instance2", - "state": "suspended", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:27:29.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:27:20+00:00", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "memory", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:52:36.905676", - "message_id": "61fc5998-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "MB", - "counter_volume": 64.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-zgm8p5qw", - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "display_name": "instance2", - "hostname": "instance2", - "state": "suspended", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "active", - "launched_at": "2014-03-18T23:27:29.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:27:20", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "suspending", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "None", - "audit_period_ending": "2014-03-18T23:52:36.900368", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "memory", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:52:32.565514", - "message_id": "5f757baa-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "MB", - "counter_volume": 64.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "suspending", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-zgm8p5qw", - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "display_name": "instance2", - "hostname": "instance2", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "active", - "launched_at": "2014-03-18T23:27:29.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:27:20", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "suspending", - "audit_period_ending": "2014-03-18T23:52:32.562287", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "memory", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:40:59.491905", - "message_id": "c2644b62-aef6-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "MB", - "counter_volume": 64.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.resume", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "deleted_at": "", - "reservation_id": "r-zgm8p5qw", - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "display_name": "instance2", - "hostname": "instance2", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:27:29.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:27:20+00:00", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "memory", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:40:59.452720", - "message_id": "c25fa9cc-aef6-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "MB", - "counter_volume": 64.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-zgm8p5qw", - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "display_name": "instance2", - "hostname": "instance2", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "suspended", - "launched_at": "2014-03-18T23:27:29.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:27:20", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "resuming", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "None", - "audit_period_ending": "2014-03-18T23:40:59.447983", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "memory", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:40:55.194510", - "message_id": "bfd46864-aef6-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "MB", - "counter_volume": 64.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resuming", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-zgm8p5qw", - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "display_name": "instance2", - "hostname": "instance2", - "state": "suspended", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "suspended", - "launched_at": "2014-03-18T23:27:29.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:27:20", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "resuming", - "audit_period_ending": "2014-03-18T23:40:55.191399", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "memory", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:30:23.712438", - "message_id": "47931ebe-aef5-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "MB", - "counter_volume": 64.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.suspend", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "deleted_at": "", - "reservation_id": "r-zgm8p5qw", - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "display_name": "instance2", - "hostname": "instance2", - "state": "suspended", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:27:29.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:27:20+00:00", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "memory", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:30:23.651799", - "message_id": "4775b694-aef5-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "MB", - "counter_volume": 64.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-zgm8p5qw", - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "display_name": "instance2", - "hostname": "instance2", - "state": "suspended", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "active", - "launched_at": "2014-03-18T23:27:29.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:27:20", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "suspending", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "None", - "audit_period_ending": "2014-03-18T23:30:23.639376", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "memory", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:30:19.085450", - "message_id": "4496c8dc-aef5-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "MB", - "counter_volume": 64.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "suspending", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-zgm8p5qw", - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "display_name": "instance2", - "hostname": "instance2", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "active", - "launched_at": "2014-03-18T23:27:29.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:27:20", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "suspending", - "audit_period_ending": "2014-03-18T23:30:19.081098", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "memory", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:27:29.600603", - "message_id": "df9286e2-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "MB", - "counter_volume": 64.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.create.end", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "message": "Success", - "deleted_at": "", - "reservation_id": "r-zgm8p5qw", - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "display_name": "instance2", - "hostname": "instance2", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:27:29.433773", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18T23:27:20.000000", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "memory", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:27:29.492742", - "message_id": "df8c8800-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "MB", - "counter_volume": 64.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-zgm8p5qw", - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "display_name": "instance2", - "hostname": "instance2", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "building", - "launched_at": "2014-03-18T23:27:29.433773", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:27:20", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "spawning", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "None", - "audit_period_ending": "2014-03-18T23:27:29.489850", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "memory", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:27:24.141567", - "message_id": "dd5cc0ea-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "MB", - "counter_volume": 64.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "spawning", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-zgm8p5qw", - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "display_name": "instance2", - "hostname": "instance2", - "state": "building", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "None", - "launched_at": "", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:27:20", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "spawning", - "audit_period_ending": "2014-03-18T23:27:24.134850", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "memory", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:27:23.007051", - "message_id": "dcf9d9c6-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "MB", - "counter_volume": 64.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "spawning", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-zgm8p5qw", - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "display_name": "instance2", - "hostname": "instance2", - "state": "building", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "building", - "launched_at": "", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:27:20", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "block_device_mapping", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "spawning", - "audit_period_ending": "2014-03-18T23:27:23.001305", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "memory", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:27:22.739719", - "message_id": "dc24c6b4-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "MB", - "counter_volume": 64.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "block_device_mapping", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-zgm8p5qw", - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "display_name": "instance2", - "hostname": "instance2", - "state": "building", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "building", - "launched_at": "", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:27:20", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "networking", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "block_device_mapping", - "audit_period_ending": "2014-03-18T23:27:22.737082", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "memory", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:27:22.441122", - "message_id": "db469dda-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "MB", - "counter_volume": 64.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "networking", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-zgm8p5qw", - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "display_name": "instance2", - "hostname": "instance2", - "state": "building", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "building", - "launched_at": "", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:27:20", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "networking", - "audit_period_ending": "2014-03-18T23:27:22.438202", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "memory", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:27:22.245700", - "message_id": "dc7961ce-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "MB", - "counter_volume": 64.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-zgm8p5qw", - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "display_name": "instance2", - "hostname": "instance2", - "state": "building", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "None", - "launched_at": "", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:27:20", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "None", - "audit_period_ending": "2014-03-18T23:27:22.238019", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "memory", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:27:21.997197", - "message_id": "dc75519c-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "MB", - "counter_volume": 64.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-zgm8p5qw", - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "display_name": "instance2", - "hostname": "instance2", - "state": "building", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "None", - "launched_at": "", - "node": "None", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:27:20", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "None", - "audit_period_ending": "2014-03-18T23:27:21.994613", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "memory", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:27:21.829896", - "message_id": "dc2419e4-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "MB", - "counter_volume": 64.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "scheduling", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.create.start", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "message": "", - "deleted_at": "", - "reservation_id": "r-zgm8p5qw", - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "display_name": "instance2", - "hostname": "instance2", - "state": "building", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "", - "node": "None", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18T23:27:20.000000", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "memory", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:27:21.705149", - "message_id": "dae66e92-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "MB", - "counter_volume": 64.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-zgm8p5qw", - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "display_name": "instance2", - "hostname": "instance2", - "state": "building", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "building", - "launched_at": "", - "node": "None", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:27:20", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "scheduling", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "None", - "audit_period_ending": "2014-03-18T23:27:21.699148", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "memory", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:27:20.980945", - "message_id": "dab9cde2-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "MB", - "counter_volume": 64.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "scheduling", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-zgm8p5qw", - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "display_name": "instance2", - "hostname": "instance2", - "state": "building", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "None", - "launched_at": "", - "node": "None", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:27:20.957149+00:00", - "image_meta.min_ram": "0", - "host": "api.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "scheduling", - "audit_period_ending": "2014-03-18T23:27:20.978273", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - } - ] -} \ No newline at end of file diff --git a/distil/tests/unit/data/map_fixture_76.json b/distil/tests/unit/data/map_fixture_76.json deleted file mode 100644 index ba706c9..0000000 --- a/distil/tests/unit/data/map_fixture_76.json +++ /dev/null @@ -1,1789 +0,0 @@ -{ - "http://localhost:8777/v2/meters/state?q.field=resource_id&q.value=d9f92c40-23b3-4b86-ade2-ef62d0b459de": [ - { - "counter_name": "state", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-19T00:00:12.179696", - "message_id": "7157e1f4-aef9-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "state", - "counter_volume": 4.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.exists", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-zgm8p5qw", - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "display_name": "instance2", - "hostname": "instance2", - "state": "suspended", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:27:29.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18 23:00:00", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18T23:27:20.000000", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "audit_period_ending": "2014-03-19 00:00:00", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "state", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:59:58", - "message_id": "68ebffd2-aef9-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "state", - "counter_volume": 4.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance2", - "flavor.id": "42", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.nano", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "64", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000002", - "memory_mb": "64", - "instance_type": "42", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "state", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:58:57", - "message_id": "44ef65ba-aef9-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "state", - "counter_volume": 4.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance2", - "flavor.id": "42", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.nano", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "64", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000002", - "memory_mb": "64", - "instance_type": "42", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "state", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:57:57", - "message_id": "21306520-aef9-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "state", - "counter_volume": 4.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance2", - "flavor.id": "42", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.nano", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "64", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000002", - "memory_mb": "64", - "instance_type": "42", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "state", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:56:57", - "message_id": "fd6eb6a0-aef8-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "state", - "counter_volume": 4.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance2", - "flavor.id": "42", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.nano", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "64", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000002", - "memory_mb": "64", - "instance_type": "42", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "state", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:52:37.051830", - "message_id": "62276764-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "state", - "counter_volume": 4.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.suspend", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "deleted_at": "", - "reservation_id": "r-zgm8p5qw", - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "display_name": "instance2", - "hostname": "instance2", - "state": "suspended", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:27:29.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:27:20+00:00", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "state", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:52:36.905676", - "message_id": "61fa9446-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "state", - "counter_volume": 4.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-zgm8p5qw", - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "display_name": "instance2", - "hostname": "instance2", - "state": "suspended", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "active", - "launched_at": "2014-03-18T23:27:29.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:27:20", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "suspending", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "None", - "audit_period_ending": "2014-03-18T23:52:36.900368", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "state", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:52:32.565514", - "message_id": "5f74bf80-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "state", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "suspending", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-zgm8p5qw", - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "display_name": "instance2", - "hostname": "instance2", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "active", - "launched_at": "2014-03-18T23:27:29.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:27:20", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "suspending", - "audit_period_ending": "2014-03-18T23:52:32.562287", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "state", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:40:59.491905", - "message_id": "c2635e96-aef6-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "state", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.resume", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "deleted_at": "", - "reservation_id": "r-zgm8p5qw", - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "display_name": "instance2", - "hostname": "instance2", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:27:29.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:27:20+00:00", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "state", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:40:59.452720", - "message_id": "c25ed768-aef6-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "state", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-zgm8p5qw", - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "display_name": "instance2", - "hostname": "instance2", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "suspended", - "launched_at": "2014-03-18T23:27:29.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:27:20", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "resuming", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "None", - "audit_period_ending": "2014-03-18T23:40:59.447983", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "state", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:40:55.194510", - "message_id": "bfc7d81a-aef6-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "state", - "counter_volume": 4.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resuming", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-zgm8p5qw", - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "display_name": "instance2", - "hostname": "instance2", - "state": "suspended", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "suspended", - "launched_at": "2014-03-18T23:27:29.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:27:20", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "resuming", - "audit_period_ending": "2014-03-18T23:40:55.191399", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "state", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:39:56", - "message_id": "9cc3a222-aef6-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "state", - "counter_volume": 4.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance2", - "flavor.id": "42", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.nano", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "64", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000002", - "memory_mb": "64", - "instance_type": "42", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "state", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:38:56", - "message_id": "78f09cba-aef6-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "state", - "counter_volume": 4.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance2", - "flavor.id": "42", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.nano", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "64", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000002", - "memory_mb": "64", - "instance_type": "42", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "state", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:37:56", - "message_id": "5535cc00-aef6-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "state", - "counter_volume": 4.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance2", - "flavor.id": "42", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.nano", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "64", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000002", - "memory_mb": "64", - "instance_type": "42", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "state", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:36:56", - "message_id": "316e08b4-aef6-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "state", - "counter_volume": 4.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance2", - "flavor.id": "42", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.nano", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "64", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000002", - "memory_mb": "64", - "instance_type": "42", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "state", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:35:56", - "message_id": "0da7e058-aef6-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "state", - "counter_volume": 4.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance2", - "flavor.id": "42", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.nano", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "64", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000002", - "memory_mb": "64", - "instance_type": "42", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "state", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:34:56", - "message_id": "e9c87ecc-aef5-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "state", - "counter_volume": 4.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance2", - "flavor.id": "42", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.nano", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "64", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000002", - "memory_mb": "64", - "instance_type": "42", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "state", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:33:56", - "message_id": "c5faf8e4-aef5-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "state", - "counter_volume": 4.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance2", - "flavor.id": "42", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.nano", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "64", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000002", - "memory_mb": "64", - "instance_type": "42", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "state", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:32:56", - "message_id": "a243c6e2-aef5-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "state", - "counter_volume": 4.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance2", - "flavor.id": "42", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.nano", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "64", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000002", - "memory_mb": "64", - "instance_type": "42", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "state", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:31:56", - "message_id": "7e661c7a-aef5-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "state", - "counter_volume": 4.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance2", - "flavor.id": "42", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.nano", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "64", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000002", - "memory_mb": "64", - "instance_type": "42", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "state", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:30:56", - "message_id": "5ab6c658-aef5-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "state", - "counter_volume": 4.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance2", - "flavor.id": "42", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.nano", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "64", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000002", - "memory_mb": "64", - "instance_type": "42", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "state", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:30:23.712438", - "message_id": "478e3c32-aef5-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "state", - "counter_volume": 4.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.suspend", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "deleted_at": "", - "reservation_id": "r-zgm8p5qw", - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "display_name": "instance2", - "hostname": "instance2", - "state": "suspended", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:27:29.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:27:20+00:00", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "state", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:30:23.651799", - "message_id": "4768565c-aef5-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "state", - "counter_volume": 4.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-zgm8p5qw", - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "display_name": "instance2", - "hostname": "instance2", - "state": "suspended", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "active", - "launched_at": "2014-03-18T23:27:29.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:27:20", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "suspending", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "None", - "audit_period_ending": "2014-03-18T23:30:23.639376", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "state", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:30:19.085450", - "message_id": "4495570e-aef5-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "state", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "suspending", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-zgm8p5qw", - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "display_name": "instance2", - "hostname": "instance2", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "active", - "launched_at": "2014-03-18T23:27:29.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:27:20", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "suspending", - "audit_period_ending": "2014-03-18T23:30:19.081098", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "state", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:29:55", - "message_id": "36a191ee-aef5-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "state", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance2", - "flavor.id": "42", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.nano", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "64", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000002", - "memory_mb": "64", - "instance_type": "42", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "state", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:28:56", - "message_id": "12fff884-aef5-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "state", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance2", - "flavor.id": "42", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.nano", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "64", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000002", - "memory_mb": "64", - "instance_type": "42", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "state", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:27:56", - "message_id": "ef59a524-aef4-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "state", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance2", - "flavor.id": "42", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.nano", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "64", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000002", - "memory_mb": "64", - "instance_type": "42", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "state", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:27:29.600603", - "message_id": "df91e9bc-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "state", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.create.end", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "message": "Success", - "deleted_at": "", - "reservation_id": "r-zgm8p5qw", - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "display_name": "instance2", - "hostname": "instance2", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:27:29.433773", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18T23:27:20.000000", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "state", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:27:29.492742", - "message_id": "df8be67a-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "state", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-zgm8p5qw", - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "display_name": "instance2", - "hostname": "instance2", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "building", - "launched_at": "2014-03-18T23:27:29.433773", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:27:20", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "spawning", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "None", - "audit_period_ending": "2014-03-18T23:27:29.489850", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "state", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:27:24.141567", - "message_id": "dd2aed5e-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "state", - "counter_volume": 2.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "spawning", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-zgm8p5qw", - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "display_name": "instance2", - "hostname": "instance2", - "state": "building", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "None", - "launched_at": "", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:27:20", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "spawning", - "audit_period_ending": "2014-03-18T23:27:24.134850", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "state", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:27:23.007051", - "message_id": "dcceaa94-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "state", - "counter_volume": 2.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "spawning", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-zgm8p5qw", - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "display_name": "instance2", - "hostname": "instance2", - "state": "building", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "building", - "launched_at": "", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:27:20", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "block_device_mapping", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "spawning", - "audit_period_ending": "2014-03-18T23:27:23.001305", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "state", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:27:22.739719", - "message_id": "dbba5630-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "state", - "counter_volume": 2.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "block_device_mapping", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-zgm8p5qw", - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "display_name": "instance2", - "hostname": "instance2", - "state": "building", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "building", - "launched_at": "", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:27:20", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "networking", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "block_device_mapping", - "audit_period_ending": "2014-03-18T23:27:22.737082", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "state", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:27:22.441122", - "message_id": "db458e22-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "state", - "counter_volume": 2.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "networking", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-zgm8p5qw", - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "display_name": "instance2", - "hostname": "instance2", - "state": "building", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "building", - "launched_at": "", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:27:20", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "networking", - "audit_period_ending": "2014-03-18T23:27:22.438202", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "state", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:27:22.245700", - "message_id": "dc456004-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "state", - "counter_volume": 2.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-zgm8p5qw", - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "display_name": "instance2", - "hostname": "instance2", - "state": "building", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "None", - "launched_at": "", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:27:20", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "None", - "audit_period_ending": "2014-03-18T23:27:22.238019", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "state", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:27:21.997197", - "message_id": "dc2039d2-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "state", - "counter_volume": 2.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-zgm8p5qw", - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "display_name": "instance2", - "hostname": "instance2", - "state": "building", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "None", - "launched_at": "", - "node": "None", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:27:20", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "None", - "audit_period_ending": "2014-03-18T23:27:21.994613", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "state", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:27:21.829896", - "message_id": "dbfaa316-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "state", - "counter_volume": 2.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "scheduling", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.create.start", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "message": "", - "deleted_at": "", - "reservation_id": "r-zgm8p5qw", - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "display_name": "instance2", - "hostname": "instance2", - "state": "building", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "", - "node": "None", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18T23:27:20.000000", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "state", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:27:21.705149", - "message_id": "dae58ef0-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "state", - "counter_volume": 2.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-zgm8p5qw", - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "display_name": "instance2", - "hostname": "instance2", - "state": "building", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "building", - "launched_at": "", - "node": "None", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:27:20", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "scheduling", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "None", - "audit_period_ending": "2014-03-18T23:27:21.699148", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "state", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:27:20.980945", - "message_id": "da9a85a4-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "state", - "counter_volume": 2.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "scheduling", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-zgm8p5qw", - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "display_name": "instance2", - "hostname": "instance2", - "state": "building", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "None", - "launched_at": "", - "node": "None", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:27:20.957149+00:00", - "image_meta.min_ram": "0", - "host": "api.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "scheduling", - "audit_period_ending": "2014-03-18T23:27:20.978273", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - } - ] -} \ No newline at end of file diff --git a/distil/tests/unit/data/map_fixture_77.json b/distil/tests/unit/data/map_fixture_77.json deleted file mode 100644 index 52a7641..0000000 --- a/distil/tests/unit/data/map_fixture_77.json +++ /dev/null @@ -1,1177 +0,0 @@ -{ - "http://localhost:8777/v2/meters/vcpus?q.field=resource_id&q.value=d9f92c40-23b3-4b86-ade2-ef62d0b459de": [ - { - "counter_name": "vcpus", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-19T00:00:12.179696", - "message_id": "714d3042-aef9-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "vcpu", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.exists", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-zgm8p5qw", - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "display_name": "instance2", - "hostname": "instance2", - "state": "suspended", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:27:29.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18 23:00:00", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18T23:27:20.000000", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "audit_period_ending": "2014-03-19 00:00:00", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "vcpus", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:52:37.051830", - "message_id": "62269abe-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "vcpu", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.suspend", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "deleted_at": "", - "reservation_id": "r-zgm8p5qw", - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "display_name": "instance2", - "hostname": "instance2", - "state": "suspended", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:27:29.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:27:20+00:00", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "vcpus", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:52:36.905676", - "message_id": "61f92ee4-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "vcpu", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-zgm8p5qw", - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "display_name": "instance2", - "hostname": "instance2", - "state": "suspended", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "active", - "launched_at": "2014-03-18T23:27:29.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:27:20", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "suspending", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "None", - "audit_period_ending": "2014-03-18T23:52:36.900368", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "vcpus", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:52:32.565514", - "message_id": "5f6ab332-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "vcpu", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "suspending", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-zgm8p5qw", - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "display_name": "instance2", - "hostname": "instance2", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "active", - "launched_at": "2014-03-18T23:27:29.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:27:20", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "suspending", - "audit_period_ending": "2014-03-18T23:52:32.562287", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "vcpus", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:40:59.491905", - "message_id": "c2628f0c-aef6-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "vcpu", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.resume", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "deleted_at": "", - "reservation_id": "r-zgm8p5qw", - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "display_name": "instance2", - "hostname": "instance2", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:27:29.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:27:20+00:00", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "vcpus", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:40:59.452720", - "message_id": "c2535fe6-aef6-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "vcpu", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-zgm8p5qw", - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "display_name": "instance2", - "hostname": "instance2", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "suspended", - "launched_at": "2014-03-18T23:27:29.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:27:20", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "resuming", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "None", - "audit_period_ending": "2014-03-18T23:40:59.447983", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "vcpus", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:40:55.194510", - "message_id": "bfbd7078-aef6-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "vcpu", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resuming", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-zgm8p5qw", - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "display_name": "instance2", - "hostname": "instance2", - "state": "suspended", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "suspended", - "launched_at": "2014-03-18T23:27:29.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:27:20", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "resuming", - "audit_period_ending": "2014-03-18T23:40:55.191399", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "vcpus", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:30:23.712438", - "message_id": "477563d8-aef5-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "vcpu", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.suspend", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "deleted_at": "", - "reservation_id": "r-zgm8p5qw", - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "display_name": "instance2", - "hostname": "instance2", - "state": "suspended", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:27:29.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:27:20+00:00", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "vcpus", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:30:23.651799", - "message_id": "47531878-aef5-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "vcpu", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-zgm8p5qw", - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "display_name": "instance2", - "hostname": "instance2", - "state": "suspended", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "active", - "launched_at": "2014-03-18T23:27:29.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:27:20", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "suspending", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "None", - "audit_period_ending": "2014-03-18T23:30:23.639376", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "vcpus", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:30:19.085450", - "message_id": "449481d0-aef5-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "vcpu", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "suspending", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-zgm8p5qw", - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "display_name": "instance2", - "hostname": "instance2", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "active", - "launched_at": "2014-03-18T23:27:29.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:27:20", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "suspending", - "audit_period_ending": "2014-03-18T23:30:19.081098", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "vcpus", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:27:29.600603", - "message_id": "df913c06-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "vcpu", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.create.end", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "message": "Success", - "deleted_at": "", - "reservation_id": "r-zgm8p5qw", - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "display_name": "instance2", - "hostname": "instance2", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:27:29.433773", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18T23:27:20.000000", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "vcpus", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:27:29.492742", - "message_id": "df8540f4-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "vcpu", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-zgm8p5qw", - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "display_name": "instance2", - "hostname": "instance2", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "building", - "launched_at": "2014-03-18T23:27:29.433773", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:27:20", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "spawning", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "None", - "audit_period_ending": "2014-03-18T23:27:29.489850", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "vcpus", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:27:24.141567", - "message_id": "dcfdea02-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "vcpu", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "spawning", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-zgm8p5qw", - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "display_name": "instance2", - "hostname": "instance2", - "state": "building", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "None", - "launched_at": "", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:27:20", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "spawning", - "audit_period_ending": "2014-03-18T23:27:24.134850", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "vcpus", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:27:23.007051", - "message_id": "dc74707e-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "vcpu", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "spawning", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-zgm8p5qw", - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "display_name": "instance2", - "hostname": "instance2", - "state": "building", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "building", - "launched_at": "", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:27:20", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "block_device_mapping", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "spawning", - "audit_period_ending": "2014-03-18T23:27:23.001305", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "vcpus", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:27:22.739719", - "message_id": "dbb100da-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "vcpu", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "block_device_mapping", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-zgm8p5qw", - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "display_name": "instance2", - "hostname": "instance2", - "state": "building", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "building", - "launched_at": "", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:27:20", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "networking", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "block_device_mapping", - "audit_period_ending": "2014-03-18T23:27:22.737082", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "vcpus", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:27:22.441122", - "message_id": "db44361c-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "vcpu", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "networking", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-zgm8p5qw", - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "display_name": "instance2", - "hostname": "instance2", - "state": "building", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "building", - "launched_at": "", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:27:20", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "networking", - "audit_period_ending": "2014-03-18T23:27:22.438202", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "vcpus", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:27:22.245700", - "message_id": "dbfc209c-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "vcpu", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-zgm8p5qw", - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "display_name": "instance2", - "hostname": "instance2", - "state": "building", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "None", - "launched_at": "", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:27:20", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "None", - "audit_period_ending": "2014-03-18T23:27:22.238019", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "vcpus", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:27:21.997197", - "message_id": "dc1c5678-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "vcpu", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-zgm8p5qw", - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "display_name": "instance2", - "hostname": "instance2", - "state": "building", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "None", - "launched_at": "", - "node": "None", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:27:20", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "None", - "audit_period_ending": "2014-03-18T23:27:21.994613", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "vcpus", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:27:21.829896", - "message_id": "dbb7a6d8-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "vcpu", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "scheduling", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.create.start", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "message": "", - "deleted_at": "", - "reservation_id": "r-zgm8p5qw", - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "display_name": "instance2", - "hostname": "instance2", - "state": "building", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "", - "node": "None", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18T23:27:20.000000", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "vcpus", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:27:21.705149", - "message_id": "dae34b04-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "vcpu", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-zgm8p5qw", - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "display_name": "instance2", - "hostname": "instance2", - "state": "building", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "building", - "launched_at": "", - "node": "None", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:27:20", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "scheduling", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "None", - "audit_period_ending": "2014-03-18T23:27:21.699148", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "vcpus", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "timestamp": "2014-03-18T23:27:20.980945", - "message_id": "da7b21aa-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "vcpu", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "scheduling", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-zgm8p5qw", - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "display_name": "instance2", - "hostname": "instance2", - "state": "building", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "None", - "launched_at": "", - "node": "None", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:27:20.957149+00:00", - "image_meta.min_ram": "0", - "host": "api.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "scheduling", - "audit_period_ending": "2014-03-18T23:27:20.978273", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - } - ] -} \ No newline at end of file diff --git a/distil/tests/unit/data/map_fixture_78.json b/distil/tests/unit/data/map_fixture_78.json deleted file mode 100644 index aa950ee..0000000 --- a/distil/tests/unit/data/map_fixture_78.json +++ /dev/null @@ -1,121 +0,0 @@ -{ - "http://localhost:8777/v2/resources/f2bbc7d1-b167-4065-ad21-7a2f550dde4b": { - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "links": [ - { - "href": "http://localhost:8777/v2/resources/f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "rel": "self" - }, - { - "href": "http://localhost:8777/v2/meters/cpu?q.field=resource_id&q.value=f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "rel": "cpu" - }, - { - "href": "http://localhost:8777/v2/meters/cpu_util?q.field=resource_id&q.value=f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "rel": "cpu_util" - }, - { - "href": "http://localhost:8777/v2/meters/disk.ephemeral.size?q.field=resource_id&q.value=f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "rel": "disk.ephemeral.size" - }, - { - "href": "http://localhost:8777/v2/meters/disk.read.bytes?q.field=resource_id&q.value=f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "rel": "disk.read.bytes" - }, - { - "href": "http://localhost:8777/v2/meters/disk.read.requests?q.field=resource_id&q.value=f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "rel": "disk.read.requests" - }, - { - "href": "http://localhost:8777/v2/meters/disk.root.size?q.field=resource_id&q.value=f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "rel": "disk.root.size" - }, - { - "href": "http://localhost:8777/v2/meters/disk.write.bytes?q.field=resource_id&q.value=f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "rel": "disk.write.bytes" - }, - { - "href": "http://localhost:8777/v2/meters/disk.write.requests?q.field=resource_id&q.value=f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "rel": "disk.write.requests" - }, - { - "href": "http://localhost:8777/v2/meters/flavor?q.field=resource_id&q.value=f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "rel": "flavor" - }, - { - "href": "http://localhost:8777/v2/meters/instance?q.field=resource_id&q.value=f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "rel": "instance" - }, - { - "href": "http://localhost:8777/v2/meters/instance.scheduled?q.field=resource_id&q.value=f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "rel": "instance.scheduled" - }, - { - "href": "http://localhost:8777/v2/meters/instance:m1.micro?q.field=resource_id&q.value=f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "rel": "instance:m1.micro" - }, - { - "href": "http://localhost:8777/v2/meters/instance:m1.nano?q.field=resource_id&q.value=f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "rel": "instance:m1.nano" - }, - { - "href": "http://localhost:8777/v2/meters/memory?q.field=resource_id&q.value=f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "rel": "memory" - }, - { - "href": "http://localhost:8777/v2/meters/state?q.field=resource_id&q.value=f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "rel": "state" - }, - { - "href": "http://localhost:8777/v2/meters/vcpus?q.field=resource_id&q.value=f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "rel": "vcpus" - } - ], - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "last_sample_timestamp": "2014-03-19T00:00:12.155033", - "first_sample_timestamp": "2014-03-18T23:25:50.059488", - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.exists", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:51:10.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18 23:00:00", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18T23:25:50.000000", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "audit_period_ending": "2014-03-19 00:00:00", - "os_type": "None", - "instance_flavor_id": "42" - } - } -} \ No newline at end of file diff --git a/distil/tests/unit/data/map_fixture_79.json b/distil/tests/unit/data/map_fixture_79.json deleted file mode 100644 index 224b4b2..0000000 --- a/distil/tests/unit/data/map_fixture_79.json +++ /dev/null @@ -1,670 +0,0 @@ -{ - "http://localhost:8777/v2/meters/cpu?q.field=resource_id&q.value=f2bbc7d1-b167-4065-ad21-7a2f550dde4b": [ - { - "counter_name": "cpu", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:59:58", - "message_id": "693b4b0a-aef9-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "ns", - "counter_volume": 15830000000.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "42", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.nano", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "64", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "cpu_number": "1", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "64", - "instance_type": "42", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "cpu", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:58:58", - "message_id": "452e294e-aef9-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "ns", - "counter_volume": 15550000000.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "42", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.nano", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "64", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "cpu_number": "1", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "64", - "instance_type": "42", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "cpu", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:57:58", - "message_id": "21794c9a-aef9-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "ns", - "counter_volume": 15290000000.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "42", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.nano", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "64", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "cpu_number": "1", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "64", - "instance_type": "42", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "cpu", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:56:58", - "message_id": "fdba4e58-aef8-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "ns", - "counter_volume": 15020000000.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "42", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.nano", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "64", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "cpu_number": "1", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "64", - "instance_type": "42", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "cpu", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:39:57", - "message_id": "9d13db70-aef6-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "ns", - "counter_volume": 21270000000.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "84", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.micro", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "128", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "cpu_number": "1", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "128", - "instance_type": "84", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "cpu", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:38:56", - "message_id": "79354ff4-aef6-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "ns", - "counter_volume": 20930000000.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "84", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.micro", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "128", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "cpu_number": "1", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "128", - "instance_type": "84", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "cpu", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:37:57", - "message_id": "5576fac2-aef6-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "ns", - "counter_volume": 20610000000.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "84", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.micro", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "128", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "cpu_number": "1", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "128", - "instance_type": "84", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "cpu", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:36:57", - "message_id": "31b81878-aef6-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "ns", - "counter_volume": 20270000000.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "84", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.micro", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "128", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "cpu_number": "1", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "128", - "instance_type": "84", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "cpu", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:35:56", - "message_id": "0de8882e-aef6-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "ns", - "counter_volume": 19910000000.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "84", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.micro", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "128", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "cpu_number": "1", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "128", - "instance_type": "84", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "cpu", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:34:56", - "message_id": "ea08f074-aef5-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "ns", - "counter_volume": 19590000000.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "84", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.micro", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "128", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "cpu_number": "1", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "128", - "instance_type": "84", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "cpu", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:33:56", - "message_id": "c63be8f4-aef5-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "ns", - "counter_volume": 19250000000.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "84", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.micro", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "128", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "cpu_number": "1", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "128", - "instance_type": "84", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "cpu", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:32:56", - "message_id": "a2832a4e-aef5-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "ns", - "counter_volume": 18950000000.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "84", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.micro", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "128", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "cpu_number": "1", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "128", - "instance_type": "84", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "cpu", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:31:56", - "message_id": "7ea797c2-aef5-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "ns", - "counter_volume": 18650000000.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "84", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.micro", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "128", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "cpu_number": "1", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "128", - "instance_type": "84", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "cpu", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:30:56", - "message_id": "5afaf378-aef5-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "ns", - "counter_volume": 18340000000.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "84", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.micro", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "128", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "cpu_number": "1", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "128", - "instance_type": "84", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "cpu", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:29:56", - "message_id": "36da2504-aef5-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "ns", - "counter_volume": 18060000000.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "84", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.micro", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "128", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "cpu_number": "1", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "128", - "instance_type": "84", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "cpu", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:28:56", - "message_id": "1336754e-aef5-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "ns", - "counter_volume": 17780000000.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "84", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.micro", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "128", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "cpu_number": "1", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "128", - "instance_type": "84", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "cpu", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:27:56", - "message_id": "efbc40f8-aef4-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "ns", - "counter_volume": 15620000000.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "84", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.micro", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "128", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "cpu_number": "1", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "128", - "instance_type": "84", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "cpu", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:55", - "message_id": "cb295816-aef4-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "ns", - "counter_volume": 9120000000.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "84", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.micro", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "128", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "cpu_number": "1", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "128", - "instance_type": "84", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "cumulative" - } - ] -} \ No newline at end of file diff --git a/distil/tests/unit/data/map_fixture_8.json b/distil/tests/unit/data/map_fixture_8.json deleted file mode 100644 index 4b13ee5..0000000 --- a/distil/tests/unit/data/map_fixture_8.json +++ /dev/null @@ -1,5232 +0,0 @@ -{ - "http://localhost:8777/v2/meters/image?q.field=resource_id&q.value=2c9af0eb-4960-49c2-8c1c-b60de446f212": [ - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T23:59:52", - "message_id": "658dea6c-aef9-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T23:58:52", - "message_id": "41ec16c4-aef9-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T23:57:52", - "message_id": "1e18280a-aef9-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T23:56:52", - "message_id": "fa473d9e-aef8-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T23:55:52", - "message_id": "d66ff67c-aef8-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T23:54:52", - "message_id": "b2ac61b2-aef8-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T23:53:52", - "message_id": "8ef042de-aef8-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T23:52:52", - "message_id": "6b24041c-aef8-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T23:51:52", - "message_id": "47828402-aef8-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T23:50:52", - "message_id": "23a63a06-aef8-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T23:49:52", - "message_id": "ffdc93ea-aef7-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T23:48:52", - "message_id": "dc0e887e-aef7-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T23:47:52", - "message_id": "b8542542-aef7-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T23:46:52", - "message_id": "949197c0-aef7-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T23:45:52", - "message_id": "70b7fb1e-aef7-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T23:44:52", - "message_id": "4ceda4e0-aef7-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T23:43:52", - "message_id": "2928beaa-aef7-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T23:42:52", - "message_id": "056759ea-aef7-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T23:41:52", - "message_id": "e199e50a-aef6-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T23:40:52", - "message_id": "be0654b6-aef6-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T23:39:52", - "message_id": "9a1c8f66-aef6-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T23:38:52", - "message_id": "764ffe1a-aef6-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T23:37:52", - "message_id": "529c0aea-aef6-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T23:36:52", - "message_id": "2ecd5ea2-aef6-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T23:35:52", - "message_id": "0b063f20-aef6-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T23:34:52", - "message_id": "e7309fa0-aef5-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T23:33:52", - "message_id": "c36d789a-aef5-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T23:32:51", - "message_id": "9fa471f2-aef5-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T23:31:51", - "message_id": "7bdfc1ea-aef5-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T23:30:51", - "message_id": "581776d6-aef5-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T23:29:52", - "message_id": "346c760a-aef5-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T23:28:51", - "message_id": "108f22dc-aef5-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T23:27:52", - "message_id": "ed11fd2a-aef4-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T23:26:52", - "message_id": "c92761ac-aef4-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T23:25:52", - "message_id": "a5d61f4a-aef4-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T23:24:51", - "message_id": "817b078c-aef4-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T23:23:51", - "message_id": "5dbaa9ce-aef4-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T23:22:51", - "message_id": "39e09a04-aef4-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T23:21:51", - "message_id": "16206572-aef4-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T23:20:51", - "message_id": "f258c454-aef3-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T23:19:51", - "message_id": "ceac9d82-aef3-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T23:18:51", - "message_id": "aae23e34-aef3-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T23:17:51", - "message_id": "8709e9bc-aef3-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T23:16:51", - "message_id": "63412338-aef3-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T23:15:51", - "message_id": "3f7efc90-aef3-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T23:14:51", - "message_id": "1bb517fe-aef3-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T23:13:51", - "message_id": "f7efbafe-aef2-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T23:12:51", - "message_id": "d423ecbc-aef2-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T23:11:51", - "message_id": "b05dd48c-aef2-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T23:10:51", - "message_id": "8c93bc92-aef2-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T23:09:51", - "message_id": "68d5f90a-aef2-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T23:08:51", - "message_id": "4531c510-aef2-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T23:07:51", - "message_id": "2153c06c-aef2-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T23:06:51", - "message_id": "fd866bee-aef1-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T23:05:51", - "message_id": "d9bff0ae-aef1-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T23:04:51", - "message_id": "b5f09660-aef1-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T23:03:51", - "message_id": "923cd224-aef1-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T23:02:51", - "message_id": "6e68496e-aef1-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T23:01:51", - "message_id": "4a9e2300-aef1-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T23:00:51", - "message_id": "26d8803c-aef1-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T22:59:51", - "message_id": "0316c726-aef1-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T22:58:51", - "message_id": "df4ea80e-aef0-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T22:57:51", - "message_id": "bbd85514-aef0-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T22:56:51", - "message_id": "97c4c4be-aef0-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T22:55:51", - "message_id": "73fd6220-aef0-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T22:54:51", - "message_id": "5030debc-aef0-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T22:53:51", - "message_id": "2c718968-aef0-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T22:52:51", - "message_id": "08c81144-aef0-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T22:51:51", - "message_id": "e4e0a336-aeef-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T22:50:51", - "message_id": "c11faf1e-aeef-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T22:49:51", - "message_id": "9d6121e8-aeef-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T22:48:51", - "message_id": "7999963c-aeef-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T22:47:51", - "message_id": "55d600a0-aeef-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T22:46:51", - "message_id": "3222085c-aeef-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T22:45:51", - "message_id": "0e426116-aeef-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T22:44:51", - "message_id": "ea81cabe-aeee-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T22:43:51", - "message_id": "c6b0f4ca-aeee-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T22:42:51", - "message_id": "a2f976ce-aeee-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T22:41:51", - "message_id": "7f434278-aeee-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T22:40:51", - "message_id": "5b697a52-aeee-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T22:39:51", - "message_id": "37a98f62-aeee-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T22:38:51", - "message_id": "13e520a0-aeee-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T22:37:51", - "message_id": "f0204ee2-aeed-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T22:36:51", - "message_id": "cc699850-aeed-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T22:35:51", - "message_id": "a898ba50-aeed-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T22:34:50", - "message_id": "84c097c4-aeed-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T22:33:50", - "message_id": "610cd658-aeed-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T22:32:50", - "message_id": "3d392470-aeed-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T22:31:51", - "message_id": "199a091c-aeed-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T22:30:50", - "message_id": "f5b302ce-aeec-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T22:29:50", - "message_id": "d1eb8bc2-aeec-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T22:28:50", - "message_id": "ae2604b0-aeec-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T22:27:50", - "message_id": "8a5cccd0-aeec-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T22:26:50", - "message_id": "66b208fe-aeec-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T22:25:50", - "message_id": "42c67614-aeec-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T22:24:50", - "message_id": "1f0cd196-aeec-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T22:23:50", - "message_id": "fb4efdce-aeeb-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T22:22:50", - "message_id": "d7862a5c-aeeb-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T22:21:50", - "message_id": "b3cb0aa6-aeeb-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T22:20:50", - "message_id": "9006b16a-aeeb-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T22:19:50", - "message_id": "6c33884e-aeeb-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T22:18:50", - "message_id": "487b2f42-aeeb-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T22:17:50", - "message_id": "24ad5194-aeeb-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T22:16:50", - "message_id": "00e4060e-aeeb-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T22:15:50", - "message_id": "dd237948-aeea-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T22:14:50", - "message_id": "b942c380-aeea-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T22:13:50", - "message_id": "958d3b32-aeea-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T22:12:50", - "message_id": "71c0a13a-aeea-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T22:11:50", - "message_id": "4e062b2a-aeea-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T22:10:50", - "message_id": "2a486b62-aeea-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T22:09:50", - "message_id": "066912f0-aeea-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T22:08:50", - "message_id": "e2acfc82-aee9-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T22:07:50", - "message_id": "bef3e634-aee9-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T22:06:50", - "message_id": "9b262550-aee9-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T22:05:50", - "message_id": "776d65c4-aee9-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T22:04:50", - "message_id": "5385fed2-aee9-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T22:03:50", - "message_id": "2fc0beb0-aee9-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T22:02:50", - "message_id": "0c07621c-aee9-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T22:01:50", - "message_id": "e847d050-aee8-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T22:00:50", - "message_id": "c48973b2-aee8-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T21:59:50", - "message_id": "a0aca3d8-aee8-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T21:58:50", - "message_id": "7cea03b4-aee8-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T21:57:50", - "message_id": "5929895e-aee8-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T21:56:50", - "message_id": "356f84c8-aee8-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T21:55:50", - "message_id": "11a2edaa-aee8-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T21:54:50", - "message_id": "edc1a44e-aee7-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T21:53:50", - "message_id": "ca082294-aee7-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T21:52:50", - "message_id": "a64452ba-aee7-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T21:51:50", - "message_id": "82877640-aee7-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T21:50:50", - "message_id": "5ec2708e-aee7-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T21:49:50", - "message_id": "3ae79ae0-aee7-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T21:48:50", - "message_id": "17324fdc-aee7-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T21:47:50", - "message_id": "f36553a6-aee6-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T21:46:50", - "message_id": "cfa42db6-aee6-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T21:45:50", - "message_id": "abef4e6e-aee6-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T21:44:49", - "message_id": "880cda34-aee6-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T21:43:49", - "message_id": "644bff26-aee6-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T21:42:49", - "message_id": "407a5598-aee6-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T21:41:49", - "message_id": "1cbf037e-aee6-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T21:40:50", - "message_id": "f90f90f6-aee5-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T21:39:49", - "message_id": "d527c38e-aee5-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T21:38:49", - "message_id": "b1674046-aee5-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T21:37:49", - "message_id": "8da064da-aee5-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T21:36:49", - "message_id": "69d9c406-aee5-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T21:35:49", - "message_id": "4629d032-aee5-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T21:34:49", - "message_id": "22472d72-aee5-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T21:33:49", - "message_id": "fe7a3812-aee4-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T21:32:49", - "message_id": "dab7c71e-aee4-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T21:31:49", - "message_id": "b6f6c8c0-aee4-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T21:30:49", - "message_id": "932f1aaa-aee4-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T21:29:49", - "message_id": "6f7d5432-aee4-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T21:28:49", - "message_id": "4ba530ac-aee4-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T21:27:49", - "message_id": "27e1865c-aee4-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T21:26:49", - "message_id": "041c32b2-aee4-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T21:25:49", - "message_id": "e04d154a-aee3-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T21:24:49", - "message_id": "bc9c80b8-aee3-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T21:23:49", - "message_id": "98bee4b0-aee3-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T21:22:49", - "message_id": "74f88bda-aee3-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T21:21:49", - "message_id": "51365268-aee3-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T21:20:49", - "message_id": "2d6d90bc-aee3-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T21:19:49", - "message_id": "09aa0de0-aee3-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T21:18:49", - "message_id": "e606d92c-aee2-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T21:17:49", - "message_id": "c2278696-aee2-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T21:16:49", - "message_id": "9e62392c-aee2-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T21:15:49", - "message_id": "7a994846-aee2-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T21:14:49", - "message_id": "56c9c986-aee2-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T21:13:49", - "message_id": "33132ef6-aee2-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T21:12:49", - "message_id": "0f2f3ee4-aee2-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T21:11:49", - "message_id": "eb67a01e-aee1-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T21:10:49", - "message_id": "c79d071e-aee1-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T21:09:49", - "message_id": "a3cf5e86-aee1-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T21:08:49", - "message_id": "80223dfa-aee1-11e3-a2bf-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "name": "cirros-0.3.1-x86_64-uec", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "protected": "False", - "container_format": "ami", - "min_disk": "0", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T21:08:29.555960", - "message_id": "7478cbfe-aee1-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "active", - "event_type": "image.update", - "name": "cirros-0.3.1-x86_64-uec", - "min_disk": "0", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "host": "vagrant-ubuntu-precise-64", - "protected": "False", - "id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "container_format": "ami", - "owner": "7a64220a45c84104ac95258de1a3720a", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - }, - { - "counter_name": "image", - "user_id": null, - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T21:08:29.526328", - "message_id": "746e51ba-aee1-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "image", - "counter_volume": 1.0, - "project_id": "7a64220a45c84104ac95258de1a3720a", - "resource_metadata": { - "status": "saving", - "event_type": "image.upload", - "name": "cirros-0.3.1-x86_64-uec", - "min_disk": "0", - "deleted": "False", - "checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "created_at": "2014-03-18T21:08:28", - "disk_format": "ami", - "updated_at": "2014-03-18T21:08:29", - "properties.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "properties.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "host": "vagrant-ubuntu-precise-64", - "protected": "False", - "id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "container_format": "ami", - "owner": "7a64220a45c84104ac95258de1a3720a", - "is_public": "True", - "deleted_at": "None", - "min_ram": "0", - "size": "25165824" - }, - "counter_type": "gauge" - } - ] -} \ No newline at end of file diff --git a/distil/tests/unit/data/map_fixture_80.json b/distil/tests/unit/data/map_fixture_80.json deleted file mode 100644 index 0af37ef..0000000 --- a/distil/tests/unit/data/map_fixture_80.json +++ /dev/null @@ -1,633 +0,0 @@ -{ - "http://localhost:8777/v2/meters/cpu_util?q.field=resource_id&q.value=f2bbc7d1-b167-4065-ad21-7a2f550dde4b": [ - { - "counter_name": "cpu_util", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:59:58", - "message_id": "693c0540-aef9-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "%", - "counter_volume": 0.466666666666667, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "42", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.nano", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "64", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "cpu_number": "1", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "64", - "instance_type": "42", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "cpu_util", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:58:58", - "message_id": "452ed9ac-aef9-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "%", - "counter_volume": 0.433333333333333, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "42", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.nano", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "64", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "cpu_number": "1", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "64", - "instance_type": "42", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "cpu_util", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:57:58", - "message_id": "217ae2a8-aef9-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "%", - "counter_volume": 0.45, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "42", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.nano", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "64", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "cpu_number": "1", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "64", - "instance_type": "42", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "cpu_util", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:56:58", - "message_id": "fdbaf556-aef8-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "%", - "counter_volume": 1.47110675808031, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "42", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.nano", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "64", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "cpu_number": "1", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "64", - "instance_type": "42", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "cpu_util", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:39:57", - "message_id": "9d14e146-aef6-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "%", - "counter_volume": 0.557377049180328, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "84", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.micro", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "128", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "cpu_number": "1", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "128", - "instance_type": "84", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "cpu_util", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:38:56", - "message_id": "7935e82e-aef6-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "%", - "counter_volume": 0.542372881355932, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "84", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.micro", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "128", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "cpu_number": "1", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "128", - "instance_type": "84", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "cpu_util", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:37:57", - "message_id": "5577c43e-aef6-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "%", - "counter_volume": 0.566666666666667, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "84", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.micro", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "128", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "cpu_number": "1", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "128", - "instance_type": "84", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "cpu_util", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:36:57", - "message_id": "31b8b120-aef6-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "%", - "counter_volume": 0.590163934426229, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "84", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.micro", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "128", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "cpu_number": "1", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "128", - "instance_type": "84", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "cpu_util", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:35:56", - "message_id": "0de91cf8-aef6-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "%", - "counter_volume": 0.533333333333333, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "84", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.micro", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "128", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "cpu_number": "1", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "128", - "instance_type": "84", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "cpu_util", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:34:56", - "message_id": "ea09906a-aef5-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "%", - "counter_volume": 0.566666666666667, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "84", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.micro", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "128", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "cpu_number": "1", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "128", - "instance_type": "84", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "cpu_util", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:33:56", - "message_id": "c63cb1ee-aef5-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "%", - "counter_volume": 0.5, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "84", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.micro", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "128", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "cpu_number": "1", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "128", - "instance_type": "84", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "cpu_util", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:32:56", - "message_id": "a283c652-aef5-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "%", - "counter_volume": 0.5, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "84", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.micro", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "128", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "cpu_number": "1", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "128", - "instance_type": "84", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "cpu_util", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:31:56", - "message_id": "7ea8381c-aef5-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "%", - "counter_volume": 0.516666666666667, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "84", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.micro", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "128", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "cpu_number": "1", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "128", - "instance_type": "84", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "cpu_util", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:30:56", - "message_id": "5afbba6a-aef5-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "%", - "counter_volume": 0.466666666666667, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "84", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.micro", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "128", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "cpu_number": "1", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "128", - "instance_type": "84", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "cpu_util", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:29:56", - "message_id": "36dade7c-aef5-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "%", - "counter_volume": 0.466666666666667, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "84", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.micro", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "128", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "cpu_number": "1", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "128", - "instance_type": "84", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "cpu_util", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:28:56", - "message_id": "13370b26-aef5-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "%", - "counter_volume": 3.6, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "84", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.micro", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "128", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "cpu_number": "1", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "128", - "instance_type": "84", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "cpu_util", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:27:56", - "message_id": "efbd3576-aef4-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "%", - "counter_volume": 10.655737704918, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "84", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.micro", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "128", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "cpu_number": "1", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "128", - "instance_type": "84", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - } - ] -} \ No newline at end of file diff --git a/distil/tests/unit/data/map_fixture_81.json b/distil/tests/unit/data/map_fixture_81.json deleted file mode 100644 index 9c8337a..0000000 --- a/distil/tests/unit/data/map_fixture_81.json +++ /dev/null @@ -1,2763 +0,0 @@ -{ - "http://localhost:8777/v2/meters/disk.ephemeral.size?q.field=resource_id&q.value=f2bbc7d1-b167-4065-ad21-7a2f550dde4b": [ - { - "counter_name": "disk.ephemeral.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-19T00:00:12.155033", - "message_id": "7151de44-aef9-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.exists", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:51:10.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18 23:00:00", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18T23:25:50.000000", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "audit_period_ending": "2014-03-19 00:00:00", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.ephemeral.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:51:16.375547", - "message_id": "3236bdc0-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.resize.confirm.end", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:51:10.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50+00:00", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.ephemeral.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:51:16.346975", - "message_id": "321dd6c0-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "resized", - "launched_at": "2014-03-18T23:51:10.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "None", - "audit_period_ending": "2014-03-18T23:51:16.342714", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.ephemeral.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:51:14.778337", - "message_id": "316d3842-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "resized", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "None", - "launched_at": "2014-03-18T23:51:10.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "None", - "audit_period_ending": "2014-03-18T23:51:14.765324", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.ephemeral.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:51:14.551624", - "message_id": "31570428-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.resize.confirm.start", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "resized", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:51:10.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50+00:00", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.ephemeral.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:51:10.406617", - "message_id": "2e8fa682-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.finish_resize.end", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "resized", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:51:10.252738", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50+00:00", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.ephemeral.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:51:10.379488", - "message_id": "2ea47878-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "resized", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "active", - "launched_at": "2014-03-18T23:51:10.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "resize_finish", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "None", - "audit_period_ending": "2014-03-18T23:51:10.370224", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.ephemeral.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:51:07.330097", - "message_id": "2cd8637e-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_finish", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "None", - "launched_at": "2014-03-18T23:26:36.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "resize_finish", - "audit_period_ending": "2014-03-18T23:51:07.318203", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.ephemeral.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:51:06.595811", - "message_id": "2c551adc-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_finish", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.finish_resize.start", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:26:36.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50+00:00", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.ephemeral.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:51:06.549996", - "message_id": "2cac0e46-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_finish", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "active", - "launched_at": "2014-03-18T23:26:36.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "resize_migrated", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "resize_finish", - "audit_period_ending": "2014-03-18T23:51:06.540920", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.ephemeral.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:51:04.974308", - "message_id": "2b97b708-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_migrated", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "None", - "launched_at": "2014-03-18T23:26:36.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "resize_migrated", - "audit_period_ending": "2014-03-18T23:51:04.970426", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.ephemeral.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:51:04.821606", - "message_id": "2b8ff130-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_migrated", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.resize.end", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "7", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:26:36.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50+00:00", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "128", - "instance_type": "m1.micro", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "84" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.ephemeral.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:51:04.776805", - "message_id": "2b2ac65c-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_migrated", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "7", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "active", - "launched_at": "2014-03-18T23:26:36.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "resize_migrating", - "memory_mb": "128", - "instance_type": "m1.micro", - "vcpus": "1", - "architecture": "None", - "new_task_state": "resize_migrated", - "audit_period_ending": "2014-03-18T23:51:04.773290", - "os_type": "None", - "instance_flavor_id": "84" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.ephemeral.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:51:03.177935", - "message_id": "2a40ee24-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_migrating", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.resize.start", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "7", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:26:36.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50+00:00", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "128", - "instance_type": "m1.micro", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "84" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.ephemeral.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:51:03.154086", - "message_id": "2a7c34ca-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_migrating", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "7", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "active", - "launched_at": "2014-03-18T23:26:36.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "resize_prep", - "memory_mb": "128", - "instance_type": "m1.micro", - "vcpus": "1", - "architecture": "None", - "new_task_state": "resize_migrating", - "audit_period_ending": "2014-03-18T23:51:03.144127", - "os_type": "None", - "instance_flavor_id": "84" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.ephemeral.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:51:02.454054", - "message_id": "2a75d86e-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_prep", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.resize.prep.end", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "7", - "new_instance_type": "m1.nano", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:26:36.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "new_instance_type_id": "6", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50+00:00", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "128", - "instance_type": "m1.micro", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "84" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.ephemeral.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:51:02.287353", - "message_id": "2aa16196-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_prep", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "7", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "None", - "launched_at": "2014-03-18T23:26:36.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "128", - "instance_type": "m1.micro", - "vcpus": "1", - "architecture": "None", - "new_task_state": "resize_prep", - "audit_period_ending": "2014-03-18T23:51:02.277584", - "os_type": "None", - "instance_flavor_id": "84" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.ephemeral.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:51:02.105639", - "message_id": "29f62506-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_prep", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.resize.prep.start", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "7", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:26:36.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50+00:00", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "128", - "instance_type": "m1.micro", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "84" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.ephemeral.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:51:02.079858", - "message_id": "29ea3bc4-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_prep", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.exists", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "7", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:26:36.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18 23:00:00", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18T23:25:50.000000", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "memory_mb": "128", - "instance_type": "m1.micro", - "vcpus": "1", - "architecture": "None", - "audit_period_ending": "2014-03-18 23:51:02.075761", - "os_type": "None", - "instance_flavor_id": "84" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.ephemeral.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:51:01.796399", - "message_id": "2956675a-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_prep", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "7", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "active", - "launched_at": "2014-03-18T23:26:36.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "128", - "instance_type": "m1.micro", - "vcpus": "1", - "architecture": "None", - "new_task_state": "resize_prep", - "audit_period_ending": "2014-03-18T23:51:01.792434", - "os_type": "None", - "instance_flavor_id": "84" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.ephemeral.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:42.511562", - "message_id": "c3d839ba-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.resize.confirm.end", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "7", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:26:36.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50+00:00", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "128", - "instance_type": "m1.micro", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "84" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.ephemeral.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:42.477369", - "message_id": "c3c3fde2-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "7", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "resized", - "launched_at": "2014-03-18T23:26:36.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "128", - "instance_type": "m1.micro", - "vcpus": "1", - "architecture": "None", - "new_task_state": "None", - "audit_period_ending": "2014-03-18T23:26:42.470479", - "os_type": "None", - "instance_flavor_id": "84" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.ephemeral.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:41.444948", - "message_id": "c2fbe578-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "7", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "resized", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "None", - "launched_at": "2014-03-18T23:26:36.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "128", - "instance_type": "m1.micro", - "vcpus": "1", - "architecture": "None", - "new_task_state": "None", - "audit_period_ending": "2014-03-18T23:26:41.433938", - "os_type": "None", - "instance_flavor_id": "84" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.ephemeral.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:41.215808", - "message_id": "c2ed7f10-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.resize.confirm.start", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "7", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "resized", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:26:36.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50+00:00", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "128", - "instance_type": "m1.micro", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "84" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.ephemeral.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:36.660962", - "message_id": "c00dab12-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.finish_resize.end", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "7", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "resized", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:26:36.508445", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50+00:00", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "128", - "instance_type": "m1.micro", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "84" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.ephemeral.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:36.641519", - "message_id": "c006fa56-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "7", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "resized", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "active", - "launched_at": "2014-03-18T23:26:36.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "resize_finish", - "memory_mb": "128", - "instance_type": "m1.micro", - "vcpus": "1", - "architecture": "None", - "new_task_state": "None", - "audit_period_ending": "2014-03-18T23:26:36.635923", - "os_type": "None", - "instance_flavor_id": "84" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.ephemeral.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:33.644730", - "message_id": "beba326c-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_finish", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "7", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "None", - "launched_at": "2014-03-18T23:26:03.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "128", - "instance_type": "m1.micro", - "vcpus": "1", - "architecture": "None", - "new_task_state": "resize_finish", - "audit_period_ending": "2014-03-18T23:26:33.629158", - "os_type": "None", - "instance_flavor_id": "84" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.ephemeral.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:32.978311", - "message_id": "be91633c-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_finish", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.finish_resize.start", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "7", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:26:03.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50+00:00", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "128", - "instance_type": "m1.micro", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "84" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.ephemeral.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:32.923371", - "message_id": "be208f4a-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_finish", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "7", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "active", - "launched_at": "2014-03-18T23:26:03.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "resize_migrated", - "memory_mb": "128", - "instance_type": "m1.micro", - "vcpus": "1", - "architecture": "None", - "new_task_state": "resize_finish", - "audit_period_ending": "2014-03-18T23:26:32.912559", - "os_type": "None", - "instance_flavor_id": "84" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.ephemeral.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:30.756963", - "message_id": "bd50fcd0-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_migrated", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "7", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "None", - "launched_at": "2014-03-18T23:26:03.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "128", - "instance_type": "m1.micro", - "vcpus": "1", - "architecture": "None", - "new_task_state": "resize_migrated", - "audit_period_ending": "2014-03-18T23:26:30.736480", - "os_type": "None", - "instance_flavor_id": "84" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.ephemeral.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:30.581708", - "message_id": "bd462594-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_migrated", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.resize.end", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:26:03.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50+00:00", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.ephemeral.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:30.541581", - "message_id": "bc6accce-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_migrated", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "active", - "launched_at": "2014-03-18T23:26:03.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "resize_migrating", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "resize_migrated", - "audit_period_ending": "2014-03-18T23:26:30.538760", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.ephemeral.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:29.062264", - "message_id": "bbeffe0e-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_migrating", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.resize.start", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:26:03.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50+00:00", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.ephemeral.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:29.023231", - "message_id": "bbde071c-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_migrating", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "active", - "launched_at": "2014-03-18T23:26:03.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "resize_prep", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "resize_migrating", - "audit_period_ending": "2014-03-18T23:26:29.012815", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.ephemeral.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:27.992426", - "message_id": "bbc06a54-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_prep", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.resize.prep.end", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "new_instance_type": "m1.micro", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:26:03.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "new_instance_type_id": "7", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50+00:00", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.ephemeral.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:27.832751", - "message_id": "bb801490-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_prep", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "None", - "launched_at": "2014-03-18T23:26:03.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "resize_prep", - "audit_period_ending": "2014-03-18T23:26:27.827241", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.ephemeral.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:27.649599", - "message_id": "bb82af16-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_prep", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.resize.prep.start", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:26:03.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50+00:00", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.ephemeral.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:27.624655", - "message_id": "bb367e98-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_prep", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.exists", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:26:03.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18 23:00:00", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18T23:25:50.000000", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "audit_period_ending": "2014-03-18 23:26:27.618602", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.ephemeral.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:27.390614", - "message_id": "ba845984-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_prep", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "active", - "launched_at": "2014-03-18T23:26:03.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "resize_prep", - "audit_period_ending": "2014-03-18T23:26:27.387182", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.ephemeral.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:03.435289", - "message_id": "acc4a9ac-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.create.end", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "message": "Success", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:26:03.116480", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18T23:25:50.000000", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.ephemeral.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:03.304543", - "message_id": "aca861f2-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "building", - "launched_at": "2014-03-18T23:26:03.116480", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "spawning", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "None", - "audit_period_ending": "2014-03-18T23:26:03.283717", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.ephemeral.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:25:56.576910", - "message_id": "a8924c18-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "spawning", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "building", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "None", - "launched_at": "", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "spawning", - "audit_period_ending": "2014-03-18T23:25:56.566228", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.ephemeral.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:25:52.175355", - "message_id": "a7392f3a-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "spawning", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "building", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "building", - "launched_at": "", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "block_device_mapping", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "spawning", - "audit_period_ending": "2014-03-18T23:25:52.167089", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.ephemeral.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:25:51.808652", - "message_id": "aa0e30b6-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "block_device_mapping", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "building", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "building", - "launched_at": "", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "networking", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "block_device_mapping", - "audit_period_ending": "2014-03-18T23:25:51.801777", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.ephemeral.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:25:51.410174", - "message_id": "a9a49854-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "networking", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "building", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "building", - "launched_at": "", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "networking", - "audit_period_ending": "2014-03-18T23:25:51.384818", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.ephemeral.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:25:51.100867", - "message_id": "a98f01c4-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "building", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "None", - "launched_at": "", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "None", - "audit_period_ending": "2014-03-18T23:25:51.097813", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.ephemeral.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:25:50.974440", - "message_id": "a5c44856-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "building", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "None", - "launched_at": "", - "node": "None", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "None", - "audit_period_ending": "2014-03-18T23:25:50.971512", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.ephemeral.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:25:50.799724", - "message_id": "a59ed2e2-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "scheduling", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.create.start", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "message": "", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "building", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "", - "node": "None", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18T23:25:50.000000", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.ephemeral.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:25:50.636376", - "message_id": "a55b684a-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "building", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "building", - "launched_at": "", - "node": "None", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "scheduling", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "None", - "audit_period_ending": "2014-03-18T23:25:50.628023", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.ephemeral.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:25:50.059488", - "message_id": "a47ba854-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "scheduling", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "building", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "None", - "launched_at": "", - "node": "None", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50.030375+00:00", - "image_meta.min_ram": "0", - "host": "api.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "scheduling", - "audit_period_ending": "2014-03-18T23:25:50.055685", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - } - ] -} \ No newline at end of file diff --git a/distil/tests/unit/data/map_fixture_82.json b/distil/tests/unit/data/map_fixture_82.json deleted file mode 100644 index 3bab435..0000000 --- a/distil/tests/unit/data/map_fixture_82.json +++ /dev/null @@ -1,652 +0,0 @@ -{ - "http://localhost:8777/v2/meters/disk.read.bytes?q.field=resource_id&q.value=f2bbc7d1-b167-4065-ad21-7a2f550dde4b": [ - { - "counter_name": "disk.read.bytes", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:59:58", - "message_id": "69223f66-aef9-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4344832.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "42", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.nano", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "64", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "64", - "instance_type": "42", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "disk.read.bytes", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:58:58", - "message_id": "451d815c-aef9-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4344832.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "42", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.nano", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "64", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "64", - "instance_type": "42", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "disk.read.bytes", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:57:58", - "message_id": "2161a3e2-aef9-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4344832.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "42", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.nano", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "64", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "64", - "instance_type": "42", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "disk.read.bytes", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:56:58", - "message_id": "fda15858-aef8-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4344832.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "42", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.nano", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "64", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "64", - "instance_type": "42", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "disk.read.bytes", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:39:57", - "message_id": "9cfb03de-aef6-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4592640.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "84", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.micro", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "128", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "128", - "instance_type": "84", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "disk.read.bytes", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:38:56", - "message_id": "7922ef8a-aef6-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4592640.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "84", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.micro", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "128", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "128", - "instance_type": "84", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "disk.read.bytes", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:37:56", - "message_id": "55668034-aef6-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4592640.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "84", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.micro", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "128", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "128", - "instance_type": "84", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "disk.read.bytes", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:36:56", - "message_id": "31a34844-aef6-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4592640.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "84", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.micro", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "128", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "128", - "instance_type": "84", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "disk.read.bytes", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:35:56", - "message_id": "0dd7fa7c-aef6-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4592640.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "84", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.micro", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "128", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "128", - "instance_type": "84", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "disk.read.bytes", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:34:56", - "message_id": "e9f7eefa-aef5-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4592640.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "84", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.micro", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "128", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "128", - "instance_type": "84", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "disk.read.bytes", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:33:56", - "message_id": "c62ac65a-aef5-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4592640.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "84", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.micro", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "128", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "128", - "instance_type": "84", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "disk.read.bytes", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:32:56", - "message_id": "a272e49a-aef5-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4592640.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "84", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.micro", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "128", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "128", - "instance_type": "84", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "disk.read.bytes", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:31:56", - "message_id": "7e96b60a-aef5-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4592640.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "84", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.micro", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "128", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "128", - "instance_type": "84", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "disk.read.bytes", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:30:56", - "message_id": "5ae98cdc-aef5-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4592640.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "84", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.micro", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "128", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "128", - "instance_type": "84", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "disk.read.bytes", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:29:56", - "message_id": "36c7c2b0-aef5-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4592640.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "84", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.micro", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "128", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "128", - "instance_type": "84", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "disk.read.bytes", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:28:56", - "message_id": "1323e5e6-aef5-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4592640.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "84", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.micro", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "128", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "128", - "instance_type": "84", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "disk.read.bytes", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:27:56", - "message_id": "ef9a6bea-aef4-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 4194304.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "84", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.micro", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "128", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "128", - "instance_type": "84", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "disk.read.bytes", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:55", - "message_id": "cb151ed2-aef4-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 3952640.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "84", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.micro", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "128", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "128", - "instance_type": "84", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "cumulative" - } - ] -} \ No newline at end of file diff --git a/distil/tests/unit/data/map_fixture_83.json b/distil/tests/unit/data/map_fixture_83.json deleted file mode 100644 index 6847a8d..0000000 --- a/distil/tests/unit/data/map_fixture_83.json +++ /dev/null @@ -1,652 +0,0 @@ -{ - "http://localhost:8777/v2/meters/disk.read.requests?q.field=resource_id&q.value=f2bbc7d1-b167-4065-ad21-7a2f550dde4b": [ - { - "counter_name": "disk.read.requests", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:59:58", - "message_id": "690bbafc-aef9-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 467.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "42", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.nano", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "64", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "64", - "instance_type": "42", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "disk.read.requests", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:58:57", - "message_id": "450c727c-aef9-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 467.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "42", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.nano", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "64", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "64", - "instance_type": "42", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "disk.read.requests", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:57:58", - "message_id": "214fd022-aef9-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 467.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "42", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.nano", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "64", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "64", - "instance_type": "42", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "disk.read.requests", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:56:58", - "message_id": "fd8f7480-aef8-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 467.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "42", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.nano", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "64", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "64", - "instance_type": "42", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "disk.read.requests", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:39:56", - "message_id": "9cea68d0-aef6-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 349.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "84", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.micro", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "128", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "128", - "instance_type": "84", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "disk.read.requests", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:38:56", - "message_id": "790faa06-aef6-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 349.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "84", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.micro", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "128", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "128", - "instance_type": "84", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "disk.read.requests", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:37:56", - "message_id": "5554b7fa-aef6-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 349.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "84", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.micro", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "128", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "128", - "instance_type": "84", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "disk.read.requests", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:36:56", - "message_id": "3190cb9c-aef6-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 349.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "84", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.micro", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "128", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "128", - "instance_type": "84", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "disk.read.requests", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:35:56", - "message_id": "0dc72846-aef6-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 349.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "84", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.micro", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "128", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "128", - "instance_type": "84", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "disk.read.requests", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:34:56", - "message_id": "e9e5e5ac-aef5-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 349.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "84", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.micro", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "128", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "128", - "instance_type": "84", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "disk.read.requests", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:33:56", - "message_id": "c617d2fc-aef5-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 349.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "84", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.micro", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "128", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "128", - "instance_type": "84", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "disk.read.requests", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:32:56", - "message_id": "a2607a6c-aef5-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 349.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "84", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.micro", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "128", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "128", - "instance_type": "84", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "disk.read.requests", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:31:56", - "message_id": "7e859fb4-aef5-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 349.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "84", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.micro", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "128", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "128", - "instance_type": "84", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "disk.read.requests", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:30:56", - "message_id": "5ad72c7c-aef5-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 349.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "84", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.micro", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "128", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "128", - "instance_type": "84", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "disk.read.requests", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:29:55", - "message_id": "36b5dc8a-aef5-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 349.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "84", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.micro", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "128", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "128", - "instance_type": "84", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "disk.read.requests", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:28:56", - "message_id": "13129f52-aef5-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 349.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "84", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.micro", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "128", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "128", - "instance_type": "84", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "disk.read.requests", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:27:56", - "message_id": "ef7af90e-aef4-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 318.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "84", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.micro", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "128", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "128", - "instance_type": "84", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "disk.read.requests", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:55", - "message_id": "caff56c4-aef4-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 294.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "84", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.micro", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "128", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "128", - "instance_type": "84", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "cumulative" - } - ] -} \ No newline at end of file diff --git a/distil/tests/unit/data/map_fixture_84.json b/distil/tests/unit/data/map_fixture_84.json deleted file mode 100644 index ef7aa99..0000000 --- a/distil/tests/unit/data/map_fixture_84.json +++ /dev/null @@ -1,2763 +0,0 @@ -{ - "http://localhost:8777/v2/meters/disk.root.size?q.field=resource_id&q.value=f2bbc7d1-b167-4065-ad21-7a2f550dde4b": [ - { - "counter_name": "disk.root.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-19T00:00:12.155033", - "message_id": "7153d10e-aef9-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.exists", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:51:10.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18 23:00:00", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18T23:25:50.000000", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "audit_period_ending": "2014-03-19 00:00:00", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.root.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:51:16.375547", - "message_id": "323dd06a-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.resize.confirm.end", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:51:10.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50+00:00", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.root.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:51:16.346975", - "message_id": "32270b0a-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "resized", - "launched_at": "2014-03-18T23:51:10.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "None", - "audit_period_ending": "2014-03-18T23:51:16.342714", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.root.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:51:14.778337", - "message_id": "318693aa-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "resized", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "None", - "launched_at": "2014-03-18T23:51:10.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "None", - "audit_period_ending": "2014-03-18T23:51:14.765324", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.root.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:51:14.551624", - "message_id": "316b18f0-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.resize.confirm.start", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "resized", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:51:10.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50+00:00", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.root.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:51:10.406617", - "message_id": "2ea5fa5e-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.finish_resize.end", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "resized", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:51:10.252738", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50+00:00", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.root.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:51:10.379488", - "message_id": "2eb4a428-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "resized", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "active", - "launched_at": "2014-03-18T23:51:10.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "resize_finish", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "None", - "audit_period_ending": "2014-03-18T23:51:10.370224", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.root.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:51:07.330097", - "message_id": "2cda0274-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_finish", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "None", - "launched_at": "2014-03-18T23:26:36.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "resize_finish", - "audit_period_ending": "2014-03-18T23:51:07.318203", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.root.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:51:06.595811", - "message_id": "2c585daa-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_finish", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.finish_resize.start", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:26:36.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50+00:00", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.root.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:51:06.549996", - "message_id": "2cd4df74-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_finish", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "active", - "launched_at": "2014-03-18T23:26:36.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "resize_migrated", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "resize_finish", - "audit_period_ending": "2014-03-18T23:51:06.540920", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.root.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:51:04.974308", - "message_id": "2bc203f0-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_migrated", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "None", - "launched_at": "2014-03-18T23:26:36.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "resize_migrated", - "audit_period_ending": "2014-03-18T23:51:04.970426", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.root.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:51:04.821606", - "message_id": "2b915c32-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_migrated", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.resize.end", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "7", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:26:36.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50+00:00", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "128", - "instance_type": "m1.micro", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "84" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.root.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:51:04.776805", - "message_id": "2b38ef70-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_migrated", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "7", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "active", - "launched_at": "2014-03-18T23:26:36.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "resize_migrating", - "memory_mb": "128", - "instance_type": "m1.micro", - "vcpus": "1", - "architecture": "None", - "new_task_state": "resize_migrated", - "audit_period_ending": "2014-03-18T23:51:04.773290", - "os_type": "None", - "instance_flavor_id": "84" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.root.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:51:03.177935", - "message_id": "2a41c920-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_migrating", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.resize.start", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "7", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:26:36.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50+00:00", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "128", - "instance_type": "m1.micro", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "84" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.root.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:51:03.154086", - "message_id": "2a7d2740-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_migrating", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "7", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "active", - "launched_at": "2014-03-18T23:26:36.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "resize_prep", - "memory_mb": "128", - "instance_type": "m1.micro", - "vcpus": "1", - "architecture": "None", - "new_task_state": "resize_migrating", - "audit_period_ending": "2014-03-18T23:51:03.144127", - "os_type": "None", - "instance_flavor_id": "84" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.root.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:51:02.454054", - "message_id": "2a76bb4e-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_prep", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.resize.prep.end", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "7", - "new_instance_type": "m1.nano", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:26:36.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "new_instance_type_id": "6", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50+00:00", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "128", - "instance_type": "m1.micro", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "84" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.root.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:51:02.287353", - "message_id": "2aa626e0-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_prep", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "7", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "None", - "launched_at": "2014-03-18T23:26:36.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "128", - "instance_type": "m1.micro", - "vcpus": "1", - "architecture": "None", - "new_task_state": "resize_prep", - "audit_period_ending": "2014-03-18T23:51:02.277584", - "os_type": "None", - "instance_flavor_id": "84" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.root.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:51:02.105639", - "message_id": "29f73c20-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_prep", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.resize.prep.start", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "7", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:26:36.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50+00:00", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "128", - "instance_type": "m1.micro", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "84" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.root.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:51:02.079858", - "message_id": "29f90fe6-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_prep", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.exists", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "7", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:26:36.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18 23:00:00", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18T23:25:50.000000", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "memory_mb": "128", - "instance_type": "m1.micro", - "vcpus": "1", - "architecture": "None", - "audit_period_ending": "2014-03-18 23:51:02.075761", - "os_type": "None", - "instance_flavor_id": "84" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.root.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:51:01.796399", - "message_id": "2979173c-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_prep", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "7", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "active", - "launched_at": "2014-03-18T23:26:36.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "128", - "instance_type": "m1.micro", - "vcpus": "1", - "architecture": "None", - "new_task_state": "resize_prep", - "audit_period_ending": "2014-03-18T23:51:01.792434", - "os_type": "None", - "instance_flavor_id": "84" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.root.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:42.511562", - "message_id": "c3da0c36-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.resize.confirm.end", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "7", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:26:36.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50+00:00", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "128", - "instance_type": "m1.micro", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "84" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.root.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:42.477369", - "message_id": "c3d4c6fe-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "7", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "resized", - "launched_at": "2014-03-18T23:26:36.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "128", - "instance_type": "m1.micro", - "vcpus": "1", - "architecture": "None", - "new_task_state": "None", - "audit_period_ending": "2014-03-18T23:26:42.470479", - "os_type": "None", - "instance_flavor_id": "84" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.root.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:41.444948", - "message_id": "c30fe91a-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "7", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "resized", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "None", - "launched_at": "2014-03-18T23:26:36.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "128", - "instance_type": "m1.micro", - "vcpus": "1", - "architecture": "None", - "new_task_state": "None", - "audit_period_ending": "2014-03-18T23:26:41.433938", - "os_type": "None", - "instance_flavor_id": "84" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.root.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:41.215808", - "message_id": "c2ee8540-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.resize.confirm.start", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "7", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "resized", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:26:36.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50+00:00", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "128", - "instance_type": "m1.micro", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "84" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.root.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:36.660962", - "message_id": "c00f058e-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.finish_resize.end", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "7", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "resized", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:26:36.508445", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50+00:00", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "128", - "instance_type": "m1.micro", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "84" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.root.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:36.641519", - "message_id": "c007ecfe-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "7", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "resized", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "active", - "launched_at": "2014-03-18T23:26:36.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "resize_finish", - "memory_mb": "128", - "instance_type": "m1.micro", - "vcpus": "1", - "architecture": "None", - "new_task_state": "None", - "audit_period_ending": "2014-03-18T23:26:36.635923", - "os_type": "None", - "instance_flavor_id": "84" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.root.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:33.644730", - "message_id": "bec284c6-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_finish", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "7", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "None", - "launched_at": "2014-03-18T23:26:03.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "128", - "instance_type": "m1.micro", - "vcpus": "1", - "architecture": "None", - "new_task_state": "resize_finish", - "audit_period_ending": "2014-03-18T23:26:33.629158", - "os_type": "None", - "instance_flavor_id": "84" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.root.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:32.978311", - "message_id": "bea611f6-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_finish", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.finish_resize.start", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "7", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:26:03.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50+00:00", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "128", - "instance_type": "m1.micro", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "84" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.root.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:32.923371", - "message_id": "be3c56b2-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_finish", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "7", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "active", - "launched_at": "2014-03-18T23:26:03.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "resize_migrated", - "memory_mb": "128", - "instance_type": "m1.micro", - "vcpus": "1", - "architecture": "None", - "new_task_state": "resize_finish", - "audit_period_ending": "2014-03-18T23:26:32.912559", - "os_type": "None", - "instance_flavor_id": "84" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.root.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:30.756963", - "message_id": "bd68da58-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_migrated", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "7", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "None", - "launched_at": "2014-03-18T23:26:03.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "128", - "instance_type": "m1.micro", - "vcpus": "1", - "architecture": "None", - "new_task_state": "resize_migrated", - "audit_period_ending": "2014-03-18T23:26:30.736480", - "os_type": "None", - "instance_flavor_id": "84" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.root.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:30.581708", - "message_id": "bd5b9186-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_migrated", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.resize.end", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:26:03.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50+00:00", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.root.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:30.541581", - "message_id": "bc6c4504-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_migrated", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "active", - "launched_at": "2014-03-18T23:26:03.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "resize_migrating", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "resize_migrated", - "audit_period_ending": "2014-03-18T23:26:30.538760", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.root.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:29.062264", - "message_id": "bbf5df22-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_migrating", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.resize.start", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:26:03.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50+00:00", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.root.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:29.023231", - "message_id": "bbeaef5e-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_migrating", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "active", - "launched_at": "2014-03-18T23:26:03.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "resize_prep", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "resize_migrating", - "audit_period_ending": "2014-03-18T23:26:29.012815", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.root.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:27.992426", - "message_id": "bbca867e-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_prep", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.resize.prep.end", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "new_instance_type": "m1.micro", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:26:03.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "new_instance_type_id": "7", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50+00:00", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.root.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:27.832751", - "message_id": "bb9908ba-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_prep", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "None", - "launched_at": "2014-03-18T23:26:03.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "resize_prep", - "audit_period_ending": "2014-03-18T23:26:27.827241", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.root.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:27.649599", - "message_id": "bb9c7d2e-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_prep", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.resize.prep.start", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:26:03.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50+00:00", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.root.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:27.624655", - "message_id": "bb5a8c5c-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_prep", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.exists", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:26:03.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18 23:00:00", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18T23:25:50.000000", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "audit_period_ending": "2014-03-18 23:26:27.618602", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.root.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:27.390614", - "message_id": "ba9aea5a-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_prep", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "active", - "launched_at": "2014-03-18T23:26:03.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "resize_prep", - "audit_period_ending": "2014-03-18T23:26:27.387182", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.root.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:03.435289", - "message_id": "acc618b4-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.create.end", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "message": "Success", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:26:03.116480", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18T23:25:50.000000", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.root.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:03.304543", - "message_id": "acb43478-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "building", - "launched_at": "2014-03-18T23:26:03.116480", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "spawning", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "None", - "audit_period_ending": "2014-03-18T23:26:03.283717", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.root.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:25:56.576910", - "message_id": "a89344c4-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "spawning", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "building", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "None", - "launched_at": "", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "spawning", - "audit_period_ending": "2014-03-18T23:25:56.566228", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.root.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:25:52.175355", - "message_id": "a73b8c3a-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "spawning", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "building", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "building", - "launched_at": "", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "block_device_mapping", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "spawning", - "audit_period_ending": "2014-03-18T23:25:52.167089", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.root.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:25:51.808652", - "message_id": "aa1cd7ba-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "block_device_mapping", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "building", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "building", - "launched_at": "", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "networking", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "block_device_mapping", - "audit_period_ending": "2014-03-18T23:25:51.801777", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.root.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:25:51.410174", - "message_id": "a9f08a02-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "networking", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "building", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "building", - "launched_at": "", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "networking", - "audit_period_ending": "2014-03-18T23:25:51.384818", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.root.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:25:51.100867", - "message_id": "a997077a-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "building", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "None", - "launched_at": "", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "None", - "audit_period_ending": "2014-03-18T23:25:51.097813", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.root.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:25:50.974440", - "message_id": "a5c67bb2-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "building", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "None", - "launched_at": "", - "node": "None", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "None", - "audit_period_ending": "2014-03-18T23:25:50.971512", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.root.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:25:50.799724", - "message_id": "a652e25a-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "scheduling", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.create.start", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "message": "", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "building", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "", - "node": "None", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18T23:25:50.000000", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.root.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:25:50.636376", - "message_id": "a59befdc-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "building", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "building", - "launched_at": "", - "node": "None", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "scheduling", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "None", - "audit_period_ending": "2014-03-18T23:25:50.628023", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "disk.root.size", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:25:50.059488", - "message_id": "a48953b4-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "GB", - "counter_volume": 0.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "scheduling", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "building", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "None", - "launched_at": "", - "node": "None", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50.030375+00:00", - "image_meta.min_ram": "0", - "host": "api.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "scheduling", - "audit_period_ending": "2014-03-18T23:25:50.055685", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - } - ] -} \ No newline at end of file diff --git a/distil/tests/unit/data/map_fixture_85.json b/distil/tests/unit/data/map_fixture_85.json deleted file mode 100644 index 2b8d32e..0000000 --- a/distil/tests/unit/data/map_fixture_85.json +++ /dev/null @@ -1,652 +0,0 @@ -{ - "http://localhost:8777/v2/meters/disk.write.bytes?q.field=resource_id&q.value=f2bbc7d1-b167-4065-ad21-7a2f550dde4b": [ - { - "counter_name": "disk.write.bytes", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:59:58", - "message_id": "6923d128-aef9-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 240640.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "42", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.nano", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "64", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "64", - "instance_type": "42", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "disk.write.bytes", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:58:58", - "message_id": "451e95ec-aef9-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 240640.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "42", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.nano", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "64", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "64", - "instance_type": "42", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "disk.write.bytes", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:57:58", - "message_id": "2162dff0-aef9-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 240640.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "42", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.nano", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "64", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "64", - "instance_type": "42", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "disk.write.bytes", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:56:58", - "message_id": "fda2a24e-aef8-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 240640.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "42", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.nano", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "64", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "64", - "instance_type": "42", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "disk.write.bytes", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:39:57", - "message_id": "9cfce622-aef6-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 390144.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "84", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.micro", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "128", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "128", - "instance_type": "84", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "disk.write.bytes", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:38:56", - "message_id": "792459ce-aef6-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 390144.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "84", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.micro", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "128", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "128", - "instance_type": "84", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "disk.write.bytes", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:37:56", - "message_id": "5567cbb0-aef6-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 390144.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "84", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.micro", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "128", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "128", - "instance_type": "84", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "disk.write.bytes", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:36:56", - "message_id": "31a49532-aef6-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 390144.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "84", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.micro", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "128", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "128", - "instance_type": "84", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "disk.write.bytes", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:35:56", - "message_id": "0dd93cde-aef6-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 390144.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "84", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.micro", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "128", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "128", - "instance_type": "84", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "disk.write.bytes", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:34:56", - "message_id": "e9f93d6e-aef5-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 390144.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "84", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.micro", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "128", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "128", - "instance_type": "84", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "disk.write.bytes", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:33:56", - "message_id": "c62c01a0-aef5-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 390144.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "84", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.micro", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "128", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "128", - "instance_type": "84", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "disk.write.bytes", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:32:56", - "message_id": "a274221a-aef5-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 390144.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "84", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.micro", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "128", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "128", - "instance_type": "84", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "disk.write.bytes", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:31:56", - "message_id": "7e97e836-aef5-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 390144.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "84", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.micro", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "128", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "128", - "instance_type": "84", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "disk.write.bytes", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:30:56", - "message_id": "5aeab882-aef5-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 390144.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "84", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.micro", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "128", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "128", - "instance_type": "84", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "disk.write.bytes", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:29:56", - "message_id": "36c959a4-aef5-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 390144.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "84", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.micro", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "128", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "128", - "instance_type": "84", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "disk.write.bytes", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:28:56", - "message_id": "1326a9e8-aef5-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 390144.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "84", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.micro", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "128", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "128", - "instance_type": "84", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "disk.write.bytes", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:27:56", - "message_id": "ef9be538-aef4-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 288768.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "84", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.micro", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "128", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "128", - "instance_type": "84", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "disk.write.bytes", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:55", - "message_id": "cb173032-aef4-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 131072.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "84", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.micro", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "128", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "128", - "instance_type": "84", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "cumulative" - } - ] -} \ No newline at end of file diff --git a/distil/tests/unit/data/map_fixture_86.json b/distil/tests/unit/data/map_fixture_86.json deleted file mode 100644 index 7b713f8..0000000 --- a/distil/tests/unit/data/map_fixture_86.json +++ /dev/null @@ -1,652 +0,0 @@ -{ - "http://localhost:8777/v2/meters/disk.write.requests?q.field=resource_id&q.value=f2bbc7d1-b167-4065-ad21-7a2f550dde4b": [ - { - "counter_name": "disk.write.requests", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:59:58", - "message_id": "6924858c-aef9-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 97.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "42", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.nano", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "64", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "64", - "instance_type": "42", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "disk.write.requests", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:58:58", - "message_id": "451f26a6-aef9-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 97.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "42", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.nano", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "64", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "64", - "instance_type": "42", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "disk.write.requests", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:57:58", - "message_id": "21637df2-aef9-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 97.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "42", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.nano", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "64", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "64", - "instance_type": "42", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "disk.write.requests", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:56:58", - "message_id": "fda33c9a-aef8-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 97.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "42", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.nano", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "64", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "64", - "instance_type": "42", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "disk.write.requests", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:39:57", - "message_id": "9cfd85d2-aef6-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 146.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "84", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.micro", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "128", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "128", - "instance_type": "84", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "disk.write.requests", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:38:56", - "message_id": "7924f884-aef6-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 146.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "84", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.micro", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "128", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "128", - "instance_type": "84", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "disk.write.requests", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:37:56", - "message_id": "55685b2a-aef6-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 146.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "84", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.micro", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "128", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "128", - "instance_type": "84", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "disk.write.requests", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:36:56", - "message_id": "31a52aec-aef6-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 146.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "84", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.micro", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "128", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "128", - "instance_type": "84", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "disk.write.requests", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:35:56", - "message_id": "0dd9da4a-aef6-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 146.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "84", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.micro", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "128", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "128", - "instance_type": "84", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "disk.write.requests", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:34:56", - "message_id": "e9f9c784-aef5-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 146.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "84", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.micro", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "128", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "128", - "instance_type": "84", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "disk.write.requests", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:33:56", - "message_id": "c62c9728-aef5-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 146.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "84", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.micro", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "128", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "128", - "instance_type": "84", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "disk.write.requests", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:32:56", - "message_id": "a274adde-aef5-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 146.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "84", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.micro", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "128", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "128", - "instance_type": "84", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "disk.write.requests", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:31:56", - "message_id": "7e987670-aef5-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 146.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "84", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.micro", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "128", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "128", - "instance_type": "84", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "disk.write.requests", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:30:56", - "message_id": "5aeb31e0-aef5-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 146.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "84", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.micro", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "128", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "128", - "instance_type": "84", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "disk.write.requests", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:29:56", - "message_id": "36ca17ea-aef5-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 146.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "84", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.micro", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "128", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "128", - "instance_type": "84", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "disk.write.requests", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:28:56", - "message_id": "132746d2-aef5-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 146.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "84", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.micro", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "128", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "128", - "instance_type": "84", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "disk.write.requests", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:27:56", - "message_id": "ef9c716a-aef4-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 109.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "84", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.micro", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "128", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "128", - "instance_type": "84", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "disk.write.requests", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:55", - "message_id": "cb1814f2-aef4-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "request", - "counter_volume": 41.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "84", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.micro", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "128", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "128", - "instance_type": "84", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "cumulative" - } - ] -} \ No newline at end of file diff --git a/distil/tests/unit/data/map_fixture_87.json b/distil/tests/unit/data/map_fixture_87.json deleted file mode 100644 index b89b705..0000000 --- a/distil/tests/unit/data/map_fixture_87.json +++ /dev/null @@ -1,1370 +0,0 @@ -{ - "http://localhost:8777/v2/meters/flavor?q.field=resource_id&q.value=f2bbc7d1-b167-4065-ad21-7a2f550dde4b": [ - { - "counter_name": "flavor", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:59:58", - "message_id": "690c751e-aef9-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "flavor.id", - "counter_volume": 42.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "42", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.nano", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "64", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "64", - "instance_type": "42", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "flavor", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:58:57", - "message_id": "450d1484-aef9-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "flavor.id", - "counter_volume": 42.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "42", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.nano", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "64", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "64", - "instance_type": "42", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "flavor", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:57:58", - "message_id": "21508fb2-aef9-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "flavor.id", - "counter_volume": 42.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "42", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.nano", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "64", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "64", - "instance_type": "42", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "flavor", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:56:58", - "message_id": "fd9084ba-aef8-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "flavor.id", - "counter_volume": 42.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "42", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.nano", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "64", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "64", - "instance_type": "42", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "flavor", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:51:16.375547", - "message_id": "3205bc70-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "flavor.id", - "counter_volume": 42.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.resize.confirm.end", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:51:10.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50+00:00", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "flavor", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:51:14.551624", - "message_id": "30e63d9c-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "flavor.id", - "counter_volume": 42.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.resize.confirm.start", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "resized", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:51:10.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50+00:00", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "flavor", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:51:04.821606", - "message_id": "2b187696-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "flavor.id", - "counter_volume": 84.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_migrated", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.resize.end", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "7", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:26:36.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50+00:00", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "128", - "instance_type": "m1.micro", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "84" - }, - "counter_type": "gauge" - }, - { - "counter_name": "flavor", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:51:03.177935", - "message_id": "2a3bec9e-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "flavor.id", - "counter_volume": 84.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_migrating", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.resize.start", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "7", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:26:36.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50+00:00", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "128", - "instance_type": "m1.micro", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "84" - }, - "counter_type": "gauge" - }, - { - "counter_name": "flavor", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:51:02.454054", - "message_id": "29c3028e-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "flavor.id", - "counter_volume": 84.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_prep", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.resize.prep.end", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "7", - "new_instance_type": "m1.nano", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:26:36.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "new_instance_type_id": "6", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50+00:00", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "128", - "instance_type": "m1.micro", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "84" - }, - "counter_type": "gauge" - }, - { - "counter_name": "flavor", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:51:02.105639", - "message_id": "297c4d3a-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "flavor.id", - "counter_volume": 84.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_prep", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.resize.prep.start", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "7", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:26:36.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50+00:00", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "128", - "instance_type": "m1.micro", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "84" - }, - "counter_type": "gauge" - }, - { - "counter_name": "flavor", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:39:56", - "message_id": "9ceb0d12-aef6-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "flavor.id", - "counter_volume": 84.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "84", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.micro", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "128", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "128", - "instance_type": "84", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "flavor", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:38:56", - "message_id": "7910b04a-aef6-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "flavor.id", - "counter_volume": 84.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "84", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.micro", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "128", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "128", - "instance_type": "84", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "flavor", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:37:56", - "message_id": "5555a78c-aef6-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "flavor.id", - "counter_volume": 84.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "84", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.micro", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "128", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "128", - "instance_type": "84", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "flavor", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:36:56", - "message_id": "31917be6-aef6-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "flavor.id", - "counter_volume": 84.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "84", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.micro", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "128", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "128", - "instance_type": "84", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "flavor", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:35:56", - "message_id": "0dc82868-aef6-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "flavor.id", - "counter_volume": 84.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "84", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.micro", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "128", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "128", - "instance_type": "84", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "flavor", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:34:56", - "message_id": "e9e693d0-aef5-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "flavor.id", - "counter_volume": 84.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "84", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.micro", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "128", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "128", - "instance_type": "84", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "flavor", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:33:56", - "message_id": "c618b5f0-aef5-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "flavor.id", - "counter_volume": 84.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "84", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.micro", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "128", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "128", - "instance_type": "84", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "flavor", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:32:56", - "message_id": "a2613830-aef5-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "flavor.id", - "counter_volume": 84.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "84", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.micro", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "128", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "128", - "instance_type": "84", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "flavor", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:31:56", - "message_id": "7e868ef6-aef5-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "flavor.id", - "counter_volume": 84.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "84", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.micro", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "128", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "128", - "instance_type": "84", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "flavor", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:30:56", - "message_id": "5ad7f7e2-aef5-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "flavor.id", - "counter_volume": 84.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "84", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.micro", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "128", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "128", - "instance_type": "84", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "flavor", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:29:55", - "message_id": "36b68e8c-aef5-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "flavor.id", - "counter_volume": 84.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "84", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.micro", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "128", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "128", - "instance_type": "84", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "flavor", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:28:56", - "message_id": "1313486c-aef5-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "flavor.id", - "counter_volume": 84.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "84", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.micro", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "128", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "128", - "instance_type": "84", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "flavor", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:27:56", - "message_id": "ef7bc280-aef4-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "flavor.id", - "counter_volume": 84.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "84", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.micro", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "128", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "128", - "instance_type": "84", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "flavor", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:55", - "message_id": "cb01d502-aef4-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "flavor.id", - "counter_volume": 84.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "84", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.micro", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "128", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "128", - "instance_type": "84", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "flavor", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:42.511562", - "message_id": "c38767f6-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "flavor.id", - "counter_volume": 84.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.resize.confirm.end", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "7", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:26:36.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50+00:00", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "128", - "instance_type": "m1.micro", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "84" - }, - "counter_type": "gauge" - }, - { - "counter_name": "flavor", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:41.215808", - "message_id": "c2b654a4-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "flavor.id", - "counter_volume": 84.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.resize.confirm.start", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "7", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "resized", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:26:36.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50+00:00", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "128", - "instance_type": "m1.micro", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "84" - }, - "counter_type": "gauge" - }, - { - "counter_name": "flavor", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:30.581708", - "message_id": "bc6e0a6a-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "flavor.id", - "counter_volume": 42.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_migrated", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.resize.end", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:26:03.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50+00:00", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "flavor", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:29.062264", - "message_id": "bb9b67fe-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "flavor.id", - "counter_volume": 42.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_migrating", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.resize.start", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:26:03.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50+00:00", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "flavor", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:27.992426", - "message_id": "bb166bbc-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "flavor.id", - "counter_volume": 42.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_prep", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.resize.prep.end", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "new_instance_type": "m1.micro", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:26:03.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "new_instance_type_id": "7", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50+00:00", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "flavor", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:27.649599", - "message_id": "bac0ce0a-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "flavor.id", - "counter_volume": 42.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_prep", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.resize.prep.start", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:26:03.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50+00:00", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "flavor", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:03.435289", - "message_id": "ac302002-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "flavor.id", - "counter_volume": 42.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.create.end", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "message": "Success", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:26:03.116480", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18T23:25:50.000000", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "flavor", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:25:55", - "message_id": "a765a5e2-aef4-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "flavor.id", - "counter_volume": 42.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "42", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.nano", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "64", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "64", - "instance_type": "42", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - } - ] -} \ No newline at end of file diff --git a/distil/tests/unit/data/map_fixture_88.json b/distil/tests/unit/data/map_fixture_88.json deleted file mode 100644 index 72c3160..0000000 --- a/distil/tests/unit/data/map_fixture_88.json +++ /dev/null @@ -1,3447 +0,0 @@ -{ - "http://localhost:8777/v2/meters/instance?q.field=resource_id&q.value=f2bbc7d1-b167-4065-ad21-7a2f550dde4b": [ - { - "counter_name": "instance", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-19T00:00:12.155033", - "message_id": "714e047c-aef9-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.exists", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:51:10.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18 23:00:00", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18T23:25:50.000000", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "audit_period_ending": "2014-03-19 00:00:00", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:59:58", - "message_id": "690d3814-aef9-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "42", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.nano", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "64", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "64", - "instance_type": "42", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:58:57", - "message_id": "450d9fc6-aef9-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "42", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.nano", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "64", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "64", - "instance_type": "42", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:57:58", - "message_id": "21513016-aef9-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "42", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.nano", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "64", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "64", - "instance_type": "42", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:56:58", - "message_id": "fd912c80-aef8-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "42", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.nano", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "64", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "64", - "instance_type": "42", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:51:16.375547", - "message_id": "320f6694-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.resize.confirm.end", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:51:10.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50+00:00", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:51:16.346975", - "message_id": "31f2a41e-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "resized", - "launched_at": "2014-03-18T23:51:10.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "None", - "audit_period_ending": "2014-03-18T23:51:16.342714", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:51:14.778337", - "message_id": "311da002-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "resized", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "None", - "launched_at": "2014-03-18T23:51:10.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "None", - "audit_period_ending": "2014-03-18T23:51:14.765324", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:51:14.551624", - "message_id": "30f19eb2-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.resize.confirm.start", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "resized", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:51:10.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50+00:00", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:51:10.406617", - "message_id": "2e70ae30-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.finish_resize.end", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "resized", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:51:10.252738", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50+00:00", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:51:10.379488", - "message_id": "2e64c5fc-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "resized", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "active", - "launched_at": "2014-03-18T23:51:10.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "resize_finish", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "None", - "audit_period_ending": "2014-03-18T23:51:10.370224", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:51:07.330097", - "message_id": "2ca8ecfc-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_finish", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "None", - "launched_at": "2014-03-18T23:26:36.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "resize_finish", - "audit_period_ending": "2014-03-18T23:51:07.318203", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:51:06.595811", - "message_id": "2c2832ec-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_finish", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.finish_resize.start", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:26:36.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50+00:00", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:51:06.549996", - "message_id": "2c22c7e4-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_finish", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "active", - "launched_at": "2014-03-18T23:26:36.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "resize_migrated", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "resize_finish", - "audit_period_ending": "2014-03-18T23:51:06.540920", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:51:04.974308", - "message_id": "2b41618c-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_migrated", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "None", - "launched_at": "2014-03-18T23:26:36.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "resize_migrated", - "audit_period_ending": "2014-03-18T23:51:04.970426", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:51:04.821606", - "message_id": "2b2943f4-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_migrated", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.resize.end", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "7", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:26:36.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50+00:00", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "128", - "instance_type": "m1.micro", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "84" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:51:04.776805", - "message_id": "2b08999c-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_migrated", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "7", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "active", - "launched_at": "2014-03-18T23:26:36.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "resize_migrating", - "memory_mb": "128", - "instance_type": "m1.micro", - "vcpus": "1", - "architecture": "None", - "new_task_state": "resize_migrated", - "audit_period_ending": "2014-03-18T23:51:04.773290", - "os_type": "None", - "instance_flavor_id": "84" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:51:03.177935", - "message_id": "2a3d09f8-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_migrating", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.resize.start", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "7", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:26:36.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50+00:00", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "128", - "instance_type": "m1.micro", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "84" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:51:03.154086", - "message_id": "2a4c05d4-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_migrating", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "7", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "active", - "launched_at": "2014-03-18T23:26:36.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "resize_prep", - "memory_mb": "128", - "instance_type": "m1.micro", - "vcpus": "1", - "architecture": "None", - "new_task_state": "resize_migrating", - "audit_period_ending": "2014-03-18T23:51:03.144127", - "os_type": "None", - "instance_flavor_id": "84" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:51:02.454054", - "message_id": "29ec74f2-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_prep", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.resize.prep.end", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "7", - "new_instance_type": "m1.nano", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:26:36.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "new_instance_type_id": "6", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50+00:00", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "128", - "instance_type": "m1.micro", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "84" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:51:02.287353", - "message_id": "29c2637e-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_prep", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "7", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "None", - "launched_at": "2014-03-18T23:26:36.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "128", - "instance_type": "m1.micro", - "vcpus": "1", - "architecture": "None", - "new_task_state": "resize_prep", - "audit_period_ending": "2014-03-18T23:51:02.277584", - "os_type": "None", - "instance_flavor_id": "84" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:51:02.105639", - "message_id": "29aef8de-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_prep", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.resize.prep.start", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "7", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:26:36.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50+00:00", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "128", - "instance_type": "m1.micro", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "84" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:51:02.079858", - "message_id": "299c5dd2-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_prep", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.exists", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "7", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:26:36.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18 23:00:00", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18T23:25:50.000000", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "memory_mb": "128", - "instance_type": "m1.micro", - "vcpus": "1", - "architecture": "None", - "audit_period_ending": "2014-03-18 23:51:02.075761", - "os_type": "None", - "instance_flavor_id": "84" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:51:01.796399", - "message_id": "2941daec-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_prep", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "7", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "active", - "launched_at": "2014-03-18T23:26:36.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "128", - "instance_type": "m1.micro", - "vcpus": "1", - "architecture": "None", - "new_task_state": "resize_prep", - "audit_period_ending": "2014-03-18T23:51:01.792434", - "os_type": "None", - "instance_flavor_id": "84" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:39:56", - "message_id": "9ceba2cc-aef6-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "84", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.micro", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "128", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "128", - "instance_type": "84", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:38:56", - "message_id": "79115176-aef6-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "84", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.micro", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "128", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "128", - "instance_type": "84", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:37:56", - "message_id": "55564cb4-aef6-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "84", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.micro", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "128", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "128", - "instance_type": "84", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:36:56", - "message_id": "3192313a-aef6-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "84", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.micro", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "128", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "128", - "instance_type": "84", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:35:56", - "message_id": "0dc8c7e6-aef6-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "84", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.micro", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "128", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "128", - "instance_type": "84", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:34:56", - "message_id": "e9e73fc4-aef5-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "84", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.micro", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "128", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "128", - "instance_type": "84", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:33:56", - "message_id": "c6196432-aef5-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "84", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.micro", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "128", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "128", - "instance_type": "84", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:32:56", - "message_id": "a261cb60-aef5-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "84", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.micro", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "128", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "128", - "instance_type": "84", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:31:56", - "message_id": "7e875868-aef5-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "84", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.micro", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "128", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "128", - "instance_type": "84", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:30:56", - "message_id": "5ad8882e-aef5-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "84", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.micro", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "128", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "128", - "instance_type": "84", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:29:55", - "message_id": "36b74958-aef5-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "84", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.micro", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "128", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "128", - "instance_type": "84", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:28:56", - "message_id": "1313d8cc-aef5-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "84", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.micro", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "128", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "128", - "instance_type": "84", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:27:56", - "message_id": "ef7ccc20-aef4-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "84", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.micro", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "128", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "128", - "instance_type": "84", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:55", - "message_id": "cb02c5f2-aef4-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "84", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.micro", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "128", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "128", - "instance_type": "84", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:42.511562", - "message_id": "c3985d7c-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.resize.confirm.end", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "7", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:26:36.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50+00:00", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "128", - "instance_type": "m1.micro", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "84" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:42.477369", - "message_id": "c37c3afc-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "7", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "resized", - "launched_at": "2014-03-18T23:26:36.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "128", - "instance_type": "m1.micro", - "vcpus": "1", - "architecture": "None", - "new_task_state": "None", - "audit_period_ending": "2014-03-18T23:26:42.470479", - "os_type": "None", - "instance_flavor_id": "84" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:41.444948", - "message_id": "c2f47ad6-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "7", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "resized", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "None", - "launched_at": "2014-03-18T23:26:36.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "128", - "instance_type": "m1.micro", - "vcpus": "1", - "architecture": "None", - "new_task_state": "None", - "audit_period_ending": "2014-03-18T23:26:41.433938", - "os_type": "None", - "instance_flavor_id": "84" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:41.215808", - "message_id": "c2ce8fb0-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.resize.confirm.start", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "7", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "resized", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:26:36.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50+00:00", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "128", - "instance_type": "m1.micro", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "84" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:36.660962", - "message_id": "c009cc18-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.finish_resize.end", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "7", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "resized", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:26:36.508445", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50+00:00", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "128", - "instance_type": "m1.micro", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "84" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:36.641519", - "message_id": "bff62438-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "7", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "resized", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "active", - "launched_at": "2014-03-18T23:26:36.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "resize_finish", - "memory_mb": "128", - "instance_type": "m1.micro", - "vcpus": "1", - "architecture": "None", - "new_task_state": "None", - "audit_period_ending": "2014-03-18T23:26:36.635923", - "os_type": "None", - "instance_flavor_id": "84" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:33.644730", - "message_id": "be4885f4-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_finish", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "7", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "None", - "launched_at": "2014-03-18T23:26:03.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "128", - "instance_type": "m1.micro", - "vcpus": "1", - "architecture": "None", - "new_task_state": "resize_finish", - "audit_period_ending": "2014-03-18T23:26:33.629158", - "os_type": "None", - "instance_flavor_id": "84" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:32.978311", - "message_id": "bdff1004-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_finish", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.finish_resize.start", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "7", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:26:03.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50+00:00", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "128", - "instance_type": "m1.micro", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "84" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:32.923371", - "message_id": "bdc69274-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_finish", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "7", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "active", - "launched_at": "2014-03-18T23:26:03.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "resize_migrated", - "memory_mb": "128", - "instance_type": "m1.micro", - "vcpus": "1", - "architecture": "None", - "new_task_state": "resize_finish", - "audit_period_ending": "2014-03-18T23:26:32.912559", - "os_type": "None", - "instance_flavor_id": "84" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:30.756963", - "message_id": "bcbd19f2-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_migrated", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "7", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "None", - "launched_at": "2014-03-18T23:26:03.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "128", - "instance_type": "m1.micro", - "vcpus": "1", - "architecture": "None", - "new_task_state": "resize_migrated", - "audit_period_ending": "2014-03-18T23:26:30.736480", - "os_type": "None", - "instance_flavor_id": "84" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:30.581708", - "message_id": "bcaf07e0-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_migrated", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.resize.end", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:26:03.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50+00:00", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:30.541581", - "message_id": "bc5509c0-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_migrated", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "active", - "launched_at": "2014-03-18T23:26:03.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "resize_migrating", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "resize_migrated", - "audit_period_ending": "2014-03-18T23:26:30.538760", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:29.062264", - "message_id": "bbbf46e2-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_migrating", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.resize.start", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:26:03.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50+00:00", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:29.023231", - "message_id": "bb9aa440-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_migrating", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "active", - "launched_at": "2014-03-18T23:26:03.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "resize_prep", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "resize_migrating", - "audit_period_ending": "2014-03-18T23:26:29.012815", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:27.992426", - "message_id": "bb39170c-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_prep", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.resize.prep.end", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "new_instance_type": "m1.micro", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:26:03.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "new_instance_type_id": "7", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50+00:00", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:27.832751", - "message_id": "bada2e18-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_prep", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "None", - "launched_at": "2014-03-18T23:26:03.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "resize_prep", - "audit_period_ending": "2014-03-18T23:26:27.827241", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:27.649599", - "message_id": "badbcc00-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_prep", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.resize.prep.start", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:26:03.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50+00:00", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:27.624655", - "message_id": "ba9e139c-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_prep", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.exists", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:26:03.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18 23:00:00", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18T23:25:50.000000", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "audit_period_ending": "2014-03-18 23:26:27.618602", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:27.390614", - "message_id": "ba7052d6-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_prep", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "active", - "launched_at": "2014-03-18T23:26:03.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "resize_prep", - "audit_period_ending": "2014-03-18T23:26:27.387182", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:03.435289", - "message_id": "ac8fa81a-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.create.end", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "message": "Success", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:26:03.116480", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18T23:25:50.000000", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:03.304543", - "message_id": "ac17b116-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "building", - "launched_at": "2014-03-18T23:26:03.116480", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "spawning", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "None", - "audit_period_ending": "2014-03-18T23:26:03.283717", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:25:56.576910", - "message_id": "a88ed290-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "spawning", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "building", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "None", - "launched_at": "", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "spawning", - "audit_period_ending": "2014-03-18T23:25:56.566228", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:25:55", - "message_id": "a76b6374-aef4-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "42", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.nano", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "64", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "64", - "instance_type": "42", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:25:52.175355", - "message_id": "a7307d86-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "spawning", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "building", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "building", - "launched_at": "", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "block_device_mapping", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "spawning", - "audit_period_ending": "2014-03-18T23:25:52.167089", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:25:51.808652", - "message_id": "a599bdde-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "block_device_mapping", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "building", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "building", - "launched_at": "", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "networking", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "block_device_mapping", - "audit_period_ending": "2014-03-18T23:25:51.801777", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:25:51.410174", - "message_id": "a5548534-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "networking", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "building", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "building", - "launched_at": "", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "networking", - "audit_period_ending": "2014-03-18T23:25:51.384818", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:25:51.100867", - "message_id": "a5173364-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "building", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "None", - "launched_at": "", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "None", - "audit_period_ending": "2014-03-18T23:25:51.097813", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:25:50.974440", - "message_id": "a4e3d6ea-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "building", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "None", - "launched_at": "", - "node": "None", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "None", - "audit_period_ending": "2014-03-18T23:25:50.971512", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:25:50.799724", - "message_id": "a4bdc414-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "scheduling", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.create.start", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "message": "", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "building", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "", - "node": "None", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18T23:25:50.000000", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:25:50.636376", - "message_id": "a4a64500-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "building", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "building", - "launched_at": "", - "node": "None", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "scheduling", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "None", - "audit_period_ending": "2014-03-18T23:25:50.628023", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:25:50.059488", - "message_id": "a434a4b8-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "scheduling", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "building", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "None", - "launched_at": "", - "node": "None", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50.030375+00:00", - "image_meta.min_ram": "0", - "host": "api.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "scheduling", - "audit_period_ending": "2014-03-18T23:25:50.055685", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - } - ] -} \ No newline at end of file diff --git a/distil/tests/unit/data/map_fixture_89.json b/distil/tests/unit/data/map_fixture_89.json deleted file mode 100644 index a7f6e3b..0000000 --- a/distil/tests/unit/data/map_fixture_89.json +++ /dev/null @@ -1,121 +0,0 @@ -{ - "http://localhost:8777/v2/meters/instance.scheduled?q.field=resource_id&q.value=f2bbc7d1-b167-4065-ad21-7a2f550dde4b": [ - { - "counter_name": "instance.scheduled", - "user_id": null, - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:25:50.236008", - "message_id": "a4470716-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "request_spec.image:deleted_at": "None", - "request_spec.instance_properties:ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "request_spec.instance_properties:display_name": "instance1", - "request_spec.instance_properties:locked_by": "None", - "request_spec.instance_properties:system_metadata:instance_type_rxtx_factor": "1.0", - "request_spec.instance_properties:cell_name": "None", - "request_spec.image:id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "request_spec.instance_properties:cleaned": "False", - "request_spec.instance_properties:launched_at": "None", - "request_spec.image:min_ram": "0", - "request_spec.instance_properties:id": "1", - "request_spec.instance_properties:terminated_at": "None", - "request_spec.instance_properties:host": "None", - "request_spec.instance_properties:deleted_at": "None", - "request_spec.instance_properties:system_metadata:instance_type_ephemeral_gb": "0", - "request_spec.instance_type:id": "6", - "request_spec.instance_properties:progress": "0", - "request_spec.instance_properties:hostname": "instance1", - "request_spec.instance_properties:root_gb": "0", - "request_spec.image:created_at": "2014-03-18T21:08:28.000000", - "request_spec.image:updated_at": "2014-03-18T21:08:29.000000", - "request_spec.instance_properties:memory_mb": "64", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "request_spec.instance_properties:default_ephemeral_device": "None", - "request_spec.instance_properties:system_metadata:instance_type_memory_mb": "64", - "request_spec.instance_properties:launched_on": "None", - "request_spec.instance_properties:power_state": "0", - "request_spec.image:properties:kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "request_spec.instance_properties:uuid": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "request_spec.instance_type:vcpus": "1", - "request_spec.image:is_public": "True", - "request_spec.instance_properties:node": "None", - "request_spec.instance_properties:key_name": "None", - "request_spec.instance_properties:vm_state": "building", - "weighted_host.host": "vagrant-ubuntu-precise-64", - "request_spec.instance_type:swap": "0", - "request_spec.image:min_disk": "0", - "request_spec.instance_properties:kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "request_spec.instance_properties:system_metadata:image_base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "request_spec.instance_properties:reservation_id": "r-3y8wximj", - "request_spec.image:properties:ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "request_spec.instance_properties:system_metadata:image_ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "request_spec.instance_properties:launch_index": "0", - "request_spec.instance_properties:system_metadata:image_min_ram": "0", - "request_spec.image:status": "active", - "request_spec.instance_type:root_gb": "0", - "request_spec.instance_properties:locked": "False", - "host": "scheduler.vagrant-ubuntu-precise-64", - "request_spec.instance_properties:system_metadata:image_kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "request_spec.instance_properties:config_drive": "", - "request_spec.instance_properties:info_cache:instance_uuid": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "request_spec.instance_properties:image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "request_spec.instance_properties:user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "request_spec.instance_type:memory_mb": "64", - "request_spec.num_instances": "1", - "request_spec.image:container_format": "ami", - "request_spec.instance_properties:availability_zone": "nova", - "request_spec.instance_properties:system_metadata:instance_type_name": "m1.nano", - "request_spec.image:deleted": "False", - "request_spec.instance_properties:root_device_name": "None", - "request_spec.instance_type:name": "m1.nano", - "request_spec.instance_properties:key_data": "None", - "request_spec.image:name": "cirros-0.3.1-x86_64-uec", - "request_spec.instance_properties:system_metadata:image_disk_format": "ami", - "request_spec.instance_properties:deleted": "False", - "request_spec.image:size": "25165824", - "request_spec.instance_properties:ephemeral_gb": "0", - "request_spec.instance_properties:disable_terminate": "False", - "request_spec.instance_properties:system_metadata:instance_type_root_gb": "0", - "request_spec.instance_properties:auto_disk_config": "False", - "request_spec.image:disk_format": "ami", - "request_spec.instance_properties:system_metadata:instance_type_flavorid": "42", - "request_spec.instance_properties:project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "request_spec.instance_properties:created_at": "2014-03-18T23:25:50.030375", - "request_spec.instance_properties:updated_at": "None", - "request_spec.instance_type:vcpu_weight": "None", - "request_spec.instance_type:flavorid": "42", - "request_spec.instance_type:rxtx_factor": "1.0", - "request_spec.instance_properties:system_metadata:image_container_format": "ami", - "event_type": "scheduler.run_instance.scheduled", - "request_spec.image:checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "request_spec.instance_properties:system_metadata:instance_type_id": "6", - "request_spec.instance_type:ephemeral_gb": "0", - "request_spec.instance_properties:vcpus": "1", - "request_spec.instance_properties:access_ip_v6": "None", - "request_spec.instance_properties:access_ip_v4": "None", - "request_spec.instance_properties:shutdown_terminate": "False", - "request_spec.instance_properties:system_metadata:instance_type_vcpu_weight": "None", - "request_spec.instance_properties:default_swap_device": "None", - "request_spec.instance_properties:vm_mode": "None", - "request_spec.instance_properties:instance_type_id": "6", - "request_spec.instance_properties:name": "instance-00000001", - "request_spec.instance_properties:user_data": "None", - "request_spec.instance_properties:system_metadata:instance_type_vcpus": "1", - "request_spec.instance_properties:architecture": "None", - "request_spec.instance_properties:os_type": "None", - "request_spec.instance_properties:task_state": "scheduling", - "request_spec.instance_properties:system_metadata:instance_type_swap": "0", - "weighted_host.weight": "3442.0", - "request_spec.instance_properties:display_description": "instance1", - "request_spec.image:owner": "7a64220a45c84104ac95258de1a3720a", - "request_spec.instance_properties:scheduled_at": "None", - "request_spec.instance_properties:system_metadata:image_min_disk": "0" - }, - "counter_type": "delta" - } - ] -} \ No newline at end of file diff --git a/distil/tests/unit/data/map_fixture_9.json b/distil/tests/unit/data/map_fixture_9.json deleted file mode 100644 index 831ffe0..0000000 --- a/distil/tests/unit/data/map_fixture_9.json +++ /dev/null @@ -1,48 +0,0 @@ -{ - "http://localhost:8777/v2/meters/image.download?q.field=resource_id&q.value=2c9af0eb-4960-49c2-8c1c-b60de446f212": [ - { - "counter_name": "image.download", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T23:27:50.197792", - "message_id": "ebc6b8de-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "receiver_tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "destination_ip": "10.0.2.15", - "event_type": "image.send", - "bytes_sent": "25165824", - "image_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "host": "vagrant-ubuntu-precise-64", - "receiver_user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "owner_id": "7a64220a45c84104ac95258de1a3720a" - }, - "counter_type": "delta" - }, - { - "counter_name": "image.download", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "timestamp": "2014-03-18T23:25:56.203891", - "message_id": "a889a4a0-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 25165824.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "receiver_tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "destination_ip": "10.0.2.15", - "event_type": "image.send", - "bytes_sent": "25165824", - "image_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "host": "vagrant-ubuntu-precise-64", - "receiver_user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "owner_id": "7a64220a45c84104ac95258de1a3720a" - }, - "counter_type": "delta" - } - ] -} \ No newline at end of file diff --git a/distil/tests/unit/data/map_fixture_90.json b/distil/tests/unit/data/map_fixture_90.json deleted file mode 100644 index b45a0b7..0000000 --- a/distil/tests/unit/data/map_fixture_90.json +++ /dev/null @@ -1,1550 +0,0 @@ -{ - "http://localhost:8777/v2/meters/instance:m1.micro?q.field=resource_id&q.value=f2bbc7d1-b167-4065-ad21-7a2f550dde4b": [ - { - "counter_name": "instance:m1.micro", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:51:04.821606", - "message_id": "2b0b0768-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_migrated", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.resize.end", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "7", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:26:36.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50+00:00", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "128", - "instance_type": "m1.micro", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "84" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance:m1.micro", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:51:04.776805", - "message_id": "2b007e42-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_migrated", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "7", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "active", - "launched_at": "2014-03-18T23:26:36.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "resize_migrating", - "memory_mb": "128", - "instance_type": "m1.micro", - "vcpus": "1", - "architecture": "None", - "new_task_state": "resize_migrated", - "audit_period_ending": "2014-03-18T23:51:04.773290", - "os_type": "None", - "instance_flavor_id": "84" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance:m1.micro", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:51:03.177935", - "message_id": "2a3aee66-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_migrating", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.resize.start", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "7", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:26:36.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50+00:00", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "128", - "instance_type": "m1.micro", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "84" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance:m1.micro", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:51:03.154086", - "message_id": "2a3a58a2-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_migrating", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "7", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "active", - "launched_at": "2014-03-18T23:26:36.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "resize_prep", - "memory_mb": "128", - "instance_type": "m1.micro", - "vcpus": "1", - "architecture": "None", - "new_task_state": "resize_migrating", - "audit_period_ending": "2014-03-18T23:51:03.144127", - "os_type": "None", - "instance_flavor_id": "84" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance:m1.micro", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:51:02.454054", - "message_id": "29a6e540-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_prep", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.resize.prep.end", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "7", - "new_instance_type": "m1.nano", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:26:36.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "new_instance_type_id": "6", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50+00:00", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "128", - "instance_type": "m1.micro", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "84" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance:m1.micro", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:51:02.287353", - "message_id": "299f285a-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_prep", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "7", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "None", - "launched_at": "2014-03-18T23:26:36.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "128", - "instance_type": "m1.micro", - "vcpus": "1", - "architecture": "None", - "new_task_state": "resize_prep", - "audit_period_ending": "2014-03-18T23:51:02.277584", - "os_type": "None", - "instance_flavor_id": "84" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance:m1.micro", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:51:02.105639", - "message_id": "297709ba-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_prep", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.resize.prep.start", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "7", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:26:36.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50+00:00", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "128", - "instance_type": "m1.micro", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "84" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance:m1.micro", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:51:02.079858", - "message_id": "29762afe-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_prep", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.exists", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "7", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:26:36.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18 23:00:00", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18T23:25:50.000000", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "memory_mb": "128", - "instance_type": "m1.micro", - "vcpus": "1", - "architecture": "None", - "audit_period_ending": "2014-03-18 23:51:02.075761", - "os_type": "None", - "instance_flavor_id": "84" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance:m1.micro", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:51:01.796399", - "message_id": "2939e576-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_prep", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "7", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "active", - "launched_at": "2014-03-18T23:26:36.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "128", - "instance_type": "m1.micro", - "vcpus": "1", - "architecture": "None", - "new_task_state": "resize_prep", - "audit_period_ending": "2014-03-18T23:51:01.792434", - "os_type": "None", - "instance_flavor_id": "84" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance:m1.micro", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:39:56", - "message_id": "9cd6f7aa-aef6-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "84", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.micro", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "128", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "128", - "instance_type": "84", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance:m1.micro", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:38:56", - "message_id": "790078ce-aef6-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "84", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.micro", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "128", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "128", - "instance_type": "84", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance:m1.micro", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:37:56", - "message_id": "55448902-aef6-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "84", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.micro", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "128", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "128", - "instance_type": "84", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance:m1.micro", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:36:56", - "message_id": "317e0cdc-aef6-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "84", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.micro", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "128", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "128", - "instance_type": "84", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance:m1.micro", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:35:56", - "message_id": "0db758c6-aef6-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "84", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.micro", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "128", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "128", - "instance_type": "84", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance:m1.micro", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:34:56", - "message_id": "e9d6fbbe-aef5-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "84", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.micro", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "128", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "128", - "instance_type": "84", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance:m1.micro", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:33:56", - "message_id": "c6093760-aef5-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "84", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.micro", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "128", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "128", - "instance_type": "84", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance:m1.micro", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:32:56", - "message_id": "a252340c-aef5-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "84", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.micro", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "128", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "128", - "instance_type": "84", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance:m1.micro", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:31:56", - "message_id": "7e760f40-aef5-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "84", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.micro", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "128", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "128", - "instance_type": "84", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance:m1.micro", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:30:56", - "message_id": "5ac72282-aef5-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "84", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.micro", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "128", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "128", - "instance_type": "84", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance:m1.micro", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:29:55", - "message_id": "36a3ca54-aef5-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "84", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.micro", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "128", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "128", - "instance_type": "84", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance:m1.micro", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:28:56", - "message_id": "13017e70-aef5-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "84", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.micro", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "128", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "128", - "instance_type": "84", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance:m1.micro", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:27:56", - "message_id": "ef5bb666-aef4-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "84", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.micro", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "128", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "128", - "instance_type": "84", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance:m1.micro", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:55", - "message_id": "caee7a8e-aef4-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "84", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.micro", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "128", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "128", - "instance_type": "84", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance:m1.micro", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:42.511562", - "message_id": "c374fb70-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.resize.confirm.end", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "7", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:26:36.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50+00:00", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "128", - "instance_type": "m1.micro", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "84" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance:m1.micro", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:42.477369", - "message_id": "c373c20a-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "7", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "resized", - "launched_at": "2014-03-18T23:26:36.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "128", - "instance_type": "m1.micro", - "vcpus": "1", - "architecture": "None", - "new_task_state": "None", - "audit_period_ending": "2014-03-18T23:26:42.470479", - "os_type": "None", - "instance_flavor_id": "84" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance:m1.micro", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:41.444948", - "message_id": "c2d38056-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "7", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "resized", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "None", - "launched_at": "2014-03-18T23:26:36.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "128", - "instance_type": "m1.micro", - "vcpus": "1", - "architecture": "None", - "new_task_state": "None", - "audit_period_ending": "2014-03-18T23:26:41.433938", - "os_type": "None", - "instance_flavor_id": "84" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance:m1.micro", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:41.215808", - "message_id": "c2a7f1ac-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.resize.confirm.start", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "7", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "resized", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:26:36.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50+00:00", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "128", - "instance_type": "m1.micro", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "84" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance:m1.micro", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:36.660962", - "message_id": "bff3e132-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.finish_resize.end", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "7", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "resized", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:26:36.508445", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50+00:00", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "128", - "instance_type": "m1.micro", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "84" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance:m1.micro", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:36.641519", - "message_id": "bfecf9e4-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "7", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "resized", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "active", - "launched_at": "2014-03-18T23:26:36.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "resize_finish", - "memory_mb": "128", - "instance_type": "m1.micro", - "vcpus": "1", - "architecture": "None", - "new_task_state": "None", - "audit_period_ending": "2014-03-18T23:26:36.635923", - "os_type": "None", - "instance_flavor_id": "84" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance:m1.micro", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:33.644730", - "message_id": "be314966-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_finish", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "7", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "None", - "launched_at": "2014-03-18T23:26:03.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "128", - "instance_type": "m1.micro", - "vcpus": "1", - "architecture": "None", - "new_task_state": "resize_finish", - "audit_period_ending": "2014-03-18T23:26:33.629158", - "os_type": "None", - "instance_flavor_id": "84" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance:m1.micro", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:32.978311", - "message_id": "bdc7cafe-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_finish", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.finish_resize.start", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "7", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:26:03.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50+00:00", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "128", - "instance_type": "m1.micro", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "84" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance:m1.micro", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:32.923371", - "message_id": "bdb74a58-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_finish", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "7", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "active", - "launched_at": "2014-03-18T23:26:03.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "resize_migrated", - "memory_mb": "128", - "instance_type": "m1.micro", - "vcpus": "1", - "architecture": "None", - "new_task_state": "resize_finish", - "audit_period_ending": "2014-03-18T23:26:32.912559", - "os_type": "None", - "instance_flavor_id": "84" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance:m1.micro", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:30.756963", - "message_id": "bc917cb6-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_migrated", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "7", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "None", - "launched_at": "2014-03-18T23:26:03.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "128", - "instance_type": "m1.micro", - "vcpus": "1", - "architecture": "None", - "new_task_state": "resize_migrated", - "audit_period_ending": "2014-03-18T23:26:30.736480", - "os_type": "None", - "instance_flavor_id": "84" - }, - "counter_type": "gauge" - } - ] -} \ No newline at end of file diff --git a/distil/tests/unit/data/map_fixture_91.json b/distil/tests/unit/data/map_fixture_91.json deleted file mode 100644 index 1eb7180..0000000 --- a/distil/tests/unit/data/map_fixture_91.json +++ /dev/null @@ -1,1901 +0,0 @@ -{ - "http://localhost:8777/v2/meters/instance:m1.nano?q.field=resource_id&q.value=f2bbc7d1-b167-4065-ad21-7a2f550dde4b": [ - { - "counter_name": "instance:m1.nano", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-19T00:00:12.155033", - "message_id": "7143f2e8-aef9-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.exists", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:51:10.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18 23:00:00", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18T23:25:50.000000", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "audit_period_ending": "2014-03-19 00:00:00", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance:m1.nano", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:59:58", - "message_id": "68fc70e2-aef9-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "42", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.nano", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "64", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "64", - "instance_type": "42", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance:m1.nano", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:58:57", - "message_id": "44fd6692-aef9-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "42", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.nano", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "64", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "64", - "instance_type": "42", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance:m1.nano", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:57:57", - "message_id": "214048b4-aef9-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "42", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.nano", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "64", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "64", - "instance_type": "42", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance:m1.nano", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:56:57", - "message_id": "fd7da73c-aef8-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "42", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.nano", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "64", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "64", - "instance_type": "42", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance:m1.nano", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:51:16.375547", - "message_id": "31f553bc-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.resize.confirm.end", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:51:10.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50+00:00", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance:m1.nano", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:51:16.346975", - "message_id": "31e64d4a-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "resized", - "launched_at": "2014-03-18T23:51:10.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "None", - "audit_period_ending": "2014-03-18T23:51:16.342714", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance:m1.nano", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:51:14.778337", - "message_id": "310329e8-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "resized", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "None", - "launched_at": "2014-03-18T23:51:10.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "None", - "audit_period_ending": "2014-03-18T23:51:14.765324", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance:m1.nano", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:51:14.551624", - "message_id": "30d4b1e4-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.resize.confirm.start", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "resized", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:51:10.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50+00:00", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance:m1.nano", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:51:10.406617", - "message_id": "2e656912-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.finish_resize.end", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "resized", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:51:10.252738", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50+00:00", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance:m1.nano", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:51:10.379488", - "message_id": "2e578dba-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "resized", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "active", - "launched_at": "2014-03-18T23:51:10.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "resize_finish", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "None", - "audit_period_ending": "2014-03-18T23:51:10.370224", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance:m1.nano", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:51:07.330097", - "message_id": "2c9a8536-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_finish", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "None", - "launched_at": "2014-03-18T23:26:36.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "resize_finish", - "audit_period_ending": "2014-03-18T23:51:07.318203", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance:m1.nano", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:51:06.595811", - "message_id": "2c25f72a-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_finish", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.finish_resize.start", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:26:36.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50+00:00", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance:m1.nano", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:51:06.549996", - "message_id": "2c0f7d88-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_finish", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "active", - "launched_at": "2014-03-18T23:26:36.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "resize_migrated", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "resize_finish", - "audit_period_ending": "2014-03-18T23:51:06.540920", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance:m1.nano", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:51:04.974308", - "message_id": "2b2858b8-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_migrated", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "None", - "launched_at": "2014-03-18T23:26:36.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "resize_migrated", - "audit_period_ending": "2014-03-18T23:51:04.970426", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance:m1.nano", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:30.581708", - "message_id": "bc55e11a-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_migrated", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.resize.end", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:26:03.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50+00:00", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance:m1.nano", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:30.541581", - "message_id": "bc4a305e-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_migrated", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "active", - "launched_at": "2014-03-18T23:26:03.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "resize_migrating", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "resize_migrated", - "audit_period_ending": "2014-03-18T23:26:30.538760", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance:m1.nano", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:29.062264", - "message_id": "bb81b3f4-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_migrating", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.resize.start", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:26:03.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50+00:00", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance:m1.nano", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:29.023231", - "message_id": "bb8133ca-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_migrating", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "active", - "launched_at": "2014-03-18T23:26:03.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "resize_prep", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "resize_migrating", - "audit_period_ending": "2014-03-18T23:26:29.012815", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance:m1.nano", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:27.992426", - "message_id": "badc8dca-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_prep", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.resize.prep.end", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "new_instance_type": "m1.micro", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:26:03.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "new_instance_type_id": "7", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50+00:00", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance:m1.nano", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:27.832751", - "message_id": "babf09b2-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_prep", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "None", - "launched_at": "2014-03-18T23:26:03.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "resize_prep", - "audit_period_ending": "2014-03-18T23:26:27.827241", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance:m1.nano", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:27.649599", - "message_id": "baa53e4c-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_prep", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.resize.prep.start", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:26:03.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50+00:00", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance:m1.nano", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:27.624655", - "message_id": "ba8e018c-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_prep", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.exists", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:26:03.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18 23:00:00", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18T23:25:50.000000", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "audit_period_ending": "2014-03-18 23:26:27.618602", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance:m1.nano", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:27.390614", - "message_id": "ba698064-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_prep", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "active", - "launched_at": "2014-03-18T23:26:03.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "resize_prep", - "audit_period_ending": "2014-03-18T23:26:27.387182", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance:m1.nano", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:03.435289", - "message_id": "ac2b8de4-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.create.end", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "message": "Success", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:26:03.116480", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18T23:25:50.000000", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance:m1.nano", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:03.304543", - "message_id": "ac0f005c-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "building", - "launched_at": "2014-03-18T23:26:03.116480", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "spawning", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "None", - "audit_period_ending": "2014-03-18T23:26:03.283717", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance:m1.nano", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:25:56.576910", - "message_id": "a88d5c4e-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "spawning", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "building", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "None", - "launched_at": "", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "spawning", - "audit_period_ending": "2014-03-18T23:25:56.566228", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance:m1.nano", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:25:55", - "message_id": "a752c512-aef4-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "42", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.nano", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "64", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "64", - "instance_type": "42", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance:m1.nano", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:25:52.175355", - "message_id": "a5b51480-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "spawning", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "building", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "building", - "launched_at": "", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "block_device_mapping", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "spawning", - "audit_period_ending": "2014-03-18T23:25:52.167089", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance:m1.nano", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:25:51.808652", - "message_id": "a557e454-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "block_device_mapping", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "building", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "building", - "launched_at": "", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "networking", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "block_device_mapping", - "audit_period_ending": "2014-03-18T23:25:51.801777", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance:m1.nano", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:25:51.410174", - "message_id": "a513baf4-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "networking", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "building", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "building", - "launched_at": "", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "networking", - "audit_period_ending": "2014-03-18T23:25:51.384818", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance:m1.nano", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:25:51.100867", - "message_id": "a4e474ce-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "building", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "None", - "launched_at": "", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "None", - "audit_period_ending": "2014-03-18T23:25:51.097813", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance:m1.nano", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:25:50.974440", - "message_id": "a4bed516-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "building", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "None", - "launched_at": "", - "node": "None", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "None", - "audit_period_ending": "2014-03-18T23:25:50.971512", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance:m1.nano", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:25:50.799724", - "message_id": "a4a40b50-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "scheduling", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.create.start", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "message": "", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "building", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "", - "node": "None", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18T23:25:50.000000", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance:m1.nano", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:25:50.636376", - "message_id": "a48aa96c-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "building", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "building", - "launched_at": "", - "node": "None", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "scheduling", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "None", - "audit_period_ending": "2014-03-18T23:25:50.628023", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "instance:m1.nano", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:25:50.059488", - "message_id": "a4295ad6-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "instance", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "scheduling", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "building", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "None", - "launched_at": "", - "node": "None", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50.030375+00:00", - "image_meta.min_ram": "0", - "host": "api.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "scheduling", - "audit_period_ending": "2014-03-18T23:25:50.055685", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - } - ] -} \ No newline at end of file diff --git a/distil/tests/unit/data/map_fixture_92.json b/distil/tests/unit/data/map_fixture_92.json deleted file mode 100644 index 5afff7b..0000000 --- a/distil/tests/unit/data/map_fixture_92.json +++ /dev/null @@ -1,2763 +0,0 @@ -{ - "http://localhost:8777/v2/meters/memory?q.field=resource_id&q.value=f2bbc7d1-b167-4065-ad21-7a2f550dde4b": [ - { - "counter_name": "memory", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-19T00:00:12.155033", - "message_id": "7150617c-aef9-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "MB", - "counter_volume": 64.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.exists", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:51:10.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18 23:00:00", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18T23:25:50.000000", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "audit_period_ending": "2014-03-19 00:00:00", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "memory", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:51:16.375547", - "message_id": "322bcdd4-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "MB", - "counter_volume": 64.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.resize.confirm.end", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:51:10.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50+00:00", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "memory", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:51:16.346975", - "message_id": "32140e1a-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "MB", - "counter_volume": 64.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "resized", - "launched_at": "2014-03-18T23:51:10.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "None", - "audit_period_ending": "2014-03-18T23:51:16.342714", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "memory", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:51:14.778337", - "message_id": "315781fa-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "MB", - "counter_volume": 64.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "resized", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "None", - "launched_at": "2014-03-18T23:51:10.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "None", - "audit_period_ending": "2014-03-18T23:51:14.765324", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "memory", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:51:14.551624", - "message_id": "31370272-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "MB", - "counter_volume": 64.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.resize.confirm.start", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "resized", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:51:10.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50+00:00", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "memory", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:51:10.406617", - "message_id": "2e8d158e-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "MB", - "counter_volume": 64.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.finish_resize.end", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "resized", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:51:10.252738", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50+00:00", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "memory", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:51:10.379488", - "message_id": "2e8e10a6-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "MB", - "counter_volume": 64.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "resized", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "active", - "launched_at": "2014-03-18T23:51:10.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "resize_finish", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "None", - "audit_period_ending": "2014-03-18T23:51:10.370224", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "memory", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:51:07.330097", - "message_id": "2cd62140-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "MB", - "counter_volume": 64.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_finish", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "None", - "launched_at": "2014-03-18T23:26:36.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "resize_finish", - "audit_period_ending": "2014-03-18T23:51:07.318203", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "memory", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:51:06.595811", - "message_id": "2c52f5e0-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "MB", - "counter_volume": 64.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_finish", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.finish_resize.start", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:26:36.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50+00:00", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "memory", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:51:06.549996", - "message_id": "2c9b5a4c-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "MB", - "counter_volume": 64.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_finish", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "active", - "launched_at": "2014-03-18T23:26:36.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "resize_migrated", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "resize_finish", - "audit_period_ending": "2014-03-18T23:51:06.540920", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "memory", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:51:04.974308", - "message_id": "2b80c1f6-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "MB", - "counter_volume": 64.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_migrated", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "None", - "launched_at": "2014-03-18T23:26:36.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "resize_migrated", - "audit_period_ending": "2014-03-18T23:51:04.970426", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "memory", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:51:04.821606", - "message_id": "2b688a50-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "MB", - "counter_volume": 128.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_migrated", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.resize.end", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "7", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:26:36.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50+00:00", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "128", - "instance_type": "m1.micro", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "84" - }, - "counter_type": "gauge" - }, - { - "counter_name": "memory", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:51:04.776805", - "message_id": "2b279efa-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "MB", - "counter_volume": 128.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_migrated", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "7", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "active", - "launched_at": "2014-03-18T23:26:36.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "resize_migrating", - "memory_mb": "128", - "instance_type": "m1.micro", - "vcpus": "1", - "architecture": "None", - "new_task_state": "resize_migrated", - "audit_period_ending": "2014-03-18T23:51:04.773290", - "os_type": "None", - "instance_flavor_id": "84" - }, - "counter_type": "gauge" - }, - { - "counter_name": "memory", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:51:03.177935", - "message_id": "2a3fc3a0-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "MB", - "counter_volume": 128.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_migrating", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.resize.start", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "7", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:26:36.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50+00:00", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "128", - "instance_type": "m1.micro", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "84" - }, - "counter_type": "gauge" - }, - { - "counter_name": "memory", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:51:03.154086", - "message_id": "2a7b06e0-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "MB", - "counter_volume": 128.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_migrating", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "7", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "active", - "launched_at": "2014-03-18T23:26:36.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "resize_prep", - "memory_mb": "128", - "instance_type": "m1.micro", - "vcpus": "1", - "architecture": "None", - "new_task_state": "resize_migrating", - "audit_period_ending": "2014-03-18T23:51:03.144127", - "os_type": "None", - "instance_flavor_id": "84" - }, - "counter_type": "gauge" - }, - { - "counter_name": "memory", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:51:02.454054", - "message_id": "2a38d5fe-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "MB", - "counter_volume": 128.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_prep", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.resize.prep.end", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "7", - "new_instance_type": "m1.nano", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:26:36.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "new_instance_type_id": "6", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50+00:00", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "128", - "instance_type": "m1.micro", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "84" - }, - "counter_type": "gauge" - }, - { - "counter_name": "memory", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:51:02.287353", - "message_id": "2a780184-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "MB", - "counter_volume": 128.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_prep", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "7", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "None", - "launched_at": "2014-03-18T23:26:36.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "128", - "instance_type": "m1.micro", - "vcpus": "1", - "architecture": "None", - "new_task_state": "resize_prep", - "audit_period_ending": "2014-03-18T23:51:02.277584", - "os_type": "None", - "instance_flavor_id": "84" - }, - "counter_type": "gauge" - }, - { - "counter_name": "memory", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:51:02.105639", - "message_id": "29d37aec-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "MB", - "counter_volume": 128.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_prep", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.resize.prep.start", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "7", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:26:36.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50+00:00", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "128", - "instance_type": "m1.micro", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "84" - }, - "counter_type": "gauge" - }, - { - "counter_name": "memory", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:51:02.079858", - "message_id": "29d4026e-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "MB", - "counter_volume": 128.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_prep", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.exists", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "7", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:26:36.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18 23:00:00", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18T23:25:50.000000", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "memory_mb": "128", - "instance_type": "m1.micro", - "vcpus": "1", - "architecture": "None", - "audit_period_ending": "2014-03-18 23:51:02.075761", - "os_type": "None", - "instance_flavor_id": "84" - }, - "counter_type": "gauge" - }, - { - "counter_name": "memory", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:51:01.796399", - "message_id": "29549bf0-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "MB", - "counter_volume": 128.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_prep", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "7", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "active", - "launched_at": "2014-03-18T23:26:36.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "128", - "instance_type": "m1.micro", - "vcpus": "1", - "architecture": "None", - "new_task_state": "resize_prep", - "audit_period_ending": "2014-03-18T23:51:01.792434", - "os_type": "None", - "instance_flavor_id": "84" - }, - "counter_type": "gauge" - }, - { - "counter_name": "memory", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:42.511562", - "message_id": "c3c6e32c-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "MB", - "counter_volume": 128.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.resize.confirm.end", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "7", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:26:36.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50+00:00", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "128", - "instance_type": "m1.micro", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "84" - }, - "counter_type": "gauge" - }, - { - "counter_name": "memory", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:42.477369", - "message_id": "c3b29c28-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "MB", - "counter_volume": 128.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "7", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "resized", - "launched_at": "2014-03-18T23:26:36.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "128", - "instance_type": "m1.micro", - "vcpus": "1", - "architecture": "None", - "new_task_state": "None", - "audit_period_ending": "2014-03-18T23:26:42.470479", - "os_type": "None", - "instance_flavor_id": "84" - }, - "counter_type": "gauge" - }, - { - "counter_name": "memory", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:41.444948", - "message_id": "c2f960c8-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "MB", - "counter_volume": 128.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "7", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "resized", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "None", - "launched_at": "2014-03-18T23:26:36.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "128", - "instance_type": "m1.micro", - "vcpus": "1", - "architecture": "None", - "new_task_state": "None", - "audit_period_ending": "2014-03-18T23:26:41.433938", - "os_type": "None", - "instance_flavor_id": "84" - }, - "counter_type": "gauge" - }, - { - "counter_name": "memory", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:41.215808", - "message_id": "c2eb17fc-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "MB", - "counter_volume": 128.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.resize.confirm.start", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "7", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "resized", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:26:36.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50+00:00", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "128", - "instance_type": "m1.micro", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "84" - }, - "counter_type": "gauge" - }, - { - "counter_name": "memory", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:36.660962", - "message_id": "c00cbf4a-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "MB", - "counter_volume": 128.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.finish_resize.end", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "7", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "resized", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:26:36.508445", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50+00:00", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "128", - "instance_type": "m1.micro", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "84" - }, - "counter_type": "gauge" - }, - { - "counter_name": "memory", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:36.641519", - "message_id": "c00599a4-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "MB", - "counter_volume": 128.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "7", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "resized", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "active", - "launched_at": "2014-03-18T23:26:36.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "resize_finish", - "memory_mb": "128", - "instance_type": "m1.micro", - "vcpus": "1", - "architecture": "None", - "new_task_state": "None", - "audit_period_ending": "2014-03-18T23:26:36.635923", - "os_type": "None", - "instance_flavor_id": "84" - }, - "counter_type": "gauge" - }, - { - "counter_name": "memory", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:33.644730", - "message_id": "bea6c204-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "MB", - "counter_volume": 128.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_finish", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "7", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "None", - "launched_at": "2014-03-18T23:26:03.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "128", - "instance_type": "m1.micro", - "vcpus": "1", - "architecture": "None", - "new_task_state": "resize_finish", - "audit_period_ending": "2014-03-18T23:26:33.629158", - "os_type": "None", - "instance_flavor_id": "84" - }, - "counter_type": "gauge" - }, - { - "counter_name": "memory", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:32.978311", - "message_id": "be877804-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "MB", - "counter_volume": 128.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_finish", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.finish_resize.start", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "7", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:26:03.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50+00:00", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "128", - "instance_type": "m1.micro", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "84" - }, - "counter_type": "gauge" - }, - { - "counter_name": "memory", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:32.923371", - "message_id": "bdfa0f8c-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "MB", - "counter_volume": 128.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_finish", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "7", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "active", - "launched_at": "2014-03-18T23:26:03.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "resize_migrated", - "memory_mb": "128", - "instance_type": "m1.micro", - "vcpus": "1", - "architecture": "None", - "new_task_state": "resize_finish", - "audit_period_ending": "2014-03-18T23:26:32.912559", - "os_type": "None", - "instance_flavor_id": "84" - }, - "counter_type": "gauge" - }, - { - "counter_name": "memory", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:30.756963", - "message_id": "bd2c4b4c-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "MB", - "counter_volume": 128.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_migrated", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "7", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "None", - "launched_at": "2014-03-18T23:26:03.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "128", - "instance_type": "m1.micro", - "vcpus": "1", - "architecture": "None", - "new_task_state": "resize_migrated", - "audit_period_ending": "2014-03-18T23:26:30.736480", - "os_type": "None", - "instance_flavor_id": "84" - }, - "counter_type": "gauge" - }, - { - "counter_name": "memory", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:30.581708", - "message_id": "bd0eb0a0-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "MB", - "counter_volume": 64.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_migrated", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.resize.end", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:26:03.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50+00:00", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "memory", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:30.541581", - "message_id": "bc69565a-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "MB", - "counter_volume": 64.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_migrated", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "active", - "launched_at": "2014-03-18T23:26:03.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "resize_migrating", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "resize_migrated", - "audit_period_ending": "2014-03-18T23:26:30.538760", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "memory", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:29.062264", - "message_id": "bbe57948-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "MB", - "counter_volume": 64.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_migrating", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.resize.start", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:26:03.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50+00:00", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "memory", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:29.023231", - "message_id": "bbd003a6-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "MB", - "counter_volume": 64.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_migrating", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "active", - "launched_at": "2014-03-18T23:26:03.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "resize_prep", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "resize_migrating", - "audit_period_ending": "2014-03-18T23:26:29.012815", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "memory", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:27.992426", - "message_id": "bb9bdfa4-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "MB", - "counter_volume": 64.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_prep", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.resize.prep.end", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "new_instance_type": "m1.micro", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:26:03.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "new_instance_type_id": "7", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50+00:00", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "memory", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:27.832751", - "message_id": "bb596a5c-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "MB", - "counter_volume": 64.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_prep", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "None", - "launched_at": "2014-03-18T23:26:03.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "resize_prep", - "audit_period_ending": "2014-03-18T23:26:27.827241", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "memory", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:27.649599", - "message_id": "bb5b5844-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "MB", - "counter_volume": 64.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_prep", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.resize.prep.start", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:26:03.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50+00:00", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "memory", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:27.624655", - "message_id": "bb145b42-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "MB", - "counter_volume": 64.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_prep", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.exists", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:26:03.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18 23:00:00", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18T23:25:50.000000", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "audit_period_ending": "2014-03-18 23:26:27.618602", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "memory", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:27.390614", - "message_id": "ba827308-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "MB", - "counter_volume": 64.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_prep", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "active", - "launched_at": "2014-03-18T23:26:03.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "resize_prep", - "audit_period_ending": "2014-03-18T23:26:27.387182", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "memory", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:03.435289", - "message_id": "acbe5412-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "MB", - "counter_volume": 64.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.create.end", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "message": "Success", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:26:03.116480", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18T23:25:50.000000", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "memory", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:03.304543", - "message_id": "ac8df7fe-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "MB", - "counter_volume": 64.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "building", - "launched_at": "2014-03-18T23:26:03.116480", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "spawning", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "None", - "audit_period_ending": "2014-03-18T23:26:03.283717", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "memory", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:25:56.576910", - "message_id": "a8911a64-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "MB", - "counter_volume": 64.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "spawning", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "building", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "None", - "launched_at": "", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "spawning", - "audit_period_ending": "2014-03-18T23:25:56.566228", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "memory", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:25:52.175355", - "message_id": "a7369e46-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "MB", - "counter_volume": 64.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "spawning", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "building", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "building", - "launched_at": "", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "block_device_mapping", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "spawning", - "audit_period_ending": "2014-03-18T23:25:52.167089", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "memory", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:25:51.808652", - "message_id": "a99f2298-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "MB", - "counter_volume": 64.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "block_device_mapping", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "building", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "building", - "launched_at": "", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "networking", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "block_device_mapping", - "audit_period_ending": "2014-03-18T23:25:51.801777", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "memory", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:25:51.410174", - "message_id": "a8109e34-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "MB", - "counter_volume": 64.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "networking", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "building", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "building", - "launched_at": "", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "networking", - "audit_period_ending": "2014-03-18T23:25:51.384818", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "memory", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:25:51.100867", - "message_id": "a72b3bbe-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "MB", - "counter_volume": 64.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "building", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "None", - "launched_at": "", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "None", - "audit_period_ending": "2014-03-18T23:25:51.097813", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "memory", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:25:50.974440", - "message_id": "a56140d0-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "MB", - "counter_volume": 64.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "building", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "None", - "launched_at": "", - "node": "None", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "None", - "audit_period_ending": "2014-03-18T23:25:50.971512", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "memory", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:25:50.799724", - "message_id": "a5554f00-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "MB", - "counter_volume": 64.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "scheduling", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.create.start", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "message": "", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "building", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "", - "node": "None", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18T23:25:50.000000", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "memory", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:25:50.636376", - "message_id": "a5186856-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "MB", - "counter_volume": 64.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "building", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "building", - "launched_at": "", - "node": "None", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "scheduling", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "None", - "audit_period_ending": "2014-03-18T23:25:50.628023", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "memory", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:25:50.059488", - "message_id": "a46c9170-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "MB", - "counter_volume": 64.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "scheduling", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "building", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "None", - "launched_at": "", - "node": "None", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50.030375+00:00", - "image_meta.min_ram": "0", - "host": "api.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "scheduling", - "audit_period_ending": "2014-03-18T23:25:50.055685", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - } - ] -} \ No newline at end of file diff --git a/distil/tests/unit/data/map_fixture_93.json b/distil/tests/unit/data/map_fixture_93.json deleted file mode 100644 index bc86466..0000000 --- a/distil/tests/unit/data/map_fixture_93.json +++ /dev/null @@ -1,3411 +0,0 @@ -{ - "http://localhost:8777/v2/meters/state?q.field=resource_id&q.value=f2bbc7d1-b167-4065-ad21-7a2f550dde4b": [ - { - "counter_name": "state", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-19T00:00:12.155033", - "message_id": "714fb6fa-aef9-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "state", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.exists", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:51:10.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18 23:00:00", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18T23:25:50.000000", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "audit_period_ending": "2014-03-19 00:00:00", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "state", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:59:58", - "message_id": "693d89d8-aef9-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "state", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "42", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.nano", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "64", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "64", - "instance_type": "42", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "state", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:58:58", - "message_id": "452ff1f2-aef9-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "state", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "42", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.nano", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "64", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "64", - "instance_type": "42", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "state", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:57:58", - "message_id": "217ceeae-aef9-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "state", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "42", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.nano", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "64", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "64", - "instance_type": "42", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "state", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:56:58", - "message_id": "fdbc7818-aef8-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "state", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "42", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.nano", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "64", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "64", - "instance_type": "42", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "state", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:51:16.375547", - "message_id": "322235bc-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "state", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.resize.confirm.end", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:51:10.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50+00:00", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "state", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:51:16.346975", - "message_id": "320a75a8-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "state", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "resized", - "launched_at": "2014-03-18T23:51:10.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "None", - "audit_period_ending": "2014-03-18T23:51:16.342714", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "state", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:51:14.778337", - "message_id": "3139004a-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "state", - "counter_volume": 7.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "resized", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "None", - "launched_at": "2014-03-18T23:51:10.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "None", - "audit_period_ending": "2014-03-18T23:51:14.765324", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "state", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:51:14.551624", - "message_id": "311b88d0-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "state", - "counter_volume": 7.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.resize.confirm.start", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "resized", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:51:10.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50+00:00", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "state", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:51:10.406617", - "message_id": "2e7e9fd6-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "state", - "counter_volume": 7.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.finish_resize.end", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "resized", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:51:10.252738", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50+00:00", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "state", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:51:10.379488", - "message_id": "2e7d9e7e-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "state", - "counter_volume": 7.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "resized", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "active", - "launched_at": "2014-03-18T23:51:10.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "resize_finish", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "None", - "audit_period_ending": "2014-03-18T23:51:10.370224", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "state", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:51:07.330097", - "message_id": "2cd2e44e-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "state", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_finish", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "None", - "launched_at": "2014-03-18T23:26:36.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "resize_finish", - "audit_period_ending": "2014-03-18T23:51:07.318203", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "state", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:51:06.595811", - "message_id": "2c50142e-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "state", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_finish", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.finish_resize.start", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:26:36.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50+00:00", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "state", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:51:06.549996", - "message_id": "2c63b2cc-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "state", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_finish", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "active", - "launched_at": "2014-03-18T23:26:36.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "resize_migrated", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "resize_finish", - "audit_period_ending": "2014-03-18T23:51:06.540920", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "state", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:51:04.974308", - "message_id": "2b5fb678-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "state", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_migrated", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "None", - "launched_at": "2014-03-18T23:26:36.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "resize_migrated", - "audit_period_ending": "2014-03-18T23:51:04.970426", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "state", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:51:04.821606", - "message_id": "2b596692-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "state", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_migrated", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.resize.end", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "7", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:26:36.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50+00:00", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "128", - "instance_type": "m1.micro", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "84" - }, - "counter_type": "gauge" - }, - { - "counter_name": "state", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:51:04.776805", - "message_id": "2b17aacc-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "state", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_migrated", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "7", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "active", - "launched_at": "2014-03-18T23:26:36.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "resize_migrating", - "memory_mb": "128", - "instance_type": "m1.micro", - "vcpus": "1", - "architecture": "None", - "new_task_state": "resize_migrated", - "audit_period_ending": "2014-03-18T23:51:04.773290", - "os_type": "None", - "instance_flavor_id": "84" - }, - "counter_type": "gauge" - }, - { - "counter_name": "state", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:51:03.177935", - "message_id": "2a3f114e-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "state", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_migrating", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.resize.start", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "7", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:26:36.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50+00:00", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "128", - "instance_type": "m1.micro", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "84" - }, - "counter_type": "gauge" - }, - { - "counter_name": "state", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:51:03.154086", - "message_id": "2a7a4944-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "state", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_migrating", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "7", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "active", - "launched_at": "2014-03-18T23:26:36.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "resize_prep", - "memory_mb": "128", - "instance_type": "m1.micro", - "vcpus": "1", - "architecture": "None", - "new_task_state": "resize_migrating", - "audit_period_ending": "2014-03-18T23:51:03.144127", - "os_type": "None", - "instance_flavor_id": "84" - }, - "counter_type": "gauge" - }, - { - "counter_name": "state", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:51:02.454054", - "message_id": "2a052af6-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "state", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_prep", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.resize.prep.end", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "7", - "new_instance_type": "m1.nano", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:26:36.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "new_instance_type_id": "6", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50+00:00", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "128", - "instance_type": "m1.micro", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "84" - }, - "counter_type": "gauge" - }, - { - "counter_name": "state", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:51:02.287353", - "message_id": "2a382258-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "state", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_prep", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "7", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "None", - "launched_at": "2014-03-18T23:26:36.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "128", - "instance_type": "m1.micro", - "vcpus": "1", - "architecture": "None", - "new_task_state": "resize_prep", - "audit_period_ending": "2014-03-18T23:51:02.277584", - "os_type": "None", - "instance_flavor_id": "84" - }, - "counter_type": "gauge" - }, - { - "counter_name": "state", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:51:02.105639", - "message_id": "29c4f21a-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "state", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_prep", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.resize.prep.start", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "7", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:26:36.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50+00:00", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "128", - "instance_type": "m1.micro", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "84" - }, - "counter_type": "gauge" - }, - { - "counter_name": "state", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:51:02.079858", - "message_id": "29c61366-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "state", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_prep", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.exists", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "7", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:26:36.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18 23:00:00", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18T23:25:50.000000", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "memory_mb": "128", - "instance_type": "m1.micro", - "vcpus": "1", - "architecture": "None", - "audit_period_ending": "2014-03-18 23:51:02.075761", - "os_type": "None", - "instance_flavor_id": "84" - }, - "counter_type": "gauge" - }, - { - "counter_name": "state", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:51:01.796399", - "message_id": "29532f68-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "state", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_prep", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "7", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "active", - "launched_at": "2014-03-18T23:26:36.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "128", - "instance_type": "m1.micro", - "vcpus": "1", - "architecture": "None", - "new_task_state": "resize_prep", - "audit_period_ending": "2014-03-18T23:51:01.792434", - "os_type": "None", - "instance_flavor_id": "84" - }, - "counter_type": "gauge" - }, - { - "counter_name": "state", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:39:57", - "message_id": "9d164626-aef6-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "state", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "84", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.micro", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "128", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "128", - "instance_type": "84", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "state", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:38:57", - "message_id": "79378c74-aef6-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "state", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "84", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.micro", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "128", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "128", - "instance_type": "84", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "state", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:37:57", - "message_id": "5578fea8-aef6-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "state", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "84", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.micro", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "128", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "128", - "instance_type": "84", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "state", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:36:57", - "message_id": "31ba5b10-aef6-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "state", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "84", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.micro", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "128", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "128", - "instance_type": "84", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "state", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:35:56", - "message_id": "0dead3f4-aef6-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "state", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "84", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.micro", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "128", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "128", - "instance_type": "84", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "state", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:34:56", - "message_id": "ea0aee10-aef5-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "state", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "84", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.micro", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "128", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "128", - "instance_type": "84", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "state", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:33:56", - "message_id": "c63e0eea-aef5-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "state", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "84", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.micro", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "128", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "128", - "instance_type": "84", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "state", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:32:56", - "message_id": "a284f32e-aef5-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "state", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "84", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.micro", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "128", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "128", - "instance_type": "84", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "state", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:31:56", - "message_id": "7ea97db2-aef5-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "state", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "84", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.micro", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "128", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "128", - "instance_type": "84", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "state", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:30:56", - "message_id": "5afd2a1c-aef5-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "state", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "84", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.micro", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "128", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "128", - "instance_type": "84", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "state", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:29:56", - "message_id": "36dc8fb0-aef5-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "state", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "84", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.micro", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "128", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "128", - "instance_type": "84", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "state", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:28:56", - "message_id": "13385616-aef5-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "state", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "84", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.micro", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "128", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "128", - "instance_type": "84", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "state", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:27:56", - "message_id": "efbf5cd4-aef4-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "state", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "84", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.micro", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "128", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "128", - "instance_type": "84", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "state", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:55", - "message_id": "cb2ad0d8-aef4-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "state", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "ephemeral_gb": "0", - "flavor.vcpus": "1", - "flavor.ephemeral": "0", - "display_name": "instance1", - "flavor.id": "84", - "OS-EXT-AZ:availability_zone": "nova", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "flavor.name": "m1.micro", - "disk_gb": "0", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image.id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.ram": "128", - "host": "157cf3e22312aa33e8b046185e6b47edeab9230f5817617e73230f3c", - "image.name": "cirros-0.3.1-x86_64-uec", - "image_ref_url": "http://10.0.2.15:8774/aacd76e85201469082547632561105bc/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "flavor.disk": "0", - "root_gb": "0", - "name": "instance-00000001", - "memory_mb": "128", - "instance_type": "84", - "vcpus": "1", - "image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212" - }, - "counter_type": "gauge" - }, - { - "counter_name": "state", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:42.511562", - "message_id": "c3ba3ef6-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "state", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.resize.confirm.end", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "7", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:26:36.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50+00:00", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "128", - "instance_type": "m1.micro", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "84" - }, - "counter_type": "gauge" - }, - { - "counter_name": "state", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:42.477369", - "message_id": "c3a86596-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "state", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "7", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "resized", - "launched_at": "2014-03-18T23:26:36.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "128", - "instance_type": "m1.micro", - "vcpus": "1", - "architecture": "None", - "new_task_state": "None", - "audit_period_ending": "2014-03-18T23:26:42.470479", - "os_type": "None", - "instance_flavor_id": "84" - }, - "counter_type": "gauge" - }, - { - "counter_name": "state", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:41.444948", - "message_id": "c2f6f932-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "state", - "counter_volume": 7.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "7", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "resized", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "None", - "launched_at": "2014-03-18T23:26:36.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "128", - "instance_type": "m1.micro", - "vcpus": "1", - "architecture": "None", - "new_task_state": "None", - "audit_period_ending": "2014-03-18T23:26:41.433938", - "os_type": "None", - "instance_flavor_id": "84" - }, - "counter_type": "gauge" - }, - { - "counter_name": "state", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:41.215808", - "message_id": "c2e981bc-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "state", - "counter_volume": 7.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.resize.confirm.start", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "7", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "resized", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:26:36.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50+00:00", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "128", - "instance_type": "m1.micro", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "84" - }, - "counter_type": "gauge" - }, - { - "counter_name": "state", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:36.660962", - "message_id": "c00c1f04-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "state", - "counter_volume": 7.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.finish_resize.end", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "7", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "resized", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:26:36.508445", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50+00:00", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "128", - "instance_type": "m1.micro", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "84" - }, - "counter_type": "gauge" - }, - { - "counter_name": "state", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:36.641519", - "message_id": "c0045652-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "state", - "counter_volume": 7.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "7", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "resized", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "active", - "launched_at": "2014-03-18T23:26:36.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "resize_finish", - "memory_mb": "128", - "instance_type": "m1.micro", - "vcpus": "1", - "architecture": "None", - "new_task_state": "None", - "audit_period_ending": "2014-03-18T23:26:36.635923", - "os_type": "None", - "instance_flavor_id": "84" - }, - "counter_type": "gauge" - }, - { - "counter_name": "state", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:33.644730", - "message_id": "be91ea82-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "state", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_finish", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "7", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "None", - "launched_at": "2014-03-18T23:26:03.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "128", - "instance_type": "m1.micro", - "vcpus": "1", - "architecture": "None", - "new_task_state": "resize_finish", - "audit_period_ending": "2014-03-18T23:26:33.629158", - "os_type": "None", - "instance_flavor_id": "84" - }, - "counter_type": "gauge" - }, - { - "counter_name": "state", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:32.978311", - "message_id": "be3ddfbe-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "state", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_finish", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.finish_resize.start", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "7", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:26:03.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50+00:00", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "128", - "instance_type": "m1.micro", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "84" - }, - "counter_type": "gauge" - }, - { - "counter_name": "state", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:32.923371", - "message_id": "bdcb666e-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "state", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_finish", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "7", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "active", - "launched_at": "2014-03-18T23:26:03.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "resize_migrated", - "memory_mb": "128", - "instance_type": "m1.micro", - "vcpus": "1", - "architecture": "None", - "new_task_state": "resize_finish", - "audit_period_ending": "2014-03-18T23:26:32.912559", - "os_type": "None", - "instance_flavor_id": "84" - }, - "counter_type": "gauge" - }, - { - "counter_name": "state", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:30.756963", - "message_id": "bd0b865a-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "state", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_migrated", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "7", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "None", - "launched_at": "2014-03-18T23:26:03.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "128", - "instance_type": "m1.micro", - "vcpus": "1", - "architecture": "None", - "new_task_state": "resize_migrated", - "audit_period_ending": "2014-03-18T23:26:30.736480", - "os_type": "None", - "instance_flavor_id": "84" - }, - "counter_type": "gauge" - }, - { - "counter_name": "state", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:30.581708", - "message_id": "bd09b690-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "state", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_migrated", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.resize.end", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:26:03.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50+00:00", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "state", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:30.541581", - "message_id": "bc68546c-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "state", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_migrated", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "active", - "launched_at": "2014-03-18T23:26:03.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "resize_migrating", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "resize_migrated", - "audit_period_ending": "2014-03-18T23:26:30.538760", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "state", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:29.062264", - "message_id": "bbd79256-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "state", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_migrating", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.resize.start", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:26:03.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50+00:00", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "state", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:29.023231", - "message_id": "bbc93abc-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "state", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_migrating", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "active", - "launched_at": "2014-03-18T23:26:03.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "resize_prep", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "resize_migrating", - "audit_period_ending": "2014-03-18T23:26:29.012815", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "state", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:27.992426", - "message_id": "bb835e98-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "state", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_prep", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.resize.prep.end", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "new_instance_type": "m1.micro", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:26:03.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "new_instance_type_id": "7", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50+00:00", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "state", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:27.832751", - "message_id": "bb34193c-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "state", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_prep", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "None", - "launched_at": "2014-03-18T23:26:03.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "resize_prep", - "audit_period_ending": "2014-03-18T23:26:27.827241", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "state", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:27.649599", - "message_id": "bb371466-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "state", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_prep", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.resize.prep.start", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:26:03.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50+00:00", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "state", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:27.624655", - "message_id": "badb0522-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "state", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_prep", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.exists", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:26:03.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18 23:00:00", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18T23:25:50.000000", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "audit_period_ending": "2014-03-18 23:26:27.618602", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "state", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:27.390614", - "message_id": "ba7b3df4-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "state", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_prep", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "active", - "launched_at": "2014-03-18T23:26:03.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "resize_prep", - "audit_period_ending": "2014-03-18T23:26:27.387182", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "state", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:03.435289", - "message_id": "acb4b5ec-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "state", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.create.end", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "message": "Success", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:26:03.116480", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18T23:25:50.000000", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "state", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:03.304543", - "message_id": "ac299962-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "state", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "building", - "launched_at": "2014-03-18T23:26:03.116480", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "spawning", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "None", - "audit_period_ending": "2014-03-18T23:26:03.283717", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "state", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:25:56.576910", - "message_id": "a8906588-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "state", - "counter_volume": 2.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "spawning", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "building", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "None", - "launched_at": "", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "spawning", - "audit_period_ending": "2014-03-18T23:25:56.566228", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "state", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:25:52.175355", - "message_id": "a735523e-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "state", - "counter_volume": 2.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "spawning", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "building", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "building", - "launched_at": "", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "block_device_mapping", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "spawning", - "audit_period_ending": "2014-03-18T23:25:52.167089", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "state", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:25:51.808652", - "message_id": "a8a1808e-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "state", - "counter_volume": 2.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "block_device_mapping", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "building", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "building", - "launched_at": "", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "networking", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "block_device_mapping", - "audit_period_ending": "2014-03-18T23:25:51.801777", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "state", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:25:51.410174", - "message_id": "a6507632-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "state", - "counter_volume": 2.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "networking", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "building", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "building", - "launched_at": "", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "networking", - "audit_period_ending": "2014-03-18T23:25:51.384818", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "state", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:25:51.100867", - "message_id": "a5bf2588-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "state", - "counter_volume": 2.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "building", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "None", - "launched_at": "", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "None", - "audit_period_ending": "2014-03-18T23:25:51.097813", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "state", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:25:50.974440", - "message_id": "a5570a70-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "state", - "counter_volume": 2.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "building", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "None", - "launched_at": "", - "node": "None", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "None", - "audit_period_ending": "2014-03-18T23:25:50.971512", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "state", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:25:50.799724", - "message_id": "a511d63a-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "state", - "counter_volume": 2.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "scheduling", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.create.start", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "message": "", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "building", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "", - "node": "None", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18T23:25:50.000000", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "state", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:25:50.636376", - "message_id": "a4e5b00a-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "state", - "counter_volume": 2.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "building", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "building", - "launched_at": "", - "node": "None", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "scheduling", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "None", - "audit_period_ending": "2014-03-18T23:25:50.628023", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "state", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:25:50.059488", - "message_id": "a453a480-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "state", - "counter_volume": 2.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "scheduling", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "building", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "None", - "launched_at": "", - "node": "None", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50.030375+00:00", - "image_meta.min_ram": "0", - "host": "api.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "scheduling", - "audit_period_ending": "2014-03-18T23:25:50.055685", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - } - ] -} \ No newline at end of file diff --git a/distil/tests/unit/data/map_fixture_94.json b/distil/tests/unit/data/map_fixture_94.json deleted file mode 100644 index 380b442..0000000 --- a/distil/tests/unit/data/map_fixture_94.json +++ /dev/null @@ -1,2763 +0,0 @@ -{ - "http://localhost:8777/v2/meters/vcpus?q.field=resource_id&q.value=f2bbc7d1-b167-4065-ad21-7a2f550dde4b": [ - { - "counter_name": "vcpus", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-19T00:00:12.155033", - "message_id": "714ed87a-aef9-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "vcpu", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.exists", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:51:10.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18 23:00:00", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18T23:25:50.000000", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "audit_period_ending": "2014-03-19 00:00:00", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "vcpus", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:51:16.375547", - "message_id": "3218cd24-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "vcpu", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.resize.confirm.end", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:51:10.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50+00:00", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "vcpus", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:51:16.346975", - "message_id": "31fc9528-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "vcpu", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "resized", - "launched_at": "2014-03-18T23:51:10.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "None", - "audit_period_ending": "2014-03-18T23:51:16.342714", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "vcpus", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:51:14.778337", - "message_id": "31354856-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "vcpu", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "resized", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "None", - "launched_at": "2014-03-18T23:51:10.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "None", - "audit_period_ending": "2014-03-18T23:51:14.765324", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "vcpus", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:51:14.551624", - "message_id": "3100f588-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "vcpu", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.resize.confirm.start", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "resized", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:51:10.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50+00:00", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "vcpus", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:51:10.406617", - "message_id": "2e72974a-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "vcpu", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.finish_resize.end", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "resized", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:51:10.252738", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50+00:00", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "vcpus", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:51:10.379488", - "message_id": "2e6f928e-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "vcpu", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "resized", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "active", - "launched_at": "2014-03-18T23:51:10.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "resize_finish", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "None", - "audit_period_ending": "2014-03-18T23:51:10.370224", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "vcpus", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:51:07.330097", - "message_id": "2cb74a18-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "vcpu", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_finish", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "None", - "launched_at": "2014-03-18T23:26:36.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "resize_finish", - "audit_period_ending": "2014-03-18T23:51:07.318203", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "vcpus", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:51:06.595811", - "message_id": "2c2c20aa-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "vcpu", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_finish", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.finish_resize.start", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:26:36.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50+00:00", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "vcpus", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:51:06.549996", - "message_id": "2c479bf0-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "vcpu", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_finish", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "active", - "launched_at": "2014-03-18T23:26:36.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "resize_migrated", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "resize_finish", - "audit_period_ending": "2014-03-18T23:51:06.540920", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "vcpus", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:51:04.974308", - "message_id": "2b502a78-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "vcpu", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_migrated", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "None", - "launched_at": "2014-03-18T23:26:36.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "resize_migrated", - "audit_period_ending": "2014-03-18T23:51:04.970426", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "vcpus", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:51:04.821606", - "message_id": "2b425bd2-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "vcpu", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_migrated", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.resize.end", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "7", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:26:36.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50+00:00", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "128", - "instance_type": "m1.micro", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "84" - }, - "counter_type": "gauge" - }, - { - "counter_name": "vcpus", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:51:04.776805", - "message_id": "2b0a6a24-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "vcpu", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_migrated", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "7", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "active", - "launched_at": "2014-03-18T23:26:36.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "resize_migrating", - "memory_mb": "128", - "instance_type": "m1.micro", - "vcpus": "1", - "architecture": "None", - "new_task_state": "resize_migrated", - "audit_period_ending": "2014-03-18T23:51:04.773290", - "os_type": "None", - "instance_flavor_id": "84" - }, - "counter_type": "gauge" - }, - { - "counter_name": "vcpus", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:51:03.177935", - "message_id": "2a3df750-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "vcpu", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_migrating", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.resize.start", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "7", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:26:36.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50+00:00", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "128", - "instance_type": "m1.micro", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "84" - }, - "counter_type": "gauge" - }, - { - "counter_name": "vcpus", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:51:03.154086", - "message_id": "2a798716-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "vcpu", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_migrating", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "7", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "active", - "launched_at": "2014-03-18T23:26:36.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "resize_prep", - "memory_mb": "128", - "instance_type": "m1.micro", - "vcpus": "1", - "architecture": "None", - "new_task_state": "resize_migrating", - "audit_period_ending": "2014-03-18T23:51:03.144127", - "os_type": "None", - "instance_flavor_id": "84" - }, - "counter_type": "gauge" - }, - { - "counter_name": "vcpus", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:51:02.454054", - "message_id": "29ed94ea-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "vcpu", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_prep", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.resize.prep.end", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "7", - "new_instance_type": "m1.nano", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:26:36.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "new_instance_type_id": "6", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50+00:00", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "128", - "instance_type": "m1.micro", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "84" - }, - "counter_type": "gauge" - }, - { - "counter_name": "vcpus", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:51:02.287353", - "message_id": "29eb0450-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "vcpu", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_prep", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "7", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "None", - "launched_at": "2014-03-18T23:26:36.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "128", - "instance_type": "m1.micro", - "vcpus": "1", - "architecture": "None", - "new_task_state": "resize_prep", - "audit_period_ending": "2014-03-18T23:51:02.277584", - "os_type": "None", - "instance_flavor_id": "84" - }, - "counter_type": "gauge" - }, - { - "counter_name": "vcpus", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:51:02.105639", - "message_id": "29bfcdee-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "vcpu", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_prep", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.resize.prep.start", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "7", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:26:36.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50+00:00", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "128", - "instance_type": "m1.micro", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "84" - }, - "counter_type": "gauge" - }, - { - "counter_name": "vcpus", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:51:02.079858", - "message_id": "29c0cfa0-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "vcpu", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_prep", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.exists", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "7", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:26:36.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18 23:00:00", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18T23:25:50.000000", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "memory_mb": "128", - "instance_type": "m1.micro", - "vcpus": "1", - "architecture": "None", - "audit_period_ending": "2014-03-18 23:51:02.075761", - "os_type": "None", - "instance_flavor_id": "84" - }, - "counter_type": "gauge" - }, - { - "counter_name": "vcpus", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:51:01.796399", - "message_id": "29484c42-aef8-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "vcpu", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_prep", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "7", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "active", - "launched_at": "2014-03-18T23:26:36.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "128", - "instance_type": "m1.micro", - "vcpus": "1", - "architecture": "None", - "new_task_state": "resize_prep", - "audit_period_ending": "2014-03-18T23:51:01.792434", - "os_type": "None", - "instance_flavor_id": "84" - }, - "counter_type": "gauge" - }, - { - "counter_name": "vcpus", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:42.511562", - "message_id": "c3a8fe3e-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "vcpu", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.resize.confirm.end", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "7", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:26:36.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50+00:00", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "128", - "instance_type": "m1.micro", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "84" - }, - "counter_type": "gauge" - }, - { - "counter_name": "vcpus", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:42.477369", - "message_id": "c3892bd6-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "vcpu", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "7", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "resized", - "launched_at": "2014-03-18T23:26:36.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "128", - "instance_type": "m1.micro", - "vcpus": "1", - "architecture": "None", - "new_task_state": "None", - "audit_period_ending": "2014-03-18T23:26:42.470479", - "os_type": "None", - "instance_flavor_id": "84" - }, - "counter_type": "gauge" - }, - { - "counter_name": "vcpus", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:41.444948", - "message_id": "c2f54984-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "vcpu", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "7", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "resized", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "None", - "launched_at": "2014-03-18T23:26:36.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "128", - "instance_type": "m1.micro", - "vcpus": "1", - "architecture": "None", - "new_task_state": "None", - "audit_period_ending": "2014-03-18T23:26:41.433938", - "os_type": "None", - "instance_flavor_id": "84" - }, - "counter_type": "gauge" - }, - { - "counter_name": "vcpus", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:41.215808", - "message_id": "c2cf97e8-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "vcpu", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.resize.confirm.start", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "7", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "resized", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:26:36.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50+00:00", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "128", - "instance_type": "m1.micro", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "84" - }, - "counter_type": "gauge" - }, - { - "counter_name": "vcpus", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:36.660962", - "message_id": "c00a92a6-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "vcpu", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.finish_resize.end", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "7", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "resized", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:26:36.508445", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50+00:00", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "128", - "instance_type": "m1.micro", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "84" - }, - "counter_type": "gauge" - }, - { - "counter_name": "vcpus", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:36.641519", - "message_id": "c002ffc8-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "vcpu", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "7", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "resized", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "active", - "launched_at": "2014-03-18T23:26:36.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "resize_finish", - "memory_mb": "128", - "instance_type": "m1.micro", - "vcpus": "1", - "architecture": "None", - "new_task_state": "None", - "audit_period_ending": "2014-03-18T23:26:36.635923", - "os_type": "None", - "instance_flavor_id": "84" - }, - "counter_type": "gauge" - }, - { - "counter_name": "vcpus", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:33.644730", - "message_id": "be882b96-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "vcpu", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_finish", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "7", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "None", - "launched_at": "2014-03-18T23:26:03.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "128", - "instance_type": "m1.micro", - "vcpus": "1", - "architecture": "None", - "new_task_state": "resize_finish", - "audit_period_ending": "2014-03-18T23:26:33.629158", - "os_type": "None", - "instance_flavor_id": "84" - }, - "counter_type": "gauge" - }, - { - "counter_name": "vcpus", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:32.978311", - "message_id": "be23c1a6-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "vcpu", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_finish", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.finish_resize.start", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "7", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:26:03.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50+00:00", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "128", - "instance_type": "m1.micro", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "84" - }, - "counter_type": "gauge" - }, - { - "counter_name": "vcpus", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:32.923371", - "message_id": "bdc97304-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "vcpu", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_finish", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "7", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "active", - "launched_at": "2014-03-18T23:26:03.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "resize_migrated", - "memory_mb": "128", - "instance_type": "m1.micro", - "vcpus": "1", - "architecture": "None", - "new_task_state": "resize_finish", - "audit_period_ending": "2014-03-18T23:26:32.912559", - "os_type": "None", - "instance_flavor_id": "84" - }, - "counter_type": "gauge" - }, - { - "counter_name": "vcpus", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:30.756963", - "message_id": "bce5ecc4-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "vcpu", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_migrated", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "7", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "None", - "launched_at": "2014-03-18T23:26:03.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "128", - "instance_type": "m1.micro", - "vcpus": "1", - "architecture": "None", - "new_task_state": "resize_migrated", - "audit_period_ending": "2014-03-18T23:26:30.736480", - "os_type": "None", - "instance_flavor_id": "84" - }, - "counter_type": "gauge" - }, - { - "counter_name": "vcpus", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:30.581708", - "message_id": "bcbf9f4c-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "vcpu", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_migrated", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.resize.end", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:26:03.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50+00:00", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "vcpus", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:30.541581", - "message_id": "bc67970c-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "vcpu", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_migrated", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "active", - "launched_at": "2014-03-18T23:26:03.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "resize_migrating", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "resize_migrated", - "audit_period_ending": "2014-03-18T23:26:30.538760", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "vcpus", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:29.062264", - "message_id": "bbc99c32-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "vcpu", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_migrating", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.resize.start", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:26:03.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50+00:00", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "vcpus", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:29.023231", - "message_id": "bbbea67e-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "vcpu", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_migrating", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "active", - "launched_at": "2014-03-18T23:26:03.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "resize_prep", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "resize_migrating", - "audit_period_ending": "2014-03-18T23:26:29.012815", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "vcpus", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:27.992426", - "message_id": "bb5c1eaa-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "vcpu", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_prep", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.resize.prep.end", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "new_instance_type": "m1.micro", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:26:03.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "new_instance_type_id": "7", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50+00:00", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "vcpus", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:27.832751", - "message_id": "bb138a28-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "vcpu", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_prep", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "None", - "launched_at": "2014-03-18T23:26:03.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "resize_prep", - "audit_period_ending": "2014-03-18T23:26:27.827241", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "vcpus", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:27.649599", - "message_id": "bb1561ae-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "vcpu", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_prep", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.resize.prep.start", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:26:03.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50+00:00", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "vcpus", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:27.624655", - "message_id": "babffa0c-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "vcpu", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_prep", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.exists", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:26:03.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18 23:00:00", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18T23:25:50.000000", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "audit_period_ending": "2014-03-18 23:26:27.618602", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "vcpus", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:27.390614", - "message_id": "ba755bfa-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "vcpu", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "resize_prep", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "active", - "launched_at": "2014-03-18T23:26:03.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "None.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "resize_prep", - "audit_period_ending": "2014-03-18T23:26:27.387182", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "vcpus", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:03.435289", - "message_id": "aca8cb88-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "vcpu", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.create.end", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "message": "Success", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:26:03.116480", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18T23:25:50.000000", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "vcpus", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:26:03.304543", - "message_id": "ac1efa02-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "vcpu", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "building", - "launched_at": "2014-03-18T23:26:03.116480", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "spawning", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "None", - "audit_period_ending": "2014-03-18T23:26:03.283717", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "vcpus", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:25:56.576910", - "message_id": "a88f97e8-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "vcpu", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "spawning", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "building", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "None", - "launched_at": "", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "spawning", - "audit_period_ending": "2014-03-18T23:25:56.566228", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "vcpus", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:25:52.175355", - "message_id": "a7336be0-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "vcpu", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "spawning", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "building", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "building", - "launched_at": "", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "block_device_mapping", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "spawning", - "audit_period_ending": "2014-03-18T23:25:52.167089", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "vcpus", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:25:51.808652", - "message_id": "a72d3a9a-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "vcpu", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "block_device_mapping", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "building", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "building", - "launched_at": "", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "networking", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "block_device_mapping", - "audit_period_ending": "2014-03-18T23:25:51.801777", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "vcpus", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:25:51.410174", - "message_id": "a59d1f24-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "vcpu", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "networking", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "building", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "building", - "launched_at": "", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "networking", - "audit_period_ending": "2014-03-18T23:25:51.384818", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "vcpus", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:25:51.100867", - "message_id": "a55950aa-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "vcpu", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "building", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "None", - "launched_at": "", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "None", - "audit_period_ending": "2014-03-18T23:25:51.097813", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "vcpus", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:25:50.974440", - "message_id": "a5149bf4-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "vcpu", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "building", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "None", - "launched_at": "", - "node": "None", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "None", - "audit_period_ending": "2014-03-18T23:25:50.971512", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "vcpus", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:25:50.799724", - "message_id": "a4e32d6c-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "vcpu", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "scheduling", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.create.start", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "message": "", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "building", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "", - "node": "None", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18T23:25:50.000000", - "image_meta.min_ram": "0", - "host": "compute.vagrant-ubuntu-precise-64", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "vcpus", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:25:50.636376", - "message_id": "a4c052ba-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "vcpu", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "building", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "building", - "launched_at": "", - "node": "None", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "old_task_state": "scheduling", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "None", - "audit_period_ending": "2014-03-18T23:25:50.628023", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - }, - { - "counter_name": "vcpus", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "timestamp": "2014-03-18T23:25:50.059488", - "message_id": "a43f9aa8-aef4-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "vcpu", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "state_description": "scheduling", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.update", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "building", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "old_state": "None", - "launched_at": "", - "node": "None", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18T23:00:00.000000", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:25:50.030375+00:00", - "image_meta.min_ram": "0", - "host": "api.vagrant-ubuntu-precise-64", - "old_task_state": "None", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "new_task_state": "scheduling", - "audit_period_ending": "2014-03-18T23:25:50.055685", - "os_type": "None", - "instance_flavor_id": "42" - }, - "counter_type": "gauge" - } - ] -} \ No newline at end of file diff --git a/distil/tests/unit/data/map_fixture_95.json b/distil/tests/unit/data/map_fixture_95.json deleted file mode 100644 index 4e12840..0000000 --- a/distil/tests/unit/data/map_fixture_95.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "http://localhost:8777/v2/resources/ffa62fae-58d7-431f-85ae-293f531ae8ca": { - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "links": [ - { - "href": "http://localhost:8777/v2/resources/ffa62fae-58d7-431f-85ae-293f531ae8ca", - "rel": "self" - }, - { - "href": "http://localhost:8777/v2/meters/subnet?q.field=resource_id&q.value=ffa62fae-58d7-431f-85ae-293f531ae8ca", - "rel": "subnet" - }, - { - "href": "http://localhost:8777/v2/meters/subnet.create?q.field=resource_id&q.value=ffa62fae-58d7-431f-85ae-293f531ae8ca", - "rel": "subnet.create" - } - ], - "resource_id": "ffa62fae-58d7-431f-85ae-293f531ae8ca", - "last_sample_timestamp": "2014-03-18T21:07:16.447913", - "first_sample_timestamp": "2014-03-18T21:07:16.447913", - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "metadata": { - "event_type": "subnet.create.end", - "enable_dhcp": "True", - "network_id": "5b771cb2-961a-4042-a814-2f78c5545f8a", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "host": "network.vagrant-ubuntu-precise-64", - "gateway_ip": "10.0.0.1", - "ip_version": "4", - "cidr": "10.0.0.0/24", - "id": "ffa62fae-58d7-431f-85ae-293f531ae8ca", - "name": "private-subnet" - } - } -} \ No newline at end of file diff --git a/distil/tests/unit/data/map_fixture_96.json b/distil/tests/unit/data/map_fixture_96.json deleted file mode 100644 index c90c326..0000000 --- a/distil/tests/unit/data/map_fixture_96.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "http://localhost:8777/v2/meters/subnet?q.field=resource_id&q.value=ffa62fae-58d7-431f-85ae-293f531ae8ca": [ - { - "counter_name": "subnet", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "ffa62fae-58d7-431f-85ae-293f531ae8ca", - "timestamp": "2014-03-18T21:07:16.447913", - "message_id": "5d04b6ae-aee1-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "subnet", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "event_type": "subnet.create.end", - "enable_dhcp": "True", - "network_id": "5b771cb2-961a-4042-a814-2f78c5545f8a", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "host": "network.vagrant-ubuntu-precise-64", - "gateway_ip": "10.0.0.1", - "ip_version": "4", - "cidr": "10.0.0.0/24", - "id": "ffa62fae-58d7-431f-85ae-293f531ae8ca", - "name": "private-subnet" - }, - "counter_type": "gauge" - } - ] -} \ No newline at end of file diff --git a/distil/tests/unit/data/map_fixture_97.json b/distil/tests/unit/data/map_fixture_97.json deleted file mode 100644 index 9a7beb0..0000000 --- a/distil/tests/unit/data/map_fixture_97.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "http://localhost:8777/v2/meters/subnet.create?q.field=resource_id&q.value=ffa62fae-58d7-431f-85ae-293f531ae8ca": [ - { - "counter_name": "subnet.create", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "ffa62fae-58d7-431f-85ae-293f531ae8ca", - "timestamp": "2014-03-18T21:07:16.447913", - "message_id": "5d05d098-aee1-11e3-9865-08002705114b", - "source": "openstack", - "counter_unit": "subnet", - "counter_volume": 1.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "event_type": "subnet.create.end", - "enable_dhcp": "True", - "network_id": "5b771cb2-961a-4042-a814-2f78c5545f8a", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "host": "network.vagrant-ubuntu-precise-64", - "gateway_ip": "10.0.0.1", - "ip_version": "4", - "cidr": "10.0.0.0/24", - "id": "ffa62fae-58d7-431f-85ae-293f531ae8ca", - "name": "private-subnet" - }, - "counter_type": "delta" - } - ] -} \ No newline at end of file diff --git a/distil/tests/unit/data/map_fixture_98.json b/distil/tests/unit/data/map_fixture_98.json deleted file mode 100644 index 56850fc..0000000 --- a/distil/tests/unit/data/map_fixture_98.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "http://localhost:8777/v2/resources/nova-instance-instance-00000001-fa163e65d2cf": { - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "links": [ - { - "href": "http://localhost:8777/v2/resources/nova-instance-instance-00000001-fa163e65d2cf", - "rel": "self" - }, - { - "href": "http://localhost:8777/v2/meters/network.incoming.bytes?q.field=resource_id&q.value=nova-instance-instance-00000001-fa163e65d2cf", - "rel": "network.incoming.bytes" - }, - { - "href": "http://localhost:8777/v2/meters/network.incoming.packets?q.field=resource_id&q.value=nova-instance-instance-00000001-fa163e65d2cf", - "rel": "network.incoming.packets" - }, - { - "href": "http://localhost:8777/v2/meters/network.outgoing.bytes?q.field=resource_id&q.value=nova-instance-instance-00000001-fa163e65d2cf", - "rel": "network.outgoing.bytes" - }, - { - "href": "http://localhost:8777/v2/meters/network.outgoing.packets?q.field=resource_id&q.value=nova-instance-instance-00000001-fa163e65d2cf", - "rel": "network.outgoing.packets" - } - ], - "resource_id": "nova-instance-instance-00000001-fa163e65d2cf", - "last_sample_timestamp": "2014-03-18T23:59:58", - "first_sample_timestamp": "2014-03-18T23:26:55", - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "metadata": { - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "instance_type": "42", - "mac": "fa:16:3e:65:d2:cf", - "fref": "nova-instance-instance-00000001-fa163e65d2cf", - "name": "tap002a338d-1e" - } - } -} \ No newline at end of file diff --git a/distil/tests/unit/data/map_fixture_99.json b/distil/tests/unit/data/map_fixture_99.json deleted file mode 100644 index 7eff9fc..0000000 --- a/distil/tests/unit/data/map_fixture_99.json +++ /dev/null @@ -1,346 +0,0 @@ -{ - "http://localhost:8777/v2/meters/network.incoming.bytes?q.field=resource_id&q.value=nova-instance-instance-00000001-fa163e65d2cf": [ - { - "counter_name": "network.incoming.bytes", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "nova-instance-instance-00000001-fa163e65d2cf", - "timestamp": "2014-03-18T23:59:58", - "message_id": "6921946c-aef9-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 10642.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "instance_type": "42", - "mac": "fa:16:3e:65:d2:cf", - "fref": "nova-instance-instance-00000001-fa163e65d2cf", - "name": "tap002a338d-1e" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "network.incoming.bytes", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "nova-instance-instance-00000001-fa163e65d2cf", - "timestamp": "2014-03-18T23:58:58", - "message_id": "451cac82-aef9-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 10642.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "instance_type": "42", - "mac": "fa:16:3e:65:d2:cf", - "fref": "nova-instance-instance-00000001-fa163e65d2cf", - "name": "tap002a338d-1e" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "network.incoming.bytes", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "nova-instance-instance-00000001-fa163e65d2cf", - "timestamp": "2014-03-18T23:57:58", - "message_id": "216104aa-aef9-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 10642.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "instance_type": "42", - "mac": "fa:16:3e:65:d2:cf", - "fref": "nova-instance-instance-00000001-fa163e65d2cf", - "name": "tap002a338d-1e" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "network.incoming.bytes", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "nova-instance-instance-00000001-fa163e65d2cf", - "timestamp": "2014-03-18T23:56:58", - "message_id": "fda0bad8-aef8-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 10642.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "instance_type": "42", - "mac": "fa:16:3e:65:d2:cf", - "fref": "nova-instance-instance-00000001-fa163e65d2cf", - "name": "tap002a338d-1e" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "network.incoming.bytes", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "nova-instance-instance-00000001-fa163e65d2cf", - "timestamp": "2014-03-18T23:39:57", - "message_id": "9cfa2a54-aef6-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 14171.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "instance_type": "84", - "mac": "fa:16:3e:65:d2:cf", - "fref": "nova-instance-instance-00000001-fa163e65d2cf", - "name": "tap002a338d-1e" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "network.incoming.bytes", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "nova-instance-instance-00000001-fa163e65d2cf", - "timestamp": "2014-03-18T23:38:56", - "message_id": "792237e8-aef6-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 14171.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "instance_type": "84", - "mac": "fa:16:3e:65:d2:cf", - "fref": "nova-instance-instance-00000001-fa163e65d2cf", - "name": "tap002a338d-1e" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "network.incoming.bytes", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "nova-instance-instance-00000001-fa163e65d2cf", - "timestamp": "2014-03-18T23:37:56", - "message_id": "5565e318-aef6-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 14171.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "instance_type": "84", - "mac": "fa:16:3e:65:d2:cf", - "fref": "nova-instance-instance-00000001-fa163e65d2cf", - "name": "tap002a338d-1e" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "network.incoming.bytes", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "nova-instance-instance-00000001-fa163e65d2cf", - "timestamp": "2014-03-18T23:36:56", - "message_id": "31a281d4-aef6-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 14171.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "instance_type": "84", - "mac": "fa:16:3e:65:d2:cf", - "fref": "nova-instance-instance-00000001-fa163e65d2cf", - "name": "tap002a338d-1e" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "network.incoming.bytes", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "nova-instance-instance-00000001-fa163e65d2cf", - "timestamp": "2014-03-18T23:35:56", - "message_id": "0dd73312-aef6-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 14171.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "instance_type": "84", - "mac": "fa:16:3e:65:d2:cf", - "fref": "nova-instance-instance-00000001-fa163e65d2cf", - "name": "tap002a338d-1e" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "network.incoming.bytes", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "nova-instance-instance-00000001-fa163e65d2cf", - "timestamp": "2014-03-18T23:34:56", - "message_id": "e9f6fe28-aef5-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 14171.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "instance_type": "84", - "mac": "fa:16:3e:65:d2:cf", - "fref": "nova-instance-instance-00000001-fa163e65d2cf", - "name": "tap002a338d-1e" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "network.incoming.bytes", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "nova-instance-instance-00000001-fa163e65d2cf", - "timestamp": "2014-03-18T23:33:56", - "message_id": "c62a215a-aef5-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 14171.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "instance_type": "84", - "mac": "fa:16:3e:65:d2:cf", - "fref": "nova-instance-instance-00000001-fa163e65d2cf", - "name": "tap002a338d-1e" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "network.incoming.bytes", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "nova-instance-instance-00000001-fa163e65d2cf", - "timestamp": "2014-03-18T23:32:56", - "message_id": "a271d988-aef5-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 14171.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "instance_type": "84", - "mac": "fa:16:3e:65:d2:cf", - "fref": "nova-instance-instance-00000001-fa163e65d2cf", - "name": "tap002a338d-1e" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "network.incoming.bytes", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "nova-instance-instance-00000001-fa163e65d2cf", - "timestamp": "2014-03-18T23:31:56", - "message_id": "7e961114-aef5-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 14171.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "instance_type": "84", - "mac": "fa:16:3e:65:d2:cf", - "fref": "nova-instance-instance-00000001-fa163e65d2cf", - "name": "tap002a338d-1e" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "network.incoming.bytes", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "nova-instance-instance-00000001-fa163e65d2cf", - "timestamp": "2014-03-18T23:30:56", - "message_id": "5ae89124-aef5-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 14171.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "instance_type": "84", - "mac": "fa:16:3e:65:d2:cf", - "fref": "nova-instance-instance-00000001-fa163e65d2cf", - "name": "tap002a338d-1e" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "network.incoming.bytes", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "nova-instance-instance-00000001-fa163e65d2cf", - "timestamp": "2014-03-18T23:29:56", - "message_id": "36c72eea-aef5-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 14171.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "instance_type": "84", - "mac": "fa:16:3e:65:d2:cf", - "fref": "nova-instance-instance-00000001-fa163e65d2cf", - "name": "tap002a338d-1e" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "network.incoming.bytes", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "nova-instance-instance-00000001-fa163e65d2cf", - "timestamp": "2014-03-18T23:28:56", - "message_id": "1323536a-aef5-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 14171.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "instance_type": "84", - "mac": "fa:16:3e:65:d2:cf", - "fref": "nova-instance-instance-00000001-fa163e65d2cf", - "name": "tap002a338d-1e" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "network.incoming.bytes", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "nova-instance-instance-00000001-fa163e65d2cf", - "timestamp": "2014-03-18T23:27:56", - "message_id": "ef99d3ec-aef4-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 13989.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "instance_type": "84", - "mac": "fa:16:3e:65:d2:cf", - "fref": "nova-instance-instance-00000001-fa163e65d2cf", - "name": "tap002a338d-1e" - }, - "counter_type": "cumulative" - }, - { - "counter_name": "network.incoming.bytes", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "resource_id": "nova-instance-instance-00000001-fa163e65d2cf", - "timestamp": "2014-03-18T23:26:55", - "message_id": "cb144f0c-aef4-11e3-bb3e-08002705114b", - "source": "openstack", - "counter_unit": "B", - "counter_volume": 5046.0, - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "resource_metadata": { - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "instance_type": "84", - "mac": "fa:16:3e:65:d2:cf", - "fref": "nova-instance-instance-00000001-fa163e65d2cf", - "name": "tap002a338d-1e" - }, - "counter_type": "cumulative" - } - ] -} \ No newline at end of file diff --git a/distil/tests/unit/data/resources.json b/distil/tests/unit/data/resources.json deleted file mode 100644 index 7882f50..0000000 --- a/distil/tests/unit/data/resources.json +++ /dev/null @@ -1,872 +0,0 @@ -[ - { - "user_id": "5fbff7d5c307476fb3db36f3ffbcca07", - "links": [ - { - "href": "http://localhost:8777/v2/resources/002a338d-1eda-4cd4-a94c-d1495db1efd9", - "rel": "self" - }, - { - "href": "http://localhost:8777/v2/meters/port?q.field=resource_id&q.value=002a338d-1eda-4cd4-a94c-d1495db1efd9", - "rel": "port" - }, - { - "href": "http://localhost:8777/v2/meters/port.create?q.field=resource_id&q.value=002a338d-1eda-4cd4-a94c-d1495db1efd9", - "rel": "port.create" - }, - { - "href": "http://localhost:8777/v2/meters/port.update?q.field=resource_id&q.value=002a338d-1eda-4cd4-a94c-d1495db1efd9", - "rel": "port.update" - } - ], - "resource_id": "002a338d-1eda-4cd4-a94c-d1495db1efd9", - "last_sample_timestamp": "2014-03-18T23:51:05.527721", - "first_sample_timestamp": "2014-03-18T23:25:53.295528", - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "metadata": { - "status": "ACTIVE", - "binding:host_id": "vagrant-ubuntu-precise-64", - "binding:capabilities.port_filter": "True", - "admin_state_up": "True", - "network_id": "5b771cb2-961a-4042-a814-2f78c5545f8a", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "device_owner": "compute:nova", - "binding:vif_type": "ovs", - "host": "network.vagrant-ubuntu-precise-64", - "mac_address": "fa:16:3e:65:d2:cf", - "event_type": "port.update.end", - "device_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "id": "002a338d-1eda-4cd4-a94c-d1495db1efd9", - "name": "" - } - }, - { - "user_id": "5fbff7d5c307476fb3db36f3ffbcca07", - "links": [ - { - "href": "http://localhost:8777/v2/resources/06245705-edbe-4e9e-8954-f568520cecec", - "rel": "self" - }, - { - "href": "http://localhost:8777/v2/meters/port?q.field=resource_id&q.value=06245705-edbe-4e9e-8954-f568520cecec", - "rel": "port" - }, - { - "href": "http://localhost:8777/v2/meters/port.create?q.field=resource_id&q.value=06245705-edbe-4e9e-8954-f568520cecec", - "rel": "port.create" - } - ], - "resource_id": "06245705-edbe-4e9e-8954-f568520cecec", - "last_sample_timestamp": "2014-03-18T23:27:23.335516", - "first_sample_timestamp": "2014-03-18T23:27:23.335516", - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "metadata": { - "status": "DOWN", - "binding:host_id": "vagrant-ubuntu-precise-64", - "binding:capabilities.port_filter": "True", - "admin_state_up": "True", - "network_id": "5b771cb2-961a-4042-a814-2f78c5545f8a", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "device_owner": "compute:nova", - "binding:vif_type": "ovs", - "host": "network.vagrant-ubuntu-precise-64", - "mac_address": "fa:16:3e:17:ab:99", - "event_type": "port.create.end", - "device_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "id": "06245705-edbe-4e9e-8954-f568520cecec", - "name": "" - } - }, - { - "user_id": null, - "links": [ - { - "href": "http://localhost:8777/v2/resources/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "rel": "self" - }, - { - "href": "http://localhost:8777/v2/meters/image?q.field=resource_id&q.value=2c9af0eb-4960-49c2-8c1c-b60de446f212", - "rel": "image" - }, - { - "href": "http://localhost:8777/v2/meters/image.download?q.field=resource_id&q.value=2c9af0eb-4960-49c2-8c1c-b60de446f212", - "rel": "image.download" - }, - { - "href": "http://localhost:8777/v2/meters/image.serve?q.field=resource_id&q.value=2c9af0eb-4960-49c2-8c1c-b60de446f212", - "rel": "image.serve" - }, - { - "href": "http://localhost:8777/v2/meters/image.size?q.field=resource_id&q.value=2c9af0eb-4960-49c2-8c1c-b60de446f212", - "rel": "image.size" - }, - { - "href": "http://localhost:8777/v2/meters/image.update?q.field=resource_id&q.value=2c9af0eb-4960-49c2-8c1c-b60de446f212", - "rel": "image.update" - }, - { - "href": "http://localhost:8777/v2/meters/image.upload?q.field=resource_id&q.value=2c9af0eb-4960-49c2-8c1c-b60de446f212", - "rel": "image.upload" - } - ], - "resource_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "last_sample_timestamp": "2014-03-18T23:27:50.197792", - "first_sample_timestamp": "2014-03-18T23:25:56.203891", - "project_id": "7a64220a45c84104ac95258de1a3720a", - "metadata": { - "receiver_tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "destination_ip": "10.0.2.15", - "event_type": "image.send", - "bytes_sent": "25165824", - "image_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "host": "vagrant-ubuntu-precise-64", - "receiver_user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "owner_id": "7a64220a45c84104ac95258de1a3720a" - } - }, - { - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "links": [ - { - "href": "http://localhost:8777/v2/resources/5b771cb2-961a-4042-a814-2f78c5545f8a", - "rel": "self" - }, - { - "href": "http://localhost:8777/v2/meters/network?q.field=resource_id&q.value=5b771cb2-961a-4042-a814-2f78c5545f8a", - "rel": "network" - }, - { - "href": "http://localhost:8777/v2/meters/network.create?q.field=resource_id&q.value=5b771cb2-961a-4042-a814-2f78c5545f8a", - "rel": "network.create" - } - ], - "resource_id": "5b771cb2-961a-4042-a814-2f78c5545f8a", - "last_sample_timestamp": "2014-03-18T21:07:15.859001", - "first_sample_timestamp": "2014-03-18T21:07:15.859001", - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "metadata": { - "status": "ACTIVE", - "event_type": "network.create.end", - "provider:physical_network": "None", - "admin_state_up": "True", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "provider:network_type": "local", - "host": "network.vagrant-ubuntu-precise-64", - "shared": "False", - "name": "private", - "id": "5b771cb2-961a-4042-a814-2f78c5545f8a", - "provider:segmentation_id": "None" - } - }, - { - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "links": [ - { - "href": "http://localhost:8777/v2/resources/6d53d8e1-7738-4d35-a012-344042a7669a", - "rel": "self" - }, - { - "href": "http://localhost:8777/v2/meters/router?q.field=resource_id&q.value=6d53d8e1-7738-4d35-a012-344042a7669a", - "rel": "router" - }, - { - "href": "http://localhost:8777/v2/meters/router.create?q.field=resource_id&q.value=6d53d8e1-7738-4d35-a012-344042a7669a", - "rel": "router.create" - }, - { - "href": "http://localhost:8777/v2/meters/router.update?q.field=resource_id&q.value=6d53d8e1-7738-4d35-a012-344042a7669a", - "rel": "router.update" - } - ], - "resource_id": "6d53d8e1-7738-4d35-a012-344042a7669a", - "last_sample_timestamp": "2014-03-18T21:07:19.748103", - "first_sample_timestamp": "2014-03-18T21:07:16.971857", - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "metadata": { - "status": "ACTIVE", - "event_type": "router.update.end", - "external_gateway_info.enable_snat": "True", - "admin_state_up": "True", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "host": "network.vagrant-ubuntu-precise-64", - "external_gateway_info.network_id": "c4bd625d-daf0-42fb-85d1-cce1de845b58", - "id": "6d53d8e1-7738-4d35-a012-344042a7669a", - "name": "router1" - } - }, - { - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "links": [ - { - "href": "http://localhost:8777/v2/resources/7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "rel": "self" - }, - { - "href": "http://localhost:8777/v2/meters/disk.ephemeral.size?q.field=resource_id&q.value=7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "rel": "disk.ephemeral.size" - }, - { - "href": "http://localhost:8777/v2/meters/disk.root.size?q.field=resource_id&q.value=7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "rel": "disk.root.size" - }, - { - "href": "http://localhost:8777/v2/meters/flavor?q.field=resource_id&q.value=7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "rel": "flavor" - }, - { - "href": "http://localhost:8777/v2/meters/instance?q.field=resource_id&q.value=7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "rel": "instance" - }, - { - "href": "http://localhost:8777/v2/meters/instance.scheduled?q.field=resource_id&q.value=7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "rel": "instance.scheduled" - }, - { - "href": "http://localhost:8777/v2/meters/instance:m1.nano?q.field=resource_id&q.value=7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "rel": "instance:m1.nano" - }, - { - "href": "http://localhost:8777/v2/meters/memory?q.field=resource_id&q.value=7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "rel": "memory" - }, - { - "href": "http://localhost:8777/v2/meters/state?q.field=resource_id&q.value=7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "rel": "state" - }, - { - "href": "http://localhost:8777/v2/meters/vcpus?q.field=resource_id&q.value=7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "rel": "vcpus" - } - ], - "resource_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "last_sample_timestamp": "2014-03-19T00:00:12.204287", - "first_sample_timestamp": "2014-03-18T23:40:00.873278", - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "metadata": { - "state_description": "", - "image_meta.base_image_ref": "", - "event_type": "compute.instance.exists", - "availability_zone": "nova", - "terminated_at": "2014-03-18T23:56:49.000000", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.checksum": "f8a2eeee2dc65b3d9b6e63678955bd83", - "deleted_at": "2014-03-18T23:56:49.000000", - "reservation_id": "r-mqh9u63a", - "instance_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "display_name": "instance3", - "instance_type": "m1.nano", - "hostname": "instance3", - "image_meta.size": "25165824", - "state": "deleted", - "image_meta.min_disk": "0", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:40:10.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_ref_url": "http://10.0.2.15:9292/images/", - "audit_period_beginning": "2014-03-18 23:00:00", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18T23:40:00.000000", - "image_meta.image_name": "cirros-0.3.1-x86_64-uec", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "image_meta.image_id": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "memory_mb": "64", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "vcpus": "1", - "architecture": "None", - "audit_period_ending": "2014-03-19 00:00:00", - "os_type": "None", - "instance_flavor_id": "42" - } - }, - { - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "links": [ - { - "href": "http://localhost:8777/v2/resources/982c1e1f-25ff-41a1-8354-3ab63d986a0d", - "rel": "self" - }, - { - "href": "http://localhost:8777/v2/meters/volume?q.field=resource_id&q.value=982c1e1f-25ff-41a1-8354-3ab63d986a0d", - "rel": "volume" - }, - { - "href": "http://localhost:8777/v2/meters/volume.size?q.field=resource_id&q.value=982c1e1f-25ff-41a1-8354-3ab63d986a0d", - "rel": "volume.size" - } - ], - "resource_id": "982c1e1f-25ff-41a1-8354-3ab63d986a0d", - "last_sample_timestamp": "2014-03-18T23:27:55.323414", - "first_sample_timestamp": "2014-03-18T23:27:48.477554", - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "metadata": { - "status": "available", - "display_name": "volume1", - "event_type": "volume.create.end", - "availability_zone": "nova", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18 23:27:47", - "snapshot_id": "None", - "volume_type": "None", - "host": "volume.vagrant-ubuntu-precise-64", - "volume_id": "982c1e1f-25ff-41a1-8354-3ab63d986a0d", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "launched_at": "2014-03-18 23:27:55.255191", - "size": "10" - } - }, - { - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "links": [ - { - "href": "http://localhost:8777/v2/resources/99e2d00e-d966-4821-8c70-6895b1f9d78a", - "rel": "self" - }, - { - "href": "http://localhost:8777/v2/meters/ip.floating?q.field=resource_id&q.value=99e2d00e-d966-4821-8c70-6895b1f9d78a", - "rel": "ip.floating" - }, - { - "href": "http://localhost:8777/v2/meters/ip.floating.create?q.field=resource_id&q.value=99e2d00e-d966-4821-8c70-6895b1f9d78a", - "rel": "ip.floating.create" - }, - { - "href": "http://localhost:8777/v2/meters/ip.floating.update?q.field=resource_id&q.value=99e2d00e-d966-4821-8c70-6895b1f9d78a", - "rel": "ip.floating.update" - } - ], - "resource_id": "99e2d00e-d966-4821-8c70-6895b1f9d78a", - "last_sample_timestamp": "2014-03-18T23:29:03.515986", - "first_sample_timestamp": "2014-03-18T23:28:58.653516", - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "metadata": { - "router_id": "6d53d8e1-7738-4d35-a012-344042a7669a", - "event_type": "floatingip.update.end", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "floating_network_id": "c4bd625d-daf0-42fb-85d1-cce1de845b58", - "host": "network.vagrant-ubuntu-precise-64", - "fixed_ip_address": "10.0.0.4", - "floating_ip_address": "172.24.4.227", - "port_id": "06245705-edbe-4e9e-8954-f568520cecec", - "id": "99e2d00e-d966-4821-8c70-6895b1f9d78a" - } - }, - { - "user_id": "5fbff7d5c307476fb3db36f3ffbcca07", - "links": [ - { - "href": "http://localhost:8777/v2/resources/c02b2782-2180-4992-a934-306b1e60296c", - "rel": "self" - }, - { - "href": "http://localhost:8777/v2/meters/port?q.field=resource_id&q.value=c02b2782-2180-4992-a934-306b1e60296c", - "rel": "port" - }, - { - "href": "http://localhost:8777/v2/meters/port.create?q.field=resource_id&q.value=c02b2782-2180-4992-a934-306b1e60296c", - "rel": "port.create" - } - ], - "resource_id": "c02b2782-2180-4992-a934-306b1e60296c", - "last_sample_timestamp": "2014-03-18T23:40:03.063737", - "first_sample_timestamp": "2014-03-18T23:40:03.063737", - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "metadata": { - "status": "DOWN", - "binding:host_id": "vagrant-ubuntu-precise-64", - "binding:capabilities.port_filter": "True", - "admin_state_up": "True", - "network_id": "5b771cb2-961a-4042-a814-2f78c5545f8a", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "device_owner": "compute:nova", - "binding:vif_type": "ovs", - "host": "network.vagrant-ubuntu-precise-64", - "mac_address": "fa:16:3e:e5:10:3f", - "event_type": "port.create.end", - "device_id": "7992f8f7-0181-4a15-b6a8-99dec4d20c73", - "id": "c02b2782-2180-4992-a934-306b1e60296c", - "name": "" - } - }, - { - "user_id": null, - "links": [ - { - "href": "http://localhost:8777/v2/resources/c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "rel": "self" - }, - { - "href": "http://localhost:8777/v2/meters/image?q.field=resource_id&q.value=c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "rel": "image" - }, - { - "href": "http://localhost:8777/v2/meters/image.download?q.field=resource_id&q.value=c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "rel": "image.download" - }, - { - "href": "http://localhost:8777/v2/meters/image.serve?q.field=resource_id&q.value=c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "rel": "image.serve" - }, - { - "href": "http://localhost:8777/v2/meters/image.size?q.field=resource_id&q.value=c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "rel": "image.size" - }, - { - "href": "http://localhost:8777/v2/meters/image.update?q.field=resource_id&q.value=c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "rel": "image.update" - }, - { - "href": "http://localhost:8777/v2/meters/image.upload?q.field=resource_id&q.value=c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "rel": "image.upload" - } - ], - "resource_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "last_sample_timestamp": "2014-03-18T23:25:53.294596", - "first_sample_timestamp": "2014-03-18T23:25:53.294596", - "project_id": "7a64220a45c84104ac95258de1a3720a", - "metadata": { - "receiver_tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "destination_ip": "10.0.2.15", - "event_type": "image.send", - "bytes_sent": "4955792", - "image_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "host": "vagrant-ubuntu-precise-64", - "receiver_user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "owner_id": "7a64220a45c84104ac95258de1a3720a" - } - }, - { - "user_id": null, - "links": [ - { - "href": "http://localhost:8777/v2/resources/cd3deadd3d5a4f11802d03928195f4ef", - "rel": "self" - }, - { - "href": "http://localhost:8777/v2/meters/storage.api.request?q.field=resource_id&q.value=cd3deadd3d5a4f11802d03928195f4ef", - "rel": "storage.api.request" - }, - { - "href": "http://localhost:8777/v2/meters/storage.objects?q.field=resource_id&q.value=cd3deadd3d5a4f11802d03928195f4ef", - "rel": "storage.objects" - }, - { - "href": "http://localhost:8777/v2/meters/storage.objects.containers?q.field=resource_id&q.value=cd3deadd3d5a4f11802d03928195f4ef", - "rel": "storage.objects.containers" - }, - { - "href": "http://localhost:8777/v2/meters/storage.objects.incoming.bytes?q.field=resource_id&q.value=cd3deadd3d5a4f11802d03928195f4ef", - "rel": "storage.objects.incoming.bytes" - }, - { - "href": "http://localhost:8777/v2/meters/storage.objects.outgoing.bytes?q.field=resource_id&q.value=cd3deadd3d5a4f11802d03928195f4ef", - "rel": "storage.objects.outgoing.bytes" - }, - { - "href": "http://localhost:8777/v2/meters/storage.objects.size?q.field=resource_id&q.value=cd3deadd3d5a4f11802d03928195f4ef", - "rel": "storage.objects.size" - } - ], - "resource_id": "cd3deadd3d5a4f11802d03928195f4ef", - "last_sample_timestamp": "2014-03-18T23:59:52", - "first_sample_timestamp": "2014-03-18T21:08:49", - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "metadata": {} - }, - { - "user_id": null, - "links": [ - { - "href": "http://localhost:8777/v2/resources/d5c36550-2476-43a3-9535-fa799782fd53", - "rel": "self" - }, - { - "href": "http://localhost:8777/v2/meters/image?q.field=resource_id&q.value=d5c36550-2476-43a3-9535-fa799782fd53", - "rel": "image" - }, - { - "href": "http://localhost:8777/v2/meters/image.download?q.field=resource_id&q.value=d5c36550-2476-43a3-9535-fa799782fd53", - "rel": "image.download" - }, - { - "href": "http://localhost:8777/v2/meters/image.serve?q.field=resource_id&q.value=d5c36550-2476-43a3-9535-fa799782fd53", - "rel": "image.serve" - }, - { - "href": "http://localhost:8777/v2/meters/image.size?q.field=resource_id&q.value=d5c36550-2476-43a3-9535-fa799782fd53", - "rel": "image.size" - }, - { - "href": "http://localhost:8777/v2/meters/image.update?q.field=resource_id&q.value=d5c36550-2476-43a3-9535-fa799782fd53", - "rel": "image.update" - }, - { - "href": "http://localhost:8777/v2/meters/image.upload?q.field=resource_id&q.value=d5c36550-2476-43a3-9535-fa799782fd53", - "rel": "image.upload" - } - ], - "resource_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "last_sample_timestamp": "2014-03-18T23:25:54.496640", - "first_sample_timestamp": "2014-03-18T23:25:54.496640", - "project_id": "7a64220a45c84104ac95258de1a3720a", - "metadata": { - "receiver_tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "destination_ip": "10.0.2.15", - "event_type": "image.send", - "bytes_sent": "3714968", - "image_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "host": "vagrant-ubuntu-precise-64", - "receiver_user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "owner_id": "7a64220a45c84104ac95258de1a3720a" - } - }, - { - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "links": [ - { - "href": "http://localhost:8777/v2/resources/d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "rel": "self" - }, - { - "href": "http://localhost:8777/v2/meters/cpu?q.field=resource_id&q.value=d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "rel": "cpu" - }, - { - "href": "http://localhost:8777/v2/meters/cpu_util?q.field=resource_id&q.value=d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "rel": "cpu_util" - }, - { - "href": "http://localhost:8777/v2/meters/disk.ephemeral.size?q.field=resource_id&q.value=d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "rel": "disk.ephemeral.size" - }, - { - "href": "http://localhost:8777/v2/meters/disk.read.bytes?q.field=resource_id&q.value=d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "rel": "disk.read.bytes" - }, - { - "href": "http://localhost:8777/v2/meters/disk.read.requests?q.field=resource_id&q.value=d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "rel": "disk.read.requests" - }, - { - "href": "http://localhost:8777/v2/meters/disk.root.size?q.field=resource_id&q.value=d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "rel": "disk.root.size" - }, - { - "href": "http://localhost:8777/v2/meters/disk.write.bytes?q.field=resource_id&q.value=d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "rel": "disk.write.bytes" - }, - { - "href": "http://localhost:8777/v2/meters/disk.write.requests?q.field=resource_id&q.value=d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "rel": "disk.write.requests" - }, - { - "href": "http://localhost:8777/v2/meters/flavor?q.field=resource_id&q.value=d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "rel": "flavor" - }, - { - "href": "http://localhost:8777/v2/meters/instance?q.field=resource_id&q.value=d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "rel": "instance" - }, - { - "href": "http://localhost:8777/v2/meters/instance.scheduled?q.field=resource_id&q.value=d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "rel": "instance.scheduled" - }, - { - "href": "http://localhost:8777/v2/meters/instance:m1.nano?q.field=resource_id&q.value=d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "rel": "instance:m1.nano" - }, - { - "href": "http://localhost:8777/v2/meters/memory?q.field=resource_id&q.value=d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "rel": "memory" - }, - { - "href": "http://localhost:8777/v2/meters/state?q.field=resource_id&q.value=d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "rel": "state" - }, - { - "href": "http://localhost:8777/v2/meters/vcpus?q.field=resource_id&q.value=d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "rel": "vcpus" - } - ], - "resource_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "last_sample_timestamp": "2014-03-19T00:00:12.179696", - "first_sample_timestamp": "2014-03-18T23:27:20.980945", - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.exists", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-zgm8p5qw", - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "display_name": "instance2", - "hostname": "instance2", - "state": "suspended", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:27:29.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18 23:00:00", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18T23:27:20.000000", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "audit_period_ending": "2014-03-19 00:00:00", - "os_type": "None", - "instance_flavor_id": "42" - } - }, - { - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "links": [ - { - "href": "http://localhost:8777/v2/resources/f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "rel": "self" - }, - { - "href": "http://localhost:8777/v2/meters/cpu?q.field=resource_id&q.value=f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "rel": "cpu" - }, - { - "href": "http://localhost:8777/v2/meters/cpu_util?q.field=resource_id&q.value=f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "rel": "cpu_util" - }, - { - "href": "http://localhost:8777/v2/meters/disk.ephemeral.size?q.field=resource_id&q.value=f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "rel": "disk.ephemeral.size" - }, - { - "href": "http://localhost:8777/v2/meters/disk.read.bytes?q.field=resource_id&q.value=f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "rel": "disk.read.bytes" - }, - { - "href": "http://localhost:8777/v2/meters/disk.read.requests?q.field=resource_id&q.value=f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "rel": "disk.read.requests" - }, - { - "href": "http://localhost:8777/v2/meters/disk.root.size?q.field=resource_id&q.value=f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "rel": "disk.root.size" - }, - { - "href": "http://localhost:8777/v2/meters/disk.write.bytes?q.field=resource_id&q.value=f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "rel": "disk.write.bytes" - }, - { - "href": "http://localhost:8777/v2/meters/disk.write.requests?q.field=resource_id&q.value=f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "rel": "disk.write.requests" - }, - { - "href": "http://localhost:8777/v2/meters/flavor?q.field=resource_id&q.value=f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "rel": "flavor" - }, - { - "href": "http://localhost:8777/v2/meters/instance?q.field=resource_id&q.value=f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "rel": "instance" - }, - { - "href": "http://localhost:8777/v2/meters/instance.scheduled?q.field=resource_id&q.value=f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "rel": "instance.scheduled" - }, - { - "href": "http://localhost:8777/v2/meters/instance:m1.micro?q.field=resource_id&q.value=f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "rel": "instance:m1.micro" - }, - { - "href": "http://localhost:8777/v2/meters/instance:m1.nano?q.field=resource_id&q.value=f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "rel": "instance:m1.nano" - }, - { - "href": "http://localhost:8777/v2/meters/memory?q.field=resource_id&q.value=f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "rel": "memory" - }, - { - "href": "http://localhost:8777/v2/meters/state?q.field=resource_id&q.value=f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "rel": "state" - }, - { - "href": "http://localhost:8777/v2/meters/vcpus?q.field=resource_id&q.value=f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "rel": "vcpus" - } - ], - "resource_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "last_sample_timestamp": "2014-03-19T00:00:12.155033", - "first_sample_timestamp": "2014-03-18T23:25:50.059488", - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "metadata": { - "state_description": "", - "image_meta.base_image_ref": "2c9af0eb-4960-49c2-8c1c-b60de446f212", - "event_type": "compute.instance.exists", - "availability_zone": "nova", - "terminated_at": "", - "ephemeral_gb": "0", - "instance_type_id": "6", - "image_meta.ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "deleted_at": "", - "reservation_id": "r-3y8wximj", - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "display_name": "instance1", - "hostname": "instance1", - "state": "active", - "image_ref_url": "http://10.0.2.15:9292/images/2c9af0eb-4960-49c2-8c1c-b60de446f212", - "image_meta.kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "launched_at": "2014-03-18T23:51:10.000000", - "node": "vagrant-ubuntu-precise-64", - "ramdisk_id": "d5c36550-2476-43a3-9535-fa799782fd53", - "access_ip_v6": "None", - "disk_gb": "0", - "access_ip_v4": "None", - "kernel_id": "c3bbd48f-9a94-4dfe-8f2c-3b9482fcf17a", - "image_meta.disk_format": "ami", - "image_meta.container_format": "ami", - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "image_meta.min_disk": "0", - "audit_period_beginning": "2014-03-18 23:00:00", - "root_gb": "0", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "created_at": "2014-03-18T23:25:50.000000", - "image_meta.min_ram": "0", - "host": "conductor.vagrant-ubuntu-precise-64", - "memory_mb": "64", - "instance_type": "m1.nano", - "vcpus": "1", - "architecture": "None", - "audit_period_ending": "2014-03-19 00:00:00", - "os_type": "None", - "instance_flavor_id": "42" - } - }, - { - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "links": [ - { - "href": "http://localhost:8777/v2/resources/ffa62fae-58d7-431f-85ae-293f531ae8ca", - "rel": "self" - }, - { - "href": "http://localhost:8777/v2/meters/subnet?q.field=resource_id&q.value=ffa62fae-58d7-431f-85ae-293f531ae8ca", - "rel": "subnet" - }, - { - "href": "http://localhost:8777/v2/meters/subnet.create?q.field=resource_id&q.value=ffa62fae-58d7-431f-85ae-293f531ae8ca", - "rel": "subnet.create" - } - ], - "resource_id": "ffa62fae-58d7-431f-85ae-293f531ae8ca", - "last_sample_timestamp": "2014-03-18T21:07:16.447913", - "first_sample_timestamp": "2014-03-18T21:07:16.447913", - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "metadata": { - "event_type": "subnet.create.end", - "enable_dhcp": "True", - "network_id": "5b771cb2-961a-4042-a814-2f78c5545f8a", - "tenant_id": "cd3deadd3d5a4f11802d03928195f4ef", - "host": "network.vagrant-ubuntu-precise-64", - "gateway_ip": "10.0.0.1", - "ip_version": "4", - "cidr": "10.0.0.0/24", - "id": "ffa62fae-58d7-431f-85ae-293f531ae8ca", - "name": "private-subnet" - } - }, - { - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "links": [ - { - "href": "http://localhost:8777/v2/resources/nova-instance-instance-00000001-fa163e65d2cf", - "rel": "self" - }, - { - "href": "http://localhost:8777/v2/meters/network.incoming.bytes?q.field=resource_id&q.value=nova-instance-instance-00000001-fa163e65d2cf", - "rel": "network.incoming.bytes" - }, - { - "href": "http://localhost:8777/v2/meters/network.incoming.packets?q.field=resource_id&q.value=nova-instance-instance-00000001-fa163e65d2cf", - "rel": "network.incoming.packets" - }, - { - "href": "http://localhost:8777/v2/meters/network.outgoing.bytes?q.field=resource_id&q.value=nova-instance-instance-00000001-fa163e65d2cf", - "rel": "network.outgoing.bytes" - }, - { - "href": "http://localhost:8777/v2/meters/network.outgoing.packets?q.field=resource_id&q.value=nova-instance-instance-00000001-fa163e65d2cf", - "rel": "network.outgoing.packets" - } - ], - "resource_id": "nova-instance-instance-00000001-fa163e65d2cf", - "last_sample_timestamp": "2014-03-18T23:59:58", - "first_sample_timestamp": "2014-03-18T23:26:55", - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "metadata": { - "instance_id": "f2bbc7d1-b167-4065-ad21-7a2f550dde4b", - "instance_type": "42", - "mac": "fa:16:3e:65:d2:cf", - "fref": "nova-instance-instance-00000001-fa163e65d2cf", - "name": "tap002a338d-1e" - } - }, - { - "user_id": "865fbcdcf3ee4c4c93e9703ac181f192", - "links": [ - { - "href": "http://localhost:8777/v2/resources/nova-instance-instance-00000002-fa163e17ab99", - "rel": "self" - }, - { - "href": "http://localhost:8777/v2/meters/network.incoming.bytes?q.field=resource_id&q.value=nova-instance-instance-00000002-fa163e17ab99", - "rel": "network.incoming.bytes" - }, - { - "href": "http://localhost:8777/v2/meters/network.incoming.packets?q.field=resource_id&q.value=nova-instance-instance-00000002-fa163e17ab99", - "rel": "network.incoming.packets" - }, - { - "href": "http://localhost:8777/v2/meters/network.outgoing.bytes?q.field=resource_id&q.value=nova-instance-instance-00000002-fa163e17ab99", - "rel": "network.outgoing.bytes" - }, - { - "href": "http://localhost:8777/v2/meters/network.outgoing.packets?q.field=resource_id&q.value=nova-instance-instance-00000002-fa163e17ab99", - "rel": "network.outgoing.packets" - } - ], - "resource_id": "nova-instance-instance-00000002-fa163e17ab99", - "last_sample_timestamp": "2014-03-18T23:29:55", - "first_sample_timestamp": "2014-03-18T23:27:55", - "project_id": "cd3deadd3d5a4f11802d03928195f4ef", - "metadata": { - "instance_id": "d9f92c40-23b3-4b86-ade2-ef62d0b459de", - "instance_type": "42", - "mac": "fa:16:3e:17:ab:99", - "fref": "nova-instance-instance-00000002-fa163e17ab99", - "name": "tap06245705-ed" - } - } -] \ No newline at end of file diff --git a/distil/tests/unit/data_samples.py b/distil/tests/unit/data_samples.py deleted file mode 100644 index e61c432..0000000 --- a/distil/tests/unit/data_samples.py +++ /dev/null @@ -1,105 +0,0 @@ -# Copyright (C) 2014 Catalyst IT Ltd -# -# Licensed under the Apache License, Version 2.0 (the "License"); you may -# not use this file except in compliance with the License. You may obtain -# a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT -# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the -# License for the specific language governing permissions and limitations -# under the License. - -import os -import json -import decimal - - -RESOURCES = {"vms": [], "volumes": [], 'objects': [], - "networks": [], "ips": []} -MAPPINGS = {} -HOSTS = None - - -# The above variables are initialised beyond this point -try: - fn = os.path.abspath(__file__) - path, f = os.path.split(fn) -except NameError: - path = os.getcwd() - -# Enter in a whoooooole bunch of mock data. -fh = open(os.path.join(path, "data/resources.json")) -resources = json.loads(fh.read()) -fh.close() - -HOSTS = set([resource["metadata"]["host"] for resource - in resources if resource["metadata"].get("host")]) - -i = 0 -while True: - try: - fh = open(os.path.join(path, "data/map_fixture_%s.json" % i)) - d = json.loads(fh.read(), parse_float=decimal.Decimal) - fh.close() - MAPPINGS.update(d) - i += 1 - except IOError: - break - - -class InternalResource(object): - - def __init__(self, resource): - self.resource = resource - # def __getitem__(self, item): - # return self.resource[item] - - def __getattr__(self, attr): - return self.resource[attr] - - def __str__(self): - return str(self.resource) - - @property - def links(self): - return [MiniMeter(i) for i in self.resource['links']] - - -class MiniMeter(object): - - def __init__(self, meter): - self._ = meter - - @property - def link(self): - return self._["href"] - - @property - def rel(self): - return self._["rel"] - - def __getitem__(self, item): - return self._[item] - - -resources = [InternalResource(r) for r in resources] - -for resource in resources: - rels = [link.rel for link in resource.links if link.rel != 'self'] - if "image" in rels: - continue - elif "storage.objects.size" in rels: - # Unknown how this data layout happens yet. - # resource["_type"] = "storage" - RESOURCES["objects"].append(resource) - elif "volume" in rels: - RESOURCES["volumes"].append(resource) - elif "network.outgoing.bytes" in rels: - RESOURCES["networks"].append(resource) - elif "state" in rels: - RESOURCES["vms"].append(resource) - elif "ip.floating" in rels: - RESOURCES["ips"].append(resource) diff --git a/distil/tests/unit/test_api.py b/distil/tests/unit/test_api.py deleted file mode 100644 index 6ac3295..0000000 --- a/distil/tests/unit/test_api.py +++ /dev/null @@ -1,302 +0,0 @@ -# Copyright (C) 2014 Catalyst IT Ltd -# -# Licensed under the Apache License, Version 2.0 (the "License"); you may -# not use this file except in compliance with the License. You may obtain -# a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT -# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the -# License for the specific language governing permissions and limitations -# under the License. - -from webtest import TestApp -from distil.tests.unit import test_interface -from distil.tests.unit import utils -from distil.api import web -from distil.api.web import get_app -from distil import models -from distil import interface -from distil import config -from distil.helpers import convert_to -from distil.constants import dawn_of_time -from datetime import datetime -from decimal import Decimal -import json -import mock -import testtools - - -class TestAPI(test_interface.TestInterface): - __name__ = 'TestAPI' - - def setUp(self): - super(TestAPI, self).setUp() - with mock.patch("distil.api.web.setup_memcache") as setup_memcache: - self.app = TestApp(get_app(utils.FAKE_CONFIG)) - - def tearDown(self): - super(TestAPI, self).tearDown() - self.app = None - - @testtools.skip("skip test.") - def test_usage_run_for_all(self): - """Asserts a usage run generates data for all tenants""" - - usage = helpers.get_usage(self.start, self.end) - - with mock.patch('distil.interface.Interface') as Interface: - - tenants = [] - - for tenant in constants.TENANTS: - t = mock.Mock(spec=interface.Tenant) - t.usage.return_value = usage - t.conn = mock.Mock() - t.tenant = tenant - t.id = tenant['id'] - t.name = tenant['name'] - t.description = tenant['description'] - tenants.append(t) - - ceil_interface = mock.Mock(spec=interface.Interface) - - ceil_interface.tenants = tenants - - Interface.return_value = ceil_interface - - # patch to mock out the novaclient call - with mock.patch('distil.helpers.flavor_name') as flavor_name: - flavor_name.side_effect = lambda x: x - - resp = self.app.post("/collect_usage") - self.assertEqual(resp.status_int, 200) - - tenants = self.session.query(models.Tenant) - self.assertTrue(tenants.count() > 0) - - usages = self.session.query(models.UsageEntry) - self.assertTrue(usages.count() > 0) - resources = self.session.query(models.Resource) - - self.assertEqual(resources.count(), len(usage.values())) - - @testtools.skip("skip test.") - def test_memcache_raw_usage(self): - """Tests that raw usage queries are cached, and returned.""" - numTenants = 1 - numResources = 5 - - end = datetime.strptime("2014-08-01", "%Y-%m-%d") - - fake_memcache = {} - keys = [] - values = [] - - def set_mem(key, value): - keys.append(key) - values.append(value) - fake_memcache[key] = value - - def get_mem(key): - return fake_memcache.get(key) - - utils.init_db(self.session, numTenants, numResources, end) - - with mock.patch("distil.api.web.memcache") as memcache: - memcache.get.side_effect = get_mem - memcache.set.side_effect = set_mem - resp = self.app.get("/get_usage", - params={"tenant": "tenant_id_0", - "start": "2014-07-01T00:00:00", - "end": "2014-08-01T00:00:00"}) - self.assertEqual(resp.body, values[0]) - - test_string = "this is not a valid computation" - fake_memcache[keys[0]] = test_string - resp2 = self.app.get("/get_usage", - params={"tenant": "tenant_id_0", - "start": "2014-07-01T00:00:00", - "end": "2014-08-01T00:00:00"}) - self.assertEqual(1, len(values)) - self.assertEqual(resp2.body, test_string) - - @testtools.skip("skip test.") - def test_memcache_rated_usage(self): - """Tests that rated usage queries are cached, and returned.""" - numTenants = 1 - numResources = 5 - - end = datetime.strptime("2014-08-01", "%Y-%m-%d") - - fake_memcache = {} - keys = [] - values = [] - - def set_mem(key, value): - keys.append(key) - values.append(value) - fake_memcache[key] = value - - def get_mem(key): - return fake_memcache.get(key) - - utils.init_db(self.session, numTenants, numResources, end) - - with mock.patch("distil.api.web.memcache") as memcache: - memcache.get.side_effect = get_mem - memcache.set.side_effect = set_mem - resp = self.app.get("/get_rated", - params={"tenant": "tenant_id_0", - "start": "2014-07-01T00:00:00", - "end": "2014-08-01T00:00:00"}) - self.assertEqual(resp.body, values[0]) - - test_string = "this is not a valid computation" - fake_memcache[keys[0]] = test_string - resp2 = self.app.get("/get_rated", - params={"tenant": "tenant_id_0", - "start": "2014-07-01T00:00:00", - "end": "2014-08-01T00:00:00"}) - self.assertEqual(1, len(values)) - self.assertEqual(resp2.body, test_string) - - def test_tenant_dict(self): - """Checking that the tenant dictionary is built correctly - based on given entry data.""" - num_resources = 3 - num_services = 2 - volume = 5 - - entries = utils.create_usage_entries(num_resources, - num_services, volume) - - tenant = mock.MagicMock() - tenant.name = "tenant_1" - tenant.id = "tenant_id_1" - - db = mock.MagicMock() - db.get_resources.return_value = { - 'resource_id_0': {}, - 'resource_id_1': {}, - 'resource_id_2': {}, - } - - tenant_dict = web.build_tenant_dict(tenant, entries, db) - - self.assertEqual(len(tenant_dict['resources']), num_resources) - self.assertEqual(tenant_dict['tenant_id'], "tenant_id_1") - self.assertEqual(tenant_dict['name'], "tenant_1") - - for resource in tenant_dict['resources'].values(): - for service in resource['services']: - self.assertEqual(service['volume'], volume) - - def test_tenant_dict_no_entries(self): - """Test to ensure that the function handles an - empty list of entries correctly.""" - entries = [] - - tenant = mock.MagicMock() - tenant.name = "tenant_1" - tenant.id = "tenant_id_1" - - db = mock.MagicMock() - - tenant_dict = web.build_tenant_dict(tenant, entries, db) - - self.assertEqual(len(tenant_dict['resources']), 0) - self.assertEqual(tenant_dict['tenant_id'], "tenant_id_1") - self.assertEqual(tenant_dict['name'], "tenant_1") - - def test_add_cost_to_tenant(self): - """Checking that the rates are applied correctly, - and that we get correct total values.""" - volume = 3600 - rate = {'rate': Decimal(0.25), 'unit': 'hour'} - - test_tenant = { - 'resources': { - 'resource_1': { - 'services': [{'name': 'service_1', - 'volume': Decimal(volume), - 'unit': 'second'}, - {'name': 'service_2', - 'volume': Decimal(volume), - 'unit': 'second'}] - }, - 'resource_2': { - 'services': [{'name': 'service_1', - 'volume': Decimal(volume), - 'unit': 'second'}, - {'name': 'service_2', - 'volume': Decimal(volume), - 'unit': 'second'}] - } - } - } - - service_cost = round( - convert_to(volume, 'second', rate['unit']) * rate['rate'], 2) - total_cost = service_cost * 4 - - ratesManager = mock.MagicMock() - ratesManager.rate.return_value = rate - - tenant_dict = web.add_costs_for_tenant(test_tenant, ratesManager) - - self.assertEqual(tenant_dict['total_cost'], str(total_cost)) - for resource in tenant_dict['resources'].values(): - self.assertEqual(resource['total_cost'], str(service_cost * 2)) - for service in resource['services']: - self.assertEqual(service['volume'], - str(convert_to(volume, 'second', - rate['unit']))) - self.assertEqual(service['unit'], rate['unit']) - self.assertEqual(service['cost'], str(service_cost)) - - def test_add_cost_to_empty_tenant(self): - """An empty tenant should not be charged anything, - nor cause errors.""" - - empty_tenant = {'resources': {}} - - ratesManager = mock.MagicMock() - - tenant_dict = web.add_costs_for_tenant(empty_tenant, ratesManager) - - self.assertEqual(tenant_dict['total_cost'], str(0)) - - @testtools.skip("skip test.") - def test_get_last_collected(self): - """test to ensure last collected api call returns correctly""" - now = datetime.now() - self.session.add(models._Last_Run(last_run=now)) - self.session.commit() - resp = self.app.get("/last_collected") - resp_json = json.loads(resp.body) - self.assertEqual(resp_json['last_collected'], str(now)) - - @testtools.skip("skip test.") - def test_get_last_collected_default(self): - """test to ensure last collected returns correct default value""" - resp = self.app.get("/last_collected") - resp_json = json.loads(resp.body) - self.assertEqual(resp_json['last_collected'], str(dawn_of_time)) - - def test_filter_and_group(self): - usage = [{'source': 'openstack', 'resource_id': 1}, - {'source': '22c4f150358e4ed287fa51e050d7f024:TrafficAccounting', 'resource_id': 2}, - {'source': 'fake', 'resource_id': 3},] - usage_by_resource = {} - config.main = {'trust_sources': - ['openstack', '.{32}:TrafficAccounting']} - web.filter_and_group(usage, usage_by_resource) - - expected = {1: [{'source': 'openstack', 'resource_id': 1}], - 2: [{'source': - '22c4f150358e4ed287fa51e050d7f024:TrafficAccounting', - 'resource_id': 2}]} - self.assertEqual(usage_by_resource, expected) diff --git a/distil/tests/unit/test_database.py b/distil/tests/unit/test_database.py deleted file mode 100644 index 396bfbe..0000000 --- a/distil/tests/unit/test_database.py +++ /dev/null @@ -1,34 +0,0 @@ -# Copyright (C) 2014 Catalyst IT Ltd -# -# Licensed under the Apache License, Version 2.0 (the "License"); you may -# not use this file except in compliance with the License. You may obtain -# a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT -# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the -# License for the specific language governing permissions and limitations -# under the License. - -from distil.tests.unit import test_interface, utils -from distil import database -from datetime import timedelta - - -class TestDatabase(test_interface.TestInterface): - - def test_get_from_db(self): - """Test to ensure the data in the database matches the data entered.""" - num_resources = 32 - num_tenants = 5 - - utils.init_db(self.session, num_tenants, num_resources, self.end) - - db = database.Database(self.session) - - for i in range(num_tenants): - usage = db.usage(self.start, self.start + timedelta(days=60), - "tenant_id_" + str(i)) - self.assertEqual(usage.count(), num_resources) diff --git a/distil/tests/unit/test_interface.py b/distil/tests/unit/test_interface.py deleted file mode 100644 index 1bef7cf..0000000 --- a/distil/tests/unit/test_interface.py +++ /dev/null @@ -1,62 +0,0 @@ -# Copyright (C) 2014 Catalyst IT Ltd -# -# Licensed under the Apache License, Version 2.0 (the "License"); you may -# not use this file except in compliance with the License. You may obtain -# a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT -# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the -# License for the specific language governing permissions and limitations -# under the License. - -from datetime import datetime, timedelta -import sqlalchemy as sa -from sqlalchemy.orm import scoped_session, create_session -import unittest - -from distil.models import UsageEntry, Resource, SalesOrder, Tenant, _Last_Run -from distil import models -from distil.tests.unit import data_samples - - -class TestInterface(unittest.TestCase): - def setUp(self): - super(TestInterface, self).setUp() - - self.engine = sa.create_engine('sqlite:///:memory:') - session = scoped_session(lambda: create_session(bind=self.engine)) - models.Base.metadata.create_all(bind=self.engine, checkfirst=True) - self.session = session() - - self.objects = [] - self.called_replacement_resources = False - - self.resources = (data_samples.RESOURCES["networks"] + - data_samples.RESOURCES["vms"] + - data_samples.RESOURCES["objects"] + - data_samples.RESOURCES["volumes"] + - data_samples.RESOURCES["ips"]) - - # TODO: make these constants. - self.end = datetime.utcnow() - self.start = self.end - timedelta(days=30) - - def tearDown(self): - try: - self.session.rollback() - except: - pass - - self.session.begin() - for obj in (SalesOrder, UsageEntry, Tenant, Resource, _Last_Run): - self.session.query(obj).delete(synchronize_session="fetch") - - self.session.commit() - self.session.close() - self.session = None - - self.contents = None - self.resources = [] diff --git a/distil/tests/unit/test_models.py b/distil/tests/unit/test_models.py deleted file mode 100644 index 24529d6..0000000 --- a/distil/tests/unit/test_models.py +++ /dev/null @@ -1,86 +0,0 @@ -# Copyright (C) 2014 Catalyst IT Ltd -# -# Licensed under the Apache License, Version 2.0 (the "License"); you may -# not use this file except in compliance with the License. You may obtain -# a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT -# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the -# License for the specific language governing permissions and limitations -# under the License. - -import datetime -from sqlalchemy.exc import IntegrityError, OperationalError -import unittest - -from oslo_utils import uuidutils - -from distil.models import Resource, Tenant, UsageEntry, _Last_Run -from distil.tests.unit import test_interface -from distil.tests.unit import utils - - -TENANT_ID = str(uuidutils.generate_uuid()) - - -class TestModels(test_interface.TestInterface): - def test_create_tenant(self): - self.session.begin() - t = Tenant(id=TENANT_ID, name="test", - created=datetime.datetime.utcnow(), - last_collected=datetime.datetime.utcnow()) - self.session.add(t) - self.session.commit() - t2 = self.session.query(Tenant).get(TENANT_ID) - self.assertEqual(t2.name, "test") - # self.session.commit() - - def test_create_resource(self): - self.test_create_tenant() - self.session.begin() - t = self.session.query(Tenant).get(TENANT_ID) - r = Resource(id="1234", info='fake', - tenant=t, created=datetime.datetime.utcnow()) - self.session.add(r) - self.session.commit() - r2 = self.session.query(Resource).filter(Resource.id == "1234")[0] - self.assertEqual(r2.tenant.id, t.id) - - def test_insert_usage_entry(self): - self.test_create_resource() - self.session.begin() - r = self.session.query(Resource).filter(Resource.id == "1234")[0] - u = UsageEntry(service="cheese", - volume=1.23, - resource=r, - tenant=r, - start=(datetime.datetime.utcnow() - - datetime.timedelta(minutes=5)), - end=datetime.datetime.utcnow(), - created=datetime.datetime.utcnow()) - self.session.add(u) - try: - self.session.commit() - except Exception as e: - self.fail("Exception: %s" % e) - - def test_overlapping_usage_entry_fails(self): - self.test_insert_usage_entry() - try: - self.test_insert_usage_entry() - # we fail here - #self.fail("Inserted overlapping row; failing") - except (IntegrityError, OperationalError): - self.session.rollback() - self.assertEqual(self.session.query(UsageEntry).count(), 1) - - def test_last_run(self): - self.session.begin() - run = _Last_Run(last_run=datetime.datetime.utcnow()) - self.session.add(run) - self.session.commit() - result = self.session.query(_Last_Run) - self.assertEqual(result.count(), 1) diff --git a/distil/tests/unit/test_transformers.py b/distil/tests/unit/test_transformers.py deleted file mode 100644 index 7bc283a..0000000 --- a/distil/tests/unit/test_transformers.py +++ /dev/null @@ -1,691 +0,0 @@ -# Copyright (C) 2014 Catalyst IT Ltd -# -# Licensed under the Apache License, Version 2.0 (the "License"); you may -# not use this file except in compliance with the License. You may obtain -# a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT -# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the -# License for the specific language governing permissions and limitations -# under the License. - -import distil.transformers -from distil.constants import date_format, states -import unittest -import mock -import datetime - -from distil.tests.unit import utils as unit_utils - -p = lambda t: datetime.datetime.strptime(t, date_format) - - -class FAKE_DATA: - t0 = p('2014-01-01T00:00:00') - t0_10 = p('2014-01-01T00:10:00') - t0_20 = p('2014-01-01T00:30:00') - t0_30 = p('2014-01-01T00:30:00') - t0_40 = p('2014-01-01T00:40:00') - t0_50 = p('2014-01-01T00:50:00') - t1 = p('2014-01-01T01:00:00') - - # and one outside the window - tpre = p('2013-12-31T23:50:00') - - flavor = '1' - flavor2 = '2' - - -class TestUptimeTransformer(unittest.TestCase): - - def _run_transform(self, data): - xform = distil.transformers.Uptime() - distil.config.setup_config(unit_utils.FAKE_CONFIG) - with mock.patch('distil.helpers.flavor_name') as flavor_name: - flavor_name.side_effect = lambda x: x - return xform.transform_usage('state', data, FAKE_DATA.t0, - FAKE_DATA.t1) - - def test_trivial_run(self): - """ - Test that an no input data produces empty uptime. - """ - state = [] - result = self._run_transform(state) - self.assertEqual({}, result) - - def test_online_constant_flavor(self): - """ - Test that a machine online for a 1h period with constant - flavor works and gives 1h of uptime. - """ - state = [ - {'timestamp': FAKE_DATA.t0, 'counter_volume': states['active'], - 'resource_metadata': {'flavor.id': FAKE_DATA.flavor}}, - {'timestamp': FAKE_DATA.t1, 'counter_volume': states['active'], - 'resource_metadata': {'flavor.id': FAKE_DATA.flavor}} - ] - - result = self._run_transform(state) - # there should be one hour of usage. - self.assertEqual({FAKE_DATA.flavor: 3600}, result) - - def test_offline_constant_flavor(self): - """ - Test that a machine offline for a 1h period with constant flavor - works and gives zero uptime. - """ - - state = [ - {'timestamp': FAKE_DATA.t0, 'counter_volume': states['stopped'], - 'resource_metadata': {'flavor.id': FAKE_DATA.flavor}}, - {'timestamp': FAKE_DATA.t1, 'counter_volume': states['stopped'], - 'resource_metadata': {'flavor.id': FAKE_DATA.flavor}} - ] - - result = self._run_transform(state) - # there should be no usage, the machine was off. - self.assertEqual({}, result) - - def test_shutdown_during_period(self): - """ - Test that a machine run for 0.5 then shutdown gives 0.5h uptime. - """ - state = [ - {'timestamp': FAKE_DATA.t0, 'counter_volume': states['active'], - 'resource_metadata': {'flavor.id': FAKE_DATA.flavor}}, - {'timestamp': FAKE_DATA.t0_30, 'counter_volume': states['stopped'], - 'resource_metadata': {'flavor.id': FAKE_DATA.flavor}}, - {'timestamp': FAKE_DATA.t1, 'counter_volume': states['stopped'], - 'resource_metadata': {'flavor.id': FAKE_DATA.flavor}} - ] - - result = self._run_transform(state) - # there should be half an hour of usage. - self.assertEqual({FAKE_DATA.flavor: 1800}, result) - - def test_online_flavor_change(self): - """ - Test that a machine run for 0.5h as m1.tiny, resized to m1.large, - and run for a further 0.5 yields 0.5h of uptime in each class. - """ - state = [ - {'timestamp': FAKE_DATA.t0, 'counter_volume': states['active'], - 'resource_metadata': {'flavor.id': FAKE_DATA.flavor}}, - {'timestamp': FAKE_DATA.t0_30, 'counter_volume': states['active'], - 'resource_metadata': {'flavor.id': FAKE_DATA.flavor2}}, - {'timestamp': FAKE_DATA.t1, 'counter_volume': states['active'], - 'resource_metadata': {'flavor.id': FAKE_DATA.flavor2}} - ] - - result = self._run_transform(state) - # there should be half an hour of usage in each of m1.tiny and m1.large - self.assertEqual({FAKE_DATA.flavor: 1800, FAKE_DATA.flavor2: 1800}, - result) - - def test_period_leadin_none_available(self): - """ - Test that if the first data point is well into the window, and we had - no lead-in data, we assume no usage until our first real data point. - """ - state = [ - {'timestamp': FAKE_DATA.t0_10, 'counter_volume': states['active'], - 'resource_metadata': {'flavor.id': FAKE_DATA.flavor}}, - {'timestamp': FAKE_DATA.t1, 'counter_volume': states['active'], - 'resource_metadata': {'flavor.id': FAKE_DATA.flavor}} - ] - - result = self._run_transform(state) - # there should be 50 minutes of usage; we have no idea what happened - # before that so we don't try to bill it. - self.assertEqual({FAKE_DATA.flavor: 3000}, result) - - def test_period_leadin_available(self): - """ - Test that if the first data point is well into the window, but we *do* - have lead-in data, then we use the lead-in clipped to the start of the - window. - """ - state = [ - {'timestamp': FAKE_DATA.tpre, 'counter_volume': states['active'], - 'resource_metadata': {'flavor.id': FAKE_DATA.flavor}}, - {'timestamp': FAKE_DATA.t0_10, 'counter_volume': states['active'], - 'resource_metadata': {'flavor.id': FAKE_DATA.flavor}}, - {'timestamp': FAKE_DATA.t1, 'counter_volume': states['active'], - 'resource_metadata': {'flavor.id': FAKE_DATA.flavor}} - ] - - result = self._run_transform(state) - # there should be 60 minutes of usage; we have no idea what - # happened before that so we don't try to bill it. - self.assertEqual({FAKE_DATA.flavor: 3600}, result) - - -class InstanceUptimeTransformerTests(unittest.TestCase): - - def _run_transform(self, data): - xform = distil.transformers.InstanceUptime() - distil.config.setup_config(unit_utils.FAKE_CONFIG) - with mock.patch('distil.helpers.flavor_name') as flavor_name: - flavor_name.side_effect = lambda x: x - return xform.transform_usage('state', data, FAKE_DATA.t0, - FAKE_DATA.t1) - - def test_trivial_run(self): - """ - Test that an no input data produces empty uptime. - """ - state = [] - result = self._run_transform(state) - self.assertEqual({}, result) - - def test_online_constant_flavor(self): - """ - Test that a machine online for a 1h period with constant - flavor works and gives 1h of uptime. - """ - state = [ - {'timestamp': FAKE_DATA.t0, - 'resource_metadata': {'flavor.id': FAKE_DATA.flavor, - 'status': 'active'}}, - {'timestamp': FAKE_DATA.t1, - 'resource_metadata': {'flavor.id': FAKE_DATA.flavor, - 'status': 'active'}} - ] - - result = self._run_transform(state) - # there should be one hour of usage. - self.assertEqual({FAKE_DATA.flavor: 3600}, result) - - def test_offline_constant_flavor(self): - """ - Test that a machine offline for a 1h period with constant flavor - works and gives zero uptime. - """ - - state = [ - {'timestamp': FAKE_DATA.t0, - 'resource_metadata': {'flavor.id': FAKE_DATA.flavor, - 'status': 'stopped'}}, - {'timestamp': FAKE_DATA.t1, - 'resource_metadata': {'flavor.id': FAKE_DATA.flavor, - 'status': 'stopped'}} - ] - - result = self._run_transform(state) - # there should be no usage, the machine was off. - self.assertEqual({}, result) - - def test_shutdown_during_period(self): - """ - Test that a machine run for 0.5 then shutdown gives 0.5h uptime. - """ - state = [ - {'timestamp': FAKE_DATA.t0, - 'resource_metadata': {'flavor.id': FAKE_DATA.flavor, - 'status': 'active'}}, - {'timestamp': FAKE_DATA.t0_30, - 'resource_metadata': {'flavor.id': FAKE_DATA.flavor, - 'status': 'stopped'}}, - {'timestamp': FAKE_DATA.t1, - 'resource_metadata': {'flavor.id': FAKE_DATA.flavor, - 'status': 'stopped'}} - ] - - result = self._run_transform(state) - # there should be half an hour of usage. - self.assertEqual({FAKE_DATA.flavor: 1800}, result) - - def test_online_flavor_change(self): - """ - Test that a machine run for 0.5h as m1.tiny, resized to m1.large, - and run for a further 0.5 yields 0.5h of uptime in each class. - """ - state = [ - {'timestamp': FAKE_DATA.t0, - 'resource_metadata': {'flavor.id': FAKE_DATA.flavor, - 'status': 'active'}}, - {'timestamp': FAKE_DATA.t0_30, - 'resource_metadata': {'flavor.id': FAKE_DATA.flavor2, - 'status': 'active'}}, - {'timestamp': FAKE_DATA.t1, - 'resource_metadata': {'flavor.id': FAKE_DATA.flavor2, - 'status': 'active'}} - ] - - result = self._run_transform(state) - # there should be half an hour of usage in each of m1.tiny and m1.large - self.assertEqual({FAKE_DATA.flavor: 1800, FAKE_DATA.flavor2: 1800}, - result) - - def test_period_leadin_none_available(self): - """ - Test that if the first data point is well into the window, and we had - no lead-in data, we assume no usage until our first real data point. - """ - state = [ - {'timestamp': FAKE_DATA.t0_10, - 'resource_metadata': {'flavor.id': FAKE_DATA.flavor, - 'status': 'active'}}, - {'timestamp': FAKE_DATA.t1, - 'resource_metadata': {'flavor.id': FAKE_DATA.flavor, - 'status': 'active'}} - ] - - result = self._run_transform(state) - # there should be 50 minutes of usage; we have no idea what happened - # before that so we don't try to bill it. - self.assertEqual({FAKE_DATA.flavor: 3000}, result) - - def test_period_leadin_available(self): - """ - Test that if the first data point is well into the window, but we *do* - have lead-in data, then we use the lead-in clipped to the start of the - window. - """ - state = [ - {'timestamp': FAKE_DATA.tpre, - 'resource_metadata': {'flavor.id': FAKE_DATA.flavor, - 'status': 'active'}}, - {'timestamp': FAKE_DATA.t0_10, - 'resource_metadata': {'flavor.id': FAKE_DATA.flavor, - 'status': 'active'}}, - {'timestamp': FAKE_DATA.t1, - 'resource_metadata': {'flavor.id': FAKE_DATA.flavor, - 'status': 'active'}} - ] - - result = self._run_transform(state) - # there should be 60 minutes of usage; we have no idea what - # happened before that so we don't try to bill it. - self.assertEqual({FAKE_DATA.flavor: 3600}, result) - - def test_notification_case(self): - """ - Test that the transformer handles the notification metedata key, - if/when it can't find the status key. - """ - state = [ - {'timestamp': FAKE_DATA.t0, - 'resource_metadata': {'flavor.id': FAKE_DATA.flavor, - 'state': 'active'}}, - {'timestamp': FAKE_DATA.t1, - 'resource_metadata': {'flavor.id': FAKE_DATA.flavor, - 'state': 'active'}} - ] - - result = self._run_transform(state) - # there should be one hour of usage. - self.assertEqual({FAKE_DATA.flavor: 3600}, result) - - def test_no_state_in_metedata(self): - """ - Test that the transformer doesn't fall over if there isn't one of - the two state/status key options in the metadata. - """ - state = [ - {'timestamp': FAKE_DATA.t0, - 'resource_metadata': {'flavor.id': FAKE_DATA.flavor}}, - {'timestamp': FAKE_DATA.t1, - 'resource_metadata': {'flavor.id': FAKE_DATA.flavor}} - ] - - result = self._run_transform(state) - # there should no usage. - self.assertEqual({}, result) - - -class GaugeMaxTransformerTests(unittest.TestCase): - - def test_all_different_values(self): - """ - Tests that the transformer correctly grabs the highest value, - when all values are different. - """ - - data = [ - {'timestamp': FAKE_DATA.t0, 'counter_volume': 12}, - {'timestamp': FAKE_DATA.t0_10, 'counter_volume': 3}, - {'timestamp': FAKE_DATA.t0_20, 'counter_volume': 7}, - {'timestamp': FAKE_DATA.t0_30, 'counter_volume': 3}, - {'timestamp': FAKE_DATA.t0_40, 'counter_volume': 25}, - {'timestamp': FAKE_DATA.t0_50, 'counter_volume': 2}, - {'timestamp': FAKE_DATA.t1, 'counter_volume': 6}, - ] - - xform = distil.transformers.GaugeMax() - usage = xform.transform_usage('some_meter', data, FAKE_DATA.t0, - FAKE_DATA.t1) - - self.assertEqual({'some_meter': 25}, usage) - - def test_all_same_values(self): - """ - Tests that that transformer correctly grabs any value, - when all values are the same. - """ - - data = [ - {'timestamp': FAKE_DATA.t0, 'counter_volume': 25}, - {'timestamp': FAKE_DATA.t0_30, 'counter_volume': 25}, - {'timestamp': FAKE_DATA.t1, 'counter_volume': 25}, - ] - - xform = distil.transformers.GaugeMax() - usage = xform.transform_usage('some_meter', data, FAKE_DATA.t0, - FAKE_DATA.t1) - - self.assertEqual({'some_meter': 25}, usage) - - def test_none_value(self): - """ - Tests that that transformer correctly handles a None value. - """ - - data = [ - {'timestamp': FAKE_DATA.t0, 'counter_volume': None}, - ] - - xform = distil.transformers.GaugeMax() - usage = xform.transform_usage('some_meter', data, FAKE_DATA.t0, - FAKE_DATA.t1) - - self.assertEqual({'some_meter': 0}, usage) - - def test_none_and_other_values(self): - """ - Tests that that transformer correctly handles a None value. - """ - - data = [ - {'timestamp': FAKE_DATA.t0, 'counter_volume': None}, - {'timestamp': FAKE_DATA.t0_30, 'counter_volume': 25}, - {'timestamp': FAKE_DATA.t1, 'counter_volume': 27}, - ] - - xform = distil.transformers.GaugeMax() - usage = xform.transform_usage('some_meter', data, FAKE_DATA.t0, - FAKE_DATA.t1) - - self.assertEqual({'some_meter': 27}, usage) - - -class StorageMaxTransformerTests(unittest.TestCase): - - def test_all_different_values(self): - """ - Tests that the transformer correctly grabs the highest value, - when all values are different. - """ - - data = [ - {'timestamp': FAKE_DATA.t0, 'counter_volume': 12, - 'resource_metadata': {}}, - {'timestamp': FAKE_DATA.t0_10, 'counter_volume': 3, - 'resource_metadata': {}}, - {'timestamp': FAKE_DATA.t0_20, 'counter_volume': 7, - 'resource_metadata': {}}, - {'timestamp': FAKE_DATA.t0_30, 'counter_volume': 3, - 'resource_metadata': {}}, - {'timestamp': FAKE_DATA.t0_40, 'counter_volume': 25, - 'resource_metadata': {}}, - {'timestamp': FAKE_DATA.t0_50, 'counter_volume': 2, - 'resource_metadata': {}}, - {'timestamp': FAKE_DATA.t1, 'counter_volume': 6, - 'resource_metadata': {}}, - ] - - xform = distil.transformers.StorageMax() - usage = xform.transform_usage('some_meter', data, FAKE_DATA.t0, - FAKE_DATA.t1) - - self.assertEqual({'some_meter': 25}, usage) - - def test_all_same_values(self): - """ - Tests that that transformer correctly grabs any value, - when all values are the same. - """ - - data = [ - {'timestamp': FAKE_DATA.t0, 'counter_volume': 25, - 'resource_metadata': {}}, - {'timestamp': FAKE_DATA.t0_30, 'counter_volume': 25, - 'resource_metadata': {}}, - {'timestamp': FAKE_DATA.t1, 'counter_volume': 25, - 'resource_metadata': {}}, - ] - - xform = distil.transformers.StorageMax() - usage = xform.transform_usage('some_meter', data, FAKE_DATA.t0, - FAKE_DATA.t1) - - self.assertEqual({'some_meter': 25}, usage) - - def test_none_value(self): - """ - Tests that that transformer correctly handles a None value. - """ - - data = [ - {'timestamp': FAKE_DATA.t0, 'counter_volume': None, - 'resource_metadata': {}}, - ] - - xform = distil.transformers.StorageMax() - usage = xform.transform_usage('some_meter', data, FAKE_DATA.t0, - FAKE_DATA.t1) - - self.assertEqual({'some_meter': 0}, usage) - - def test_none_and_other_values(self): - """ - Tests that that transformer correctly handles a None value. - """ - - data = [ - {'timestamp': FAKE_DATA.t0, 'counter_volume': None, - 'resource_metadata': {}}, - {'timestamp': FAKE_DATA.t0_30, 'counter_volume': 25, - 'resource_metadata': {}}, - {'timestamp': FAKE_DATA.t1, 'counter_volume': 27, - 'resource_metadata': {}}, - ] - - xform = distil.transformers.StorageMax() - usage = xform.transform_usage('some_meter', data, FAKE_DATA.t0, - FAKE_DATA.t1) - - self.assertEqual({'some_meter': 27}, usage) - - -class TestGaugeSumTransformer(unittest.TestCase): - - def test_basic_sum(self): - """ - Tests that the transformer correctly calculate the sum value. - """ - - data = [ - {'timestamp': p('2014-01-01T00:00:00'), 'counter_volume': 1}, - {'timestamp': p('2014-01-01T00:10:00'), 'counter_volume': 1}, - {'timestamp': p('2014-01-01T01:00:00'), 'counter_volume': 1}, - ] - - xform = distil.transformers.GaugeSum() - usage = xform.transform_usage('fake_meter', data, FAKE_DATA.t0, - FAKE_DATA.t1) - - self.assertEqual({'fake_meter': 2}, usage) - - def test_none_value(self): - """ - Tests that that transformer correctly handles a None value. - """ - - data = [ - {'timestamp': FAKE_DATA.t0, 'counter_volume': None}, - ] - - xform = distil.transformers.GaugeSum() - usage = xform.transform_usage('some_meter', data, FAKE_DATA.t0, - FAKE_DATA.t1) - - self.assertEqual({'some_meter': 0}, usage) - - def test_none_and_other_values(self): - """ - Tests that that transformer correctly handles a None value. - """ - - data = [ - {'timestamp': FAKE_DATA.t0, 'counter_volume': None}, - {'timestamp': FAKE_DATA.t0_30, 'counter_volume': 25}, - {'timestamp': FAKE_DATA.t0_50, 'counter_volume': 25}, - ] - - xform = distil.transformers.GaugeSum() - usage = xform.transform_usage('some_meter', data, FAKE_DATA.t0, - FAKE_DATA.t1) - - self.assertEqual({'some_meter': 50}, usage) - - -class TestFromImageTransformer(unittest.TestCase): - """ - These tests rely on config settings for from_image, - as defined in test constants, or in conf.yaml - """ - - def test_from_volume_case(self): - """ - If instance is booted from volume transformer should return none. - """ - data = [ - {'timestamp': FAKE_DATA.t0, - 'resource_metadata': {'image_ref': ""}}, - {'timestamp': FAKE_DATA.t0_30, - 'resource_metadata': {'image_ref': "None"}}, - {'timestamp': FAKE_DATA.t1, - 'resource_metadata': {'image_ref': "None"}} - ] - - data2 = [ - {'timestamp': FAKE_DATA.t0_30, - 'resource_metadata': {'image_ref': "None"}} - ] - - xform = distil.transformers.FromImage() - distil.config.setup_config(unit_utils.FAKE_CONFIG) - usage = xform.transform_usage('instance', data, FAKE_DATA.t0, - FAKE_DATA.t1) - usage2 = xform.transform_usage('instance', data2, FAKE_DATA.t0, - FAKE_DATA.t1) - - self.assertIsNone(usage) - self.assertIsNone(usage2) - - def test_default_to_from_volume_case(self): - """ - Unless all image refs contain something, assume booted from volume. - """ - data = [ - {'timestamp': FAKE_DATA.t0, - 'resource_metadata': {'image_ref': ""}}, - {'timestamp': FAKE_DATA.t0_30, - 'resource_metadata': {'image_ref': "d5a4f118023928195f4ef"}}, - {'timestamp': FAKE_DATA.t1, - 'resource_metadata': {'image_ref': "None"}} - ] - - xform = distil.transformers.FromImage() - distil.config.setup_config(unit_utils.FAKE_CONFIG) - usage = xform.transform_usage('instance', data, FAKE_DATA.t0, - FAKE_DATA.t1) - - self.assertIsNone(usage) - - def test_from_image_case(self): - """ - If all image refs contain something, should return entry. - """ - data = [ - {'timestamp': FAKE_DATA.t0, - 'resource_metadata': {'image_ref': "d5a4f118023928195f4ef", - 'root_gb': "20"}}, - {'timestamp': FAKE_DATA.t0_30, - 'resource_metadata': {'image_ref': "d5a4f118023928195f4ef", - 'root_gb': "20"}}, - {'timestamp': FAKE_DATA.t1, - 'resource_metadata': {'image_ref': "d5a4f118023928195f4ef", - 'root_gb': "20"}} - ] - - xform = distil.transformers.FromImage() - distil.config.setup_config(unit_utils.FAKE_CONFIG) - usage = xform.transform_usage('instance', data, FAKE_DATA.t0, - FAKE_DATA.t1) - - self.assertEqual({'volume.size': 20}, usage) - - def test_from_image_case_highest_size(self): - """ - If all image refs contain something, - should return entry with highest size from data. - """ - data = [ - {'timestamp': FAKE_DATA.t0, - 'resource_metadata': {'image_ref': "d5a4f118023928195f4ef", - 'root_gb': "20"}}, - {'timestamp': FAKE_DATA.t0_30, - 'resource_metadata': {'image_ref': "d5a4f118023928195f4ef", - 'root_gb': "60"}}, - {'timestamp': FAKE_DATA.t1, - 'resource_metadata': {'image_ref': "d5a4f118023928195f4ef", - 'root_gb': "20"}} - ] - - xform = distil.transformers.FromImage() - distil.config.setup_config(unit_utils.FAKE_CONFIG) - usage = xform.transform_usage('instance', data, FAKE_DATA.t0, - FAKE_DATA.t1) - - self.assertEqual({'volume.size': 60}, usage) - - -class TestGaugeNetworkServiceTransformer(unittest.TestCase): - - def test_basic_sum(self): - """Tests that the transformer correctly calculate the sum value. - """ - - data = [ - {'timestamp': p('2014-01-01T00:00:00'), 'counter_volume': 1}, - {'timestamp': p('2014-01-01T00:10:00'), 'counter_volume': 0}, - {'timestamp': p('2014-01-01T01:00:00'), 'counter_volume': 2}, - ] - - xform = distil.transformers.GaugeNetworkService() - usage = xform.transform_usage('fake_meter', data, FAKE_DATA.t0, - FAKE_DATA.t1) - - self.assertEqual({'fake_meter': 1}, usage) - - def test_only_pending_service(self): - """Tests that the transformer correctly calculate the sum value. - """ - - data = [ - {'timestamp': p('2014-01-01T00:00:00'), 'counter_volume': 2}, - {'timestamp': p('2014-01-01T00:10:00'), 'counter_volume': 2}, - {'timestamp': p('2014-01-01T01:00:00'), 'counter_volume': 2}, - ] - - xform = distil.transformers.GaugeNetworkService() - usage = xform.transform_usage('fake_meter', data, FAKE_DATA.t0, - FAKE_DATA.t1) - - self.assertEqual({'fake_meter': 0}, usage)