Questions tagged [keen-io]

keen-io refers to the libraries and APIs produced for event analytics by the "Keen IO" company.

Keen IO provides a modern and massively scalable analytics API including libraries for data collection, querying, and visualization.

Keen IO collects arbitrary events in JSON format, automatically ingesting any new events and rich custom properties you send. Keen IO's query APIs make it straightforward to run counts, sums, segmentation, and more.

Keen IO is typically viewed as an alternative to building and maintaining your own in-house analytics backend. It is commonly used to build custom/advanced analytics solutions, embed analytics reports into apps, and white label analytics for customers.

132 questions
0
votes
0 answers

Keen IO Php client connection issue

I'm trying to use keen.io in PHP application. The below code works fine from a eclipse ide but shows connection reset from chrome/firefox. Any help is much appreciated. I used phpunittest to assert that instances are working fine. The test went…
Casperkamal
  • 1
  • 1
  • 5
0
votes
1 answer

CurlExeception with Guzzle using KeenIO

I am building a Laravel (5.1) site which uses KeenIO to do some event tracking. Everything went fine locally (on a mac), so I pushed everything up to my digital ocean droplet through forge to start testing on the server. I delegated the keen events…
Panda4Man
  • 585
  • 2
  • 9
  • 17
0
votes
1 answer

Keen IO Chart Labels

I'm trying to figure out how to adjust the labels on an Area Chart visualization of my Keen IO data. I've looked through the available configuration options, but I'm not seeing what option would do this. Currently my chart just lists "null" on the…
0
votes
2 answers

Formatting JSON for bulk Keen.io upload

I am trying to setup a sample bulk upload to Keen.io using the ruby gem. From their docs: Keen.publish_batch( :signups => [ { :name => "Bob" }, { :name => "Mary" } ], :purchases => [ { :price => 10 }, { :price => 20 } …
cman77
  • 1,753
  • 1
  • 22
  • 48
0
votes
0 answers

How to extract information from a json file with javascript

I have a local json file [{"image": "//www.dw.com/image/0,,18610867_301,00.jpg", "link": "//www.dw.com/en/alcoa-splitting-up-amid-commodity-slump/a-18746568", "heading": "Alcoa splitting up amid commodity slump"}, {"image":…
Imo
  • 1,455
  • 4
  • 28
  • 53
0
votes
2 answers

How to read a simple json file in keen js

I have a couple of basic local json files. I want to visualize the json data using keen.io. But somehow I cannot send my events to keen. There are no errors in the console. var client = new Keen({ projectId: "key", writeKey: "key" …
Imo
  • 1,455
  • 4
  • 28
  • 53
0
votes
1 answer

Modify Keen.io donut chart using c3.js (Javascript SDK)

I'm trying to format donut charts using c3.js using the Keen javascript SDK. My example is pretty simple: var query1 = new Keen.Query("count_unique", { eventCollection: "notification", filters: filters, groupBy:…
James
  • 1,292
  • 1
  • 14
  • 29
0
votes
1 answer

Setting field type to datetime [keen-io]

I have an object I'm tracking in keen-io that has several date fields. I'd like Keen to preserve these as DateTime fields. This way I can do filtering and sorting. I'm using a map add adding the dates formated as ISO-8601. Map o =…
Broonix
  • 1,135
  • 2
  • 11
  • 26
0
votes
1 answer

getting a "need project id error" in Keen

I get the following error: Keen.delete(:iron_worker_analytics, filters: [{:property_name => 'start_time', :operator => 'eq', :property_value => '0001-01-01T00:00:00Z'}]) Keen::ConfigurationError: Keen IO Exception: Project ID must be set However,…
Satchel
  • 16,414
  • 23
  • 106
  • 192
0
votes
1 answer

Event within timeframe (without date) in Keen.io

Is there a way to query for all events that have occurred between 12am - 9am on any date?
Ward
  • 3,318
  • 3
  • 30
  • 50
0
votes
1 answer

Interpret locations from Keen.io JSON file in logstash filter

I'm trying to parse a JSON file from Keen.io with logstash into elasticsearch. The location and timestamp are stored in parameters like this: { "result": [ { "keen": { "timestamp": "2014-12-02T12:23:51.000Z", …
parsley72
  • 8,449
  • 8
  • 65
  • 98
0
votes
1 answer

Deleting event collections in Keen.io

When our keen.io project was started, there were a bunch (hundreds?) of event collections accidentally created due to the names being changed dynamically (i.e. viewed page blog name X, viewed page blog Y, viewed page blog Z, etc). Does anyone know…
1 2 3
8
9