-
-
Notifications
You must be signed in to change notification settings - Fork 638
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update recipe for Inspector 1.3 (#1722)
* Recipe for Inspector 1.3 * Create post-install.txt * Create recipe for Inspector 1.3
- Loading branch information
1 parent
1b80c59
commit 35b0194
Showing
3 changed files
with
60 additions
and
0 deletions.
There are no files selected for viewing
47 changes: 47 additions & 0 deletions
47
inspector-apm/inspector-symfony/1.3/config/packages/inspector.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
inspector: | ||
ingestion_key: '%env(INSPECTOR_INGESTION_KEY)%' | ||
enabled: true | ||
transport: async | ||
ignore_routes: | ||
- '/wdt*' | ||
- '/profiler*' | ||
ignore_commands: | ||
- 'messenger:consume' | ||
- 'assets:install' | ||
- 'cache:clear' | ||
- 'doctrine:migration:migrate' | ||
- 'schedule:run' | ||
|
||
# Development commands section | ||
- 'debug:autowiring' | ||
- 'debug:config' | ||
- 'debug:container' | ||
- 'debug:event-dispatcher' | ||
- 'debug:form' | ||
- 'debug:router' | ||
- 'debug:translation' | ||
- 'debug:twig' | ||
- 'debug:validator' | ||
- 'make:auth' | ||
- 'make:command' | ||
- 'make:controller' | ||
- 'make:crud' | ||
- 'make:docker:database' | ||
- 'make:entity' | ||
- 'make:fixtures' | ||
- 'make:form' | ||
- 'make:functional-test' | ||
- 'make:message' | ||
- 'make:messenger-middleware' | ||
- 'make:migration' | ||
- 'make:registration-form' | ||
- 'make:reset-password' | ||
- 'make:serializer:encoder' | ||
- 'make:serializer:normalizer' | ||
- 'make:subscriber' | ||
- 'make:test' | ||
- 'make:twig-extension' | ||
- 'make:unit-test' | ||
- 'make:user' | ||
- 'make:validator' | ||
- 'make:voter' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{ | ||
"bundles": { | ||
"Inspector\\Symfony\\Bundle\\InspectorBundle": ["all"] | ||
}, | ||
"copy-from-recipe": { | ||
"config/": "%CONFIG_DIR%/" | ||
}, | ||
"env": { | ||
"INSPECTOR_INGESTION_KEY": "" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
* <fg=blue>Read</> the full documentation to properly configure your | ||
Symfony application at <comment>https://docs.inspector.dev/</> |