1<?php
2
3return [
4 /*
5 |--------------------------------------------------------------------------
6 | Datadog Tracking Enabled
7 |--------------------------------------------------------------------------
8 |
9 | Set this option to enable or disable the datadog helper.
10 |
11 */
12 'enabled' => env('DATADOG_ENABLED', true),
13
14 /*
15 |--------------------------------------------------------------------------
16 | Datadog Tracking Prefix
17 |--------------------------------------------------------------------------
18 |
19 | This is the prefix that will be placed in front of all of your metric entries. If you have multiple
20 | applications being tracked in Datadog, it is recommended putting the application name somewhere
21 | inside of your prefix. A common naming scheme is something like app.<app-name>.
22 |
23 */
24 'prefix' => '',
25 'prefix_web' => env('DATADOG_PREFIX', 'osu.web'), // different key to revert to manually prefixed tags
26 'api_key' => env('DATADOG_API_KEY'),
27 'application_key' => env('DATADOG_APP_KEY'),
28 'datadog_host' => env('DATADOG_HOST', 'https://app.datadoghq.com'),
29 'statsd_server' => env('DATADOG_STATSD_HOST', 'localhost'),
30 'statsd_port' => env('DATADOG_STATSD_PORT', 8125),
31 'statsd_socket_path' => env('DATADOG_STATSD_SOCKET'),
32 'global_tags' => [],
33 'max_buffer_length' => 1,
34 'middleware_disable_url_tag' => true,
35];