Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/divlooper/elasticapmbundle
- Owner: DivLooper
- License: mit
- Created: 2019-02-08T08:32:53.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2019-02-08T17:17:54.000Z (almost 6 years ago)
- Last Synced: 2024-11-15T18:28:21.340Z (1 day ago)
- Topics: elastic, elastic-apm, php, symfony, symfony-bundle
- Language: PHP
- Homepage:
- Size: 5.86 KB
- Stars: 5
- Watchers: 2
- Forks: 6
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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'
```