cube
cube copied to clipboard
Cube: A system for time series visualization.
As collectd reports a lot of different kind of data, it would be better to use a collection per type, like it used to be the case in some previous...
Finally, I finish the stream feature for metric as well. The design is quite different from events. It was too complicated to share the polling loop, so there is one...
I've been working lately on adding some multi-tenancy to cube and would love to get feedback on the approach. I've modified the server config to take two additional parameters `authentication`...
Add a parameter to /event/get to toggle retrieving all event data. The parameter is "allData" and when present, all fields of the event are returned regardless of what is specified....
Events can be ordered by the time or any of its data fields by adding an 'order=field' parameter to the query. 'order=-time' is the default. Descending order can be specified...
Adds event subtyping as proposed in https://github.com/square/cube/issues/59 .
If options.workers is absent, this code should fork a worker for every CPU on the host. Obviously options.workers may be used to override this default. Please update wiki documentation accordingly.
Currently if you have an event expression like example.ne(i,1).ne(i,3) then you may get events returned with i=1 because the second .ne filter overwrites the first The same applies to metric...
Added the ability to specify a value for MongoDb's expireAfterSeconds property. This can help reduce the volume of data in the database at any one time. From http://docs.mongodb.org/manual/tutorial/expire-data/: "This is...