statful / statful-client-php
Statful PHP client
Installs: 6
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 4
Forks: 0
Open Issues: 0
pkg:composer/statful/statful-client-php
Requires
- php: >=5.3.0
This package is not auto-updated.
Last update: 2025-10-12 06:02:16 UTC
README
PHP Client for Statful
How to use
#!php
$metricNamespace = 'business';
$metricName = 'wager';
$metricTags = array(
'transaction' => 'create',
'platform' => 'desktop',
'action' => 'bet',
);
$metricValue = 100;
$client = new StatfulClient('127.0.0.1', '2014', 'business', 'production');
$client->put($metricName, $metricValue, $metricTags, $metricNamespace);
$client->send();