This is an automated email from the ASF dual-hosted git repository.

zky pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-devlake-website.git


The following commit(s) were added to refs/heads/main by this push:
     new 41c2cb2fd7 docs: add skip collector at advanced mode (#699)
41c2cb2fd7 is described below

commit 41c2cb2fd7c902eeb3cedd6aeae26f61b39ddbac
Author: abeizn <[email protected]>
AuthorDate: Tue Jan 16 21:28:36 2024 +0800

    docs: add skip collector at advanced mode (#699)
---
 docs/Configuration/AdvancedMode.md | 12 ++++++++++++
 1 file changed, 12 insertions(+)

diff --git a/docs/Configuration/AdvancedMode.md 
b/docs/Configuration/AdvancedMode.md
index 3eb936252d..4d61e4c4f6 100644
--- a/docs/Configuration/AdvancedMode.md
+++ b/docs/Configuration/AdvancedMode.md
@@ -383,6 +383,18 @@ To edit a Blueprint created in the Advanced mode, you can 
simply go the Configur
 
 ![img](/img/ConfigUI/BlueprintEditing/blueprint-edit2.png)
 
+## How to skip collectors in a Blueprint (Advanced Mode)?
+- 1. Create a Blueprint in the Advanced Mode.
+- 2. You can skip collectors in a Blueprint by setting `skipCollectors` to 
`true` in the request body of the trigger API. For example:
+```
+  curl --request POST \
+    --url http://localhost:8080/blueprints/:blueprintId/trigger \
+    --header 'content-type: application/json' \
+    --data '{
+      "skipCollectors": true
+  }'
+```
+
 ## Troubleshooting
 
 If you run into any problem, please check the 
[Troubleshooting](/Troubleshooting/Configuration.md) or [create an 
issue](https://github.com/apache/incubator-devlake/issues)

Reply via email to