cachet.php is a PHP client library for the Cachet status page (https://cachethq.io/).
This library could be useful for displaying details from your Cachet status page in other systems, such as a monitoring dashboard, a client ticketing system or any other web applications.
If you want to grab cachet.php with Composer, take a look on Packagist: https://packagist.org/packages/divineomega/cachetphp
Before starting, install the cachet.php library via Composer.
Now, you need to create a CachetInstance object that represents your installation of Cachet. You can do this like so:
require_once 'vendor/autoload.php';
use \DivineOmega\CachetPHP\Factories\CachetInstanceFactory;
// The API token for the demo instance is 9yMHsdioQosnyVK4iCVR.
$cachetInstance = CachetInstanceFactory::create('https://demo.cachethq.io/api/v1/', '9yMHsdioQosnyVK4iCVR');Retrieving data from the various elements of your Cachet instance is easy. Just call the appropriate getter method on your $cachetInstance object. The Cachet install will be contacted and an array of request appropriate objects be returned.
$components = $cachetInstance->getAllComponents(); // Components
$incidents = $cachetInstance->getAllIncidents(); // Incidents
$metrics = $cachetInstance->getAllMetrics(); // Metrics
$metricPoints = $metrics[0]->getAllMetricPoints(); // Metric Points
$subscribers = $cachetInstance->getAllSubscribers(); // SubscribersIf you wish to sort your results, you can use the following syntax. This works for components, incidents, metrics, metric points and subscribers.
// Get components sorted by name ascending
$components = $cachetInstance->getAllComponents('name', 'asc');Reading data from retrieved Cachet element objects is easy. Just access their public member variables.
Here's an example of outputing the id, name, description and status of a Cachet component.
// Get components
$components = $cachetInstance->getAllComponents();
// Display components
foreach ($components as $component) {
echo $component->id.' - '.$component->name.' - '.$component->description.' - '.$component->status;
echo "<br/>";
}See the official Cachet documentation for information on the variables available for each type of Cachet element.
You can create a Cachet element, such as a component or incident very easily using the cachet.php library. This involves creating an associative array of the details for the Cachet elements and then passing this to the relevant creation method.
The following example shows you how to make a simple test component.
$componentDetails = ['name' => 'Test Component '.rand(1, 99999), 'status' => 1];
$component = $cachetInstance->createComponent($componentDetails);
echo $component->id.' - '.$component->name.' - '.$component->description.' - '.$component->status;The cachet.php allows you to make changes to a Cachet element and saving those changes back to your Cachet install. This is done by directly changing the Cachet element's public member variables, and then calling the object's save() method.
The following example shows how to change the name and status of a component, then save the changes.
// Get components
$components = $cachetInstance->getAllComponents();
// Change component details
$component[0]->name = 'My awesome component';
$component[0]->status = 1;
$component[0]->save();To delete a Cachet element from your Cachet install, you simply need to call the delete() method on the appropriate Cachet element object.
For example, to delete an incident you could do the following.
// Get incidents
$incidents = $cachetInstance->getAllIncidents();
// Delete the first one
$incidents[0]->delete();Please be aware that newer versions of the cachet.php library have a completely diferent (and improved!) syntax. The core functionality has also been redesigned to be significantly more object orientated, with factories handling the core Cachet element creation and retrieveal, and objects representing these elements and their properties.
If you wish to convert your code to this version, please review the examples shown in this readme file.
- PHP >= 5.3.0
- Guzzle ~6.0
If you've found a bug or a new feature, please report it as a GitHub issue.
For other queries, I'm available on Twitter (Jordan Hall) or you can contact me here.