|
1 | | -sentry: |
2 | | - dsn: http://[email protected]/sentry/1 |
3 | | - register_error_handler: false |
4 | | - tracing: |
5 | | - enabled: true |
6 | | - options: |
7 | | - capture_silenced_errors: false |
8 | | - error_types: E_ALL & ~E_USER_DEPRECATED |
9 | | - traces_sample_rate: 0 |
10 | | - ignore_exceptions: |
11 | | - - 'Symfony\Component\HttpKernel\Exception\BadRequestHttpException' |
12 | | - - 'Symfony\Component\ErrorHandler\Error\FatalError' |
13 | | - - 'Symfony\Component\Debug\Exception\FatalErrorException' |
14 | | - ignore_transactions: 'GET tracing_ignored_transaction' |
15 | | - transport: 'Sentry\SentryBundle\Tests\End2End\StubTransport' |
16 | | - |
17 | | - |
18 | | -framework: |
19 | | - router: { resource: "%routing_config_dir%/routing.yml" } |
20 | | - secret: secret |
21 | | - test: ~ |
22 | | - annotations: false |
23 | | - php_errors: |
24 | | - log: true |
25 | | - |
26 | 1 | services: |
27 | | - test.hub: |
28 | | - alias: Sentry\State\HubInterface |
29 | | - public: true |
30 | | - |
31 | | - Sentry\SentryBundle\Tests\End2End\StubTransport: ~ |
32 | | - |
33 | 2 | Sentry\Monolog\BreadcrumbHandler: |
34 | 3 | arguments: |
35 | 4 | - '@Sentry\State\HubInterface' |
36 | 5 | - !php/const Monolog\Logger::WARNING |
37 | 6 |
|
38 | | - Sentry\SentryBundle\Tests\End2End\App\Controller\MainController: |
39 | | - autowire: true |
40 | | - tags: |
41 | | - - controller.service_arguments |
42 | | - |
43 | 7 | Sentry\SentryBundle\Tests\End2End\App\Controller\BufferFlushController: |
44 | 8 | autowire: true |
45 | 9 | tags: |
46 | 10 | - controller.service_arguments |
47 | 11 |
|
48 | 12 | Sentry\SentryBundle\Tests\End2End\App\Command\MainCommand: |
49 | | - tags: [{ name: 'console.command', command: 'main-command' }] |
| 13 | + tags: [ { name: 'console.command', command: 'main-command' } ] |
50 | 14 |
|
51 | 15 | Sentry\SentryBundle\Tests\End2End\App\Command\BreadcrumbTestCommand: |
52 | 16 | autowire: true |
53 | | - tags: [{ name: 'console.command', command: 'sentry:breadcrumb:test'}] |
| 17 | + tags: [ { name: 'console.command', command: 'sentry:breadcrumb:test' } ] |
54 | 18 |
|
55 | 19 | Sentry\SentryBundle\Tests\End2End\App\Command\DummyTestCommand: |
56 | 20 | autowire: true |
57 | | - tags: [{ name: 'console.command', command: 'sentry:dummy:test'}] |
| 21 | + tags: [ { name: 'console.command', command: 'sentry:dummy:test' } ] |
58 | 22 |
|
59 | 23 | Sentry\SentryBundle\Tests\End2End\App\Command\SubcommandTestCommand: |
60 | 24 | autowire: true |
61 | | - tags: [{ name: 'console.command', command: 'sentry:subcommand:test'}] |
| 25 | + tags: [ { name: 'console.command', command: 'sentry:subcommand:test' } ] |
62 | 26 |
|
63 | 27 | Sentry\SentryBundle\Tests\End2End\App\Command\CrashingSubcommandTestCommand: |
64 | 28 | autowire: true |
65 | | - tags: [{ name: 'console.command', command: 'sentry:subcommand:crash'}] |
| 29 | + tags: [ { name: 'console.command', command: 'sentry:subcommand:crash' } ] |
66 | 30 |
|
67 | 31 |
|
68 | 32 | monolog: |
69 | 33 | handlers: |
70 | 34 | main: |
71 | | - type: stream |
72 | | - path: "%kernel.logs_dir%/%kernel.environment%.log" |
| 35 | + type: stream |
| 36 | + path: "%kernel.logs_dir%/%kernel.environment%.log" |
73 | 37 | level: debug |
74 | 38 | sentry: |
75 | 39 | type: sentry |
|
0 commit comments