The Keen IO API lets developers build analytics features directly into their apps.
$ php composer.phar require keen-io/keen-io:~2.5
For composer documentation, please refer to getcomposer.org.
For easier usage the following community developed integrations are also available:
Please review the change log ( CHANGE.md ) before upgrading!
This client was built using Guzzle, a PHP HTTP client & framework for building RESTful web service clients.
When you first create a new KeenIOClient
instance you can pass configuration settings like your Project ID and API Keys in an array
to the factory method. These are optional and can be later specified through Setter methods.
For certain API Resources, the Master API Key is required and can also be passed to the factory method in the configuration array. Please read the Security Documentation regarding this Master API key.
For Requests, the KeenIOClient
will determine what API Key should be passed based on the type of Request and configuration in the
Service Description. The API Key is passed in the Authorization
header of the request.
For a list of required and available parameters for the different API Endpoints, please consult the Keen IO API Reference Docs.
The factory method accepts an array of configuration settings for the Keen IO Webservice Client.
Setting | Property Name | Description |
---|---|---|
Project ID | projectId |
The Keen IO Project ID for your specific project |
Master API Key | masterKey |
The Keen IO Master API Key - the one API key to rule them all |
Read API Key | readKey |
The Read API Key - used for access to read only GET or HEAD operations of the API |
Write API Key | writeKey |
The Write API Key - used for write PUT or POST Requests operations of the API |
API Version | version |
The API Version. Currently used to version the API URL and Service Description |
When passing version
to the factory method or using the setVersion()
method, the Client will try to load a client Service Description
that matches that version. That Service Description defines the operations available to the Webservice Client.
Currently the Keen IO Webservice Client only supports - and automatically defaults - to the current version (3.0
) of the API.
Since the Keen client extends the Guzzle client, you get all the power and flexibility of that behind the scenes. If you need more complex logging, backoff/retry handling, or asynchronous requests, check out their Plugins.
use KeenIO\Client\KeenIOClient;
$client = KeenIOClient::factory([
'projectId' => $projectId,
'writeKey' => $writeKey,
'readKey' => $readKey
]);
For more options see Guzzle Client documentation Please notice that all other options passed to the constructor are used as default request options with every request created by the client.
You can reconfigure the Keen IO Client configuration options through available getters and setters. You can get and set the following options:
projectId
, readKey
, writeKey
, masterKey
, & version
.
//Get the current Project Id
$client->getProjectId();
//Set a new Project Id
$client->setProjectId($someNewProjectId);
//Get the current Read Key
$client->getReadKey();
//Set a new Read Key
$newReadKey = $client->createScopedKey($filters, $allowedOperations);
$client->setReadKey($newReadKey);
Once you've created a KeenIOClient
, sending events is simple:
$event = ['purchase' => ['item' => 'Golden Elephant']];
$client->addEvent('purchases', $event);
A data enrichment is a powerful add-on to enrich the data you're already streaming to Keen IO by pre-processing the data and adding helpful data properties. To activate add-ons, you simply add some new properties within the "keen" namespace in your events. Detailed documentation for the configuration of our add-ons is available here.
Here is an example of using the URL parser:
$client->addEvent('requests', [
'page_url' => 'http://my-website.com/cool/link?source=twitter&foo=bar/#title',
'keen' => [
'addons' => [
[
'name' => 'keen:url_parser',
'input' => [
'url' => 'page_url'
],
'output' => 'parsed_page_url'
]
]
]
]);
Keen IO will parse the URL for you and that would equivalent to:
$client->addEvent('requests', [
'page_url' => 'http://my-website.com/cool/link?source=twitter&foo=bar/#title',
'parsed_page_url' => [
'protocol' => 'http',
'domain' => 'my-website.com',
'path' => '/cool/link',
'anchor' => 'title',
'query_string' => [
'source' => 'twitter',
'foo' => 'bar'
]
]
]);
Here is another example of using the Datetime parser. Let's assume you want to do a deeper analysis on the "purchases" event by day of the week (Monday, Tuesday, Wednesday, etc.) and other interesting Datetime components. You can use "keen.timestamp" property that is included in your event automatically.
$client->addEvent('purchases', [
'keen' => [
'addons' => [
[
'name' => 'keen:date_time_parser',
'input' => [
'date_time' => 'keen.timestamp'
],
'output' => 'timestamp_info'
]
]
],
'price' => 500
]);
Other Data Enrichment add-ons are located in the API reference docs.
You can upload multiple Events to multiple Event Collections at once!
In the example below, we will create two new purchase events in the purchases
event collection and a single
new event in the sign_ups
event collection. Note that the keys of the data
array specify the event_collection
where those events should be stored.
$purchases = [
['purchase' => ['item' => 'Golden Elephant']],
['purchase' => ['item' => 'Magenta Elephant']]
];
$signUps = [
['name' => 'foo', 'email' => 'bar@baz.com']
];
$client->addEvents(['purchases' => $purchases, 'sign_ups' => $signUps]);
All Analysis Endpoints should be supported. See the API Reference Docs for required parameters. You can also check the Service Description for configured API Endpoints.
Below are a few example calls to some of the Analysis methods available.
Note: Once the API acknowledges that your event has been stored, it may take up to 10 seconds before it will appear in query results.
//Count
$totalPurchases = $client->count('purchases', ['timeframe' => 'this_14_days']);
//Count Unqiue
$totalItems = $client->countUnique('purchases', ['target_property' => 'purchase.item', 'timeframe' => 'this_14_days']);
//Select Unique
$items = $client->selectUnique('purchases', ['target_property' => 'purchase.item', 'timeframe' => 'this_14_days']);
//Multi Analysis
$analyses = [
'clicks' => ['analysis_type' => 'count'],
'average price' => ['analysis_type' => 'average', 'target_property' => 'purchase.price'],
'timeframe' => 'this_14_days'
];
$stats = $client->multiAnalysis('purchases', ['analyses' => $analyses]);
//Using Filters in your Analysis
$filters = [
['property_name' => 'item.price', 'operator' => 'gt', 'property_value' => 10]
];
$client->count('purchases', ['filters' => $filters, 'timeframe' => 'this_14_days']);
Scoped keys allow you to secure the requests to the API Endpoints and are especially useful when you are providing access to multiple clients or applications. You should read the Keen IO docs concerning Scoped Keys for more details.
$filter = [
'property_name' => 'user_id',
'operator' => 'eq',
'property_value' => '123'
];
$filters = [$filter];
$allowedOperations = ['read'];
$scopedKey = $client->createScopedKey($filters, $allowedOperations);
Saved Queries allow you to perform with exactly the same parameters every time with minimal effort. It's effectively a bookmark or macro to analysis that you can jump to or share without configuring each time. While you can create and access them via the Dashboard, the PHP library gives you the same ability.
$client = KeenIOClient::factory([
'projectId' => $project_id,
'masterKey' => $master_key
]);
$query = [
"analysis_type" => "count",
"event_collection" => "api_requests",
"filters" =>
[
[
"property_name" => "user_agent",
"operator" => "ne",
"property_value"=> "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)"
]
],
"timeframe" => "this_2_weeks"
];
$results = $client->createSavedQuery(['query_name' => 'total-API-requests', 'query' => $query]);
$client = KeenIOClient::factory([
'projectId' => $project_id,
'masterKey' => $master_key
]);
$results = $client->getSavedQuery(['query_name' => 'total-API-requests']);
By Caching a Query, you are adding a refresh_rate
property to a query payload.
Cached Queries helps you to automatically refresh a saved query within a particular time. This allows you to get an immediate result using the saved query for a subsequent trip.
You can either cache a query while creating a saved query or updating a saved query.
While you can create this via the Dashboard, the PHP library gives you the same ability.
$client = KeenIOClient::factory([
'projectId' => $project_id,
'masterKey' => $master_key
]);
$query = [
"analysis_type" => "count",
"event_collection" => "api_requests",
"filters" =>
[
[
"property_name" => "user_agent",
"operator" => "ne",
"property_value"=> "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)"
]
],
"timeframe" => "this_2_weeks",
"refresh_rate" => 14400
];
$client->createSavedQuery(['query_name' => 'total-API-requests', 'query' => $query]);
$client = KeenIOClient::factory([
'projectId' => $project_id,
'masterKey' => $master_key
]);
$query = [
"analysis_type" => "count",
"event_collection" => "api_requests",
"filters" =>
[
[
"property_name" => "user_agent",
"operator" => "ne",
"property_value"=> "Pingdom.com_bot_version_1.4_(http://www.pingdom.com/)"
]
],
"timeframe" => "this_2_weeks",
"refresh_rate" => 14400
];
$results = $client->updateSavedQuery(['query_name' => 'total-API-requests', 'query' => $query]);
$client = KeenIOClient::factory([
'projectId' => $project_id,
'masterKey' => $master_key
]);
$results = $client->getSavedQuery(['query_name' => 'total-API-requests']);
When your client sends a request that the API rejects with an HTTP 400 BAD REQUEST or similar error, it is translated to an exception. You might inspect this exception object's getMessage() method, like this:
try {
$client->addEvent( "php-events" , ['broken.purchase' => ['item' => 'Golden Elephant', 'amount' => 42.50]] );
} catch( Exception $e ) {
print $e->getMessage();
}
This won't give you much in the way of useful details, though:
Client error response
[status code] 400
[reason phrase] Bad Request
[url] ...
Instead, use the getResponse() method, which will give you the entire HTTP response:
try {
$client->addEvent( "php-events" , ['broken.purchase' => ['item' => 'Golden Elephant', 'amount' => 42.50]] );
} catch( Exception $e ) {
print $e->getResponse();
}
HTTP/1.1 400 Bad Request
... headers ...
{"message": "Property name is invalid. Must be <= 256 characters, cannot contain the '.' symbol anywhere. You specified: 'broken.purchase'.",
"error_code": "InvalidPropertyNameError"}
If you have any questions, bugs, or suggestions, please report them via Github Issues. Or, come chat with us anytime at users.keen.io. We'd love to hear your feedback and ideas!
This is an open source project and we love involvement from the community! Hit us up with pull requests and issues.
$ php composer.phar install
$ vendor/bin/phpunit