-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Show descriptions of templates in ddev create help (#18039)
* Show descriptions of templates in ddev create help * add changelog * add more template descriptions * Apply suggestions from code review Co-authored-by: Bryce Eadie <[email protected]> * Update datadog_checks_dev/datadog_checks/dev/tooling/templates/integration/tile/README.md Co-authored-by: Bryce Eadie <[email protected]> --------- Co-authored-by: Bryce Eadie <[email protected]>
- Loading branch information
Showing
7 changed files
with
70 additions
and
8 deletions.
There are no files selected for viewing
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 @@ | ||
Show descriptions of templates in ddev create help. |
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
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
6 changes: 6 additions & 0 deletions
6
...dog_checks_dev/datadog_checks/dev/tooling/templates/integration/check/README.md
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,6 @@ | ||
# Python Agent Check | ||
|
||
Also known as an "Agent integration", choose this template type if you need to write Python code to collect data (such as metrics, events, and logs) and submit it to Datadog through the Agent. | ||
|
||
It creates a Python package that can be installed on the Agent. | ||
The changelog is managed with towncrier in integrations-core and manually in other repositories. |
6 changes: 3 additions & 3 deletions
6
datadog_checks_dev/datadog_checks/dev/tooling/templates/integration/logs/README.md
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
# Logs-only Integration | ||
|
||
This type of integration only includes logs pipelines and config. | ||
To help customers get started with their config we turn this integration into a Python package that can be installed in the Agent. | ||
Choose this type of integration if you only need some pipelines and a configuration for collecting and processing logs through the Agent. | ||
|
||
We release these integrations just like real checks and manage the changelog with towncrier in integrations-core. | ||
To help you get started with your config, this integration is turned into a Python package that can be installed in the Agent. | ||
These integrations are released just like Agent Checks, and the changelog is managed with towncrier in integrations-core. |
6 changes: 6 additions & 0 deletions
6
..._dev/datadog_checks/dev/tooling/templates/integration/metrics_crawler/README.md
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,6 @@ | ||
# Crawler-based Integration | ||
|
||
Use this integration type for crawlers that run on Datadog's internal infrastructure. | ||
|
||
This type is similar to the `tile` type, but includes boilerplate that's specific to crawlers. | ||
There is no Python package for this type of integration, it essentially contains a manifest and assets. |
5 changes: 5 additions & 0 deletions
5
datadog_checks_dev/datadog_checks/dev/tooling/templates/integration/tile/README.md
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,5 @@ | ||
# Tile-only Integration | ||
|
||
Choose this type of integration if you host the logic in a different repository, and publish only the tile and assets in integrations-core. | ||
|
||
Examples of integrations of this type include checks installed on the Agent or crawlers that run on Datadog internal infrastructure. |