Officially deprecate Distil v1 API

Nobody is using v1 API and given Distil is not an offical project
of OpenStack, so we don't have to follow the normal API deprecation
process. Let's officially deprecate Distil v1 API in Rocky. And
Distil will follow the normal deprecation process since Rocky.

Change-Id: Ice2d1422ab94eb92df9bf5ad02f3ecda884961a2
This commit is contained in:
Feilong Wang 2017-08-21 11:00:54 +12:00
parent 675e42f0d2
commit b13f623622
121 changed files with 0 additions and 94218 deletions

View File

@ -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!")

View File

@ -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}

View File

@ -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)

View File

@ -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 '<UsageEntry {tenant_id=%s resource_id=%s service=%s start=%s end=%s volume=%s}>' % (
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
)

View File

@ -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']
}

View File

@ -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

View File

@ -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": ""
}
}
}

View File

@ -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"
}
]
}

View File

@ -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"
}
]
}

View File

@ -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"
}
]
}

View File

@ -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"
}
]
}

View File

@ -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"
}
]
}

View File

@ -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"
}
}
}

View File

@ -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"
}
]
}

View File

@ -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"
}
]
}

View File

@ -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"
}
]
}

View File

@ -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"
}
]
}

File diff suppressed because it is too large Load Diff

View File

@ -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"
}
]
}

View File

@ -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"
}
]
}

View File

@ -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"
}
}
}

View File

@ -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"
}
]
}

View File

@ -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"
}
]
}

View File

@ -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"
}
}
}

View File

@ -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"
}
]
}

View File

@ -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"
}
]
}

View File

@ -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"
}
]
}

View File

@ -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"
}
]
}

View File

@ -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"
}
}
}

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -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"
}
]
}

File diff suppressed because it is too large Load Diff

View File

@ -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"
}
]
}

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -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"
}
]
}

File diff suppressed because it is too large Load Diff

View File

@ -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"
}
}
}

View File

@ -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"
}
]
}

View File

@ -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"
}
]
}

View File

@ -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"
}
}
}

View File

@ -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"
}
]
}

View File

@ -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"
}
]
}

View File

@ -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"
}
]
}

View File

@ -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": ""
}
}
}

View File

@ -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"
}
]
}

View File

@ -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": ""
}
}
}

View File

@ -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"
}
]
}

View File

@ -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"
}
}
}

File diff suppressed because it is too large Load Diff

View File

@ -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"
}
]
}

View File

@ -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"
}
]
}

File diff suppressed because it is too large Load Diff

View File

@ -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"
}
]
}

View File

@ -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"
}
]
}

View File

@ -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"
}
}
}

File diff suppressed because it is too large Load Diff

View File

@ -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"
}
]
}

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -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"
}
]
}

View File

@ -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"
}
]
}

File diff suppressed because it is too large Load Diff

View File

@ -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"
}
}
}

File diff suppressed because it is too large Load Diff

View File

@ -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"
}
]
}

View File

@ -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"
}
]
}

File diff suppressed because it is too large Load Diff

View File

@ -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"
}
]
}

View File

@ -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"
}
]
}

View File

@ -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"
}
]
}

View File

@ -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"
}
}
}

View File

@ -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"
}
]
}

View File

@ -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"
}
]
}

File diff suppressed because it is too large Load Diff

View File

@ -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"
}
]
}

View File

@ -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"
}
]
}

File diff suppressed because it is too large Load Diff

View File

@ -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"
}
]
}

View File

@ -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"
}
}
}

View File

@ -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"
}
]
}

View File

@ -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"
}
]
}

File diff suppressed because it is too large Load Diff

View File

@ -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"
}
]
}

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -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"
}
}
}

View File

@ -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"
}
]
}

File diff suppressed because it is too large Load Diff

View File

@ -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"
}
]
}

File diff suppressed because it is too large Load Diff

View File

@ -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"
}
]
}

View File

@ -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"
}
]
}

File diff suppressed because it is too large Load Diff

View File

@ -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"
}
]
}

View File

@ -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"
}
]
}

Some files were not shown because too many files have changed in this diff Show More