PHP code example of snakano / cakephp-datadog

1. Go to this page and download the library: Download snakano/cakephp-datadog library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

snakano / cakephp-datadog example snippets


CakePlugin::load('Datadog');

Configure::write('Dispatcher.filters', array(
    'AssetDispatcher',
    'CacheDispatcher',
    'Datadog.DatadogFilter' // Add `DatadogFilter`
));

Configure::write('Datadog.serviceName', 'My App Name');