aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-docs/src/pages/webhooks.md
diff options
context:
space:
mode:
Diffstat (limited to 'server/sonar-docs/src/pages/webhooks.md')
-rw-r--r--server/sonar-docs/src/pages/webhooks.md118
1 files changed, 118 insertions, 0 deletions
diff --git a/server/sonar-docs/src/pages/webhooks.md b/server/sonar-docs/src/pages/webhooks.md
new file mode 100644
index 00000000000..2c09225141f
--- /dev/null
+++ b/server/sonar-docs/src/pages/webhooks.md
@@ -0,0 +1,118 @@
+---
+title: Webhooks
+---
+
+Webhooks notify external services when a project analysis is complete. An HTTP POST request including a JSON payload is sent to each URL. URLs may be specified at both the project and global levels. Project-level specification does not replace global-level webhooks. All hooks at both levels are called.
+Plugins
+
+The HTTP(S) call:
+
+* is made regardless of the status of the Background Task
+* includes a JSON document as payload, using the POST method
+* has a content type of "application/json", with UTF-8 encoding
+
+## Configuration
+
+You can configure up to 10 webhooks in in **Administration > Webhooks**.
+
+An additional set of 10 webhooks can be configured at the global level in **Administration > Configuration > Webhooks**.
+
+If configured, all 20 will be executed.
+
+## Delivery and Payload
+
+### Delivery
+
+The Webhook administration console shows the result and timestamp of the most recent delivery of each webhook with the payload available via the list icon. Results and payloads of earlier deliveries are available from the tools menu to the right of each webhook
+
+Response records are purged after 30 days.
+
+The URL must respond within 10 seconds or the delivery is marked as failed.
+
+### Payload
+
+An HTTP header "X-SonarQube-Project" with the project key is sent to allow quick identification of the project involved
+
+The Payload is a JSON document which includes:
+
+* when the analysis was performed: see "analysedAt"
+* the identification of the project analyzed: see "project"
+* each Quality Gate criterion checked and its status: see "qualityGate"
+* the Quality Gate status of the project: see "qualityGate.status"
+* the status and the identifier of the Background Task : see "status" and "taskId"
+* user-specified properties: see "properties"
+
+#### Example
+
+```
+{
+ "analysedAt": "2016-11-18T10:46:28+0100",
+ "project": {
+ "key": "org.sonarqube:example",
+ "name": "Example"
+ },
+ "properties": {
+ },
+ "qualityGate": {
+ "conditions": [
+ {
+ "errorThreshold": "1",
+ "metric": "new_security_rating",
+ "onLeakPeriod": true,
+ "operator": "GREATER_THAN",
+ "status": "OK",
+ "value": "1"
+ },
+ {
+ "errorThreshold": "1",
+ "metric": "new_reliability_rating",
+ "onLeakPeriod": true,
+ "operator": "GREATER_THAN",
+ "status": "OK",
+ "value": "1"
+ },
+ {
+ "errorThreshold": "1",
+ "metric": "new_maintainability_rating",
+ "onLeakPeriod": true,
+ "operator": "GREATER_THAN",
+ "status": "OK",
+ "value": "1"
+ },
+ {
+ "errorThreshold": "80",
+ "metric": "new_coverage",
+ "onLeakPeriod": true,
+ "operator": "LESS_THAN",
+ "status": "NO_VALUE"
+ }
+ ],
+ "name": "SonarQube way",
+ "status": "OK"
+ },
+ "serverUrl": "http://localhost:9000",
+ "status": "SUCCESS",
+ "taskId": "AVh21JS2JepAEhwQ-b3u"
+}
+```
+
+## Additional parameters
+
+A basic authentication mechanism is supported by providing user/password in the URL of the Webhook such as `https://myLogin:myPassword@my_server/foo`.
+
+If you provide additional properties to your SonarQube Scanner using the pattern `sonar.analysis.*`, these properties will be automatically added to the section "properties" of the payload.
+
+For example these additional parameters:
+
+```
+sonar-scanner -Dsonar.analysis.scmRevision=628f5175ada0d685fd7164baa7c6382c1f25cab4 -Dsonar.analysis.buildNumber=12345
+```
+
+Would add this to the payload:
+
+```
+"properties": {
+ "sonar.analysis.scmRevision": "628f5175ada0d685fd7164baa7c6382c1f25cab4",
+ "sonar.analysis.buildNumber": "12345"
+}
+```