popcorn $ PopTrackerResponseTime :: SELF
Type of this instance, automatically specialized in every classpopcorn $ PopTrackerResponseTime :: get
GET handler.core :: Object :: class_factory
Implementation used byget_class
to create the specific class.
popcorn :: TrackerHandler :: config=
Config used to access tracker dbpopcorn :: TrackerHandler :: defaultinit
popcorn :: Handler :: defaultinit
core :: Object :: defaultinit
popcorn :: Handler :: deserialize_body
Deserialize the request bodycore :: Object :: is_same_instance
Return true ifself
and other
are the same instance (i.e. same identity).
core :: Object :: is_same_serialized
Isself
the same as other
in a serialization context?
core :: Object :: is_same_type
Return true ifself
and other
have the same dynamic type.
popcorn :: TrackerHandler :: limit
Get thelimit
GET argument from req
core :: Object :: output_class_name
Display class name on stdout (debug only).popcorn :: Handler :: validate_body
Validate body input withvalidator
popcorn :: Handler :: validator
Validator used to check body inputpopcorn :: Handler :: validator=
Validator used to check body input
# Return last month response time
class PopTrackerResponseTime
super TrackerHandler
redef fun get(req, res) do
var limit = get_time - (3600 * 24 * 30)
var pipe = new MongoPipeline
pipe.match((new MongoMatch).gte("timestamp", limit))
pipe.group((new MongoGroup("$timestamp")).
sum("visits", 1).
avg("response_time", "$response_time"))
pipe.sort((new MongoMatch).eq("_id", -1))
res.json new JsonArray.from(config.tracker_logs.collection.aggregate(pipe))
end
end
lib/popcorn/pop_tracker.nit:186,1--200,3