Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/divlooper/elasticapmbundle

Elastic APM Client for Symfony
https://github.com/divlooper/elasticapmbundle

elastic elastic-apm php symfony symfony-bundle

Last synced: about 7 hours ago
JSON representation

Elastic APM Client for Symfony

Awesome Lists containing this project

README

        

# Elastic APM Symfony Bundle

## Installation

#### Step 1: Download DivLooperElasticAPMBundle using composer
Require the bundle with composer:
```
$ composer require divlooper/elastic-apm-bundle
```
#### Step 2: Enable the bundle
Enable the bundle in the `bundles.php` config file:

```php
['all' => true],
// ...
];

```

#### Step 3: Configure DivLooperElasticAPMBundle
Add the following configuration to config/packages/div_looper_elastic_apm.yaml file.

```yaml
div_looper_elastic_apm:
app_name: 'My Symfony Project'
app_version: '1.0'
elastic_apm_server: 'http://127.0.0.1:8200'
secret_token: 'x0x0x0x0x0x'
```