diff --git a/ceilometer/storage/impl_mongodb.py b/ceilometer/storage/impl_mongodb.py index 14dab014b..442f25fa3 100644 --- a/ceilometer/storage/impl_mongodb.py +++ b/ceilometer/storage/impl_mongodb.py @@ -28,6 +28,7 @@ import weakref import bson.code import bson.objectid +import json import pymongo from oslo.config import cfg @@ -172,40 +173,86 @@ class Connection(base.Connection): } """) - MAP_STATS = bson.code.Code(""" - function () { - emit('statistics', { unit: this.counter_unit, - min : this.counter_volume, - max : this.counter_volume, - sum : this.counter_volume, - count : NumberInt(1), - duration_start : this.timestamp, - duration_end : this.timestamp, - period_start : this.timestamp, - period_end : this.timestamp} ) - } - """) + EMIT_STATS_COMMON = """ + emit(%(key_val)s, { unit: this.counter_unit, + min : this.counter_volume, + max : this.counter_volume, + sum : this.counter_volume, + count : NumberInt(1), + groupby : %(groupby_val)s, + duration_start : this.timestamp, + duration_end : this.timestamp, + period_start : %(period_start_val)s, + period_end : %(period_end_val)s} ) + """ - MAP_STATS_PERIOD = bson.code.Code(""" - function () { - var period = %d * 1000; - var period_first = %d * 1000; + MAP_STATS_PERIOD_VAR = """ + var period = %(period)d * 1000; + var period_first = %(period_first)d * 1000; var period_start = period_first + (Math.floor(new Date(this.timestamp.getTime() - period_first) / period) * period); - emit(period_start, - { unit: this.counter_unit, - min : this.counter_volume, - max : this.counter_volume, - sum : this.counter_volume, - count : NumberInt(1), - duration_start : this.timestamp, - duration_end : this.timestamp, - period_start : new Date(period_start), - period_end : new Date(period_start + period) } ) + """ + + MAP_STATS_GROUPBY_VAR = """ + var groupby_fields = %(groupby_fields)s; + var groupby = {}; + var groupby_key = {}; + + for ( var i=0; i