KeenClient-Java
KeenClient-Java copied to clipboard
Official Java client for the Keen IO API. Build analytics features directly into your Java apps.
When we call `onSuccess()`/`onFailure` on `KeenCallback`/`KeenDetailedCallback` we swallow any exceptions. It probably makes sense to not generate exceptions unless debug mode is turned on, if those exceptions were raised in...
Parsing responses into the various types of `QueryResult` is quite a bit of complex code at this point, and it's all nestled right in with the rest of `KeenQueryClient`, which...
Since the API does allow for a given property to be `null` and pass an `exists` filter with a value of `true`, and of course a property can have the...
See comments in Issue #86
Keen crashes my app shortly after launch with this error. ``` java.lang.RuntimeException: java.net.ConnectException: failed to connect to api.keen.io/127.0.0.1 (port 443) after 30000ms: isConnected failed: ECONNREFUSED (Connection refused) at io.keen.client.java.KeenClient.handleFailure(KeenClient.java:1617) at...
We are having some issues with the Keen.io java client we are pushing a lot of events. those event are leagcy event and we are overriding the timestamp value of...
Creating deeply nested maps in Java is kind of painful (see https://news.ycombinator.com/item?id=8637447). We should provide a utility to make it easier. One possible way (which has been explicitly requested at...