Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 32 additions & 0 deletions doc/Advanced.md
Original file line number Diff line number Diff line change
Expand Up @@ -1551,6 +1551,38 @@ should not be present in real configuration files.
}
```

#### Common configuration in production

In production at P2 and in staging, some common items are defined globally in the file `QC/general-config-params`:
- QCDB
- monitoring
- consul
- conditionDB
- bookkeeping
-
It is mandatory to use them by including the file:
```
"config": {
{% include "QC/general-config-params" %}
},
```

Other configuration items can still be added in your files as such (note the comma after the inclusion) :
```
"config": {
{% include "QC/general-config-params" %},
"infologger": {
"filterDiscardDebug": "false",
"filterDiscardLevel": "22"
},
"postprocessing": {
"matchAnyRunNumber": "true"
}
},
```

Please, do not use `Activity` in production !

### QC Tasks configuration

Below the full QC Task configuration structure is described. Note that more than one task might be declared inside in
Expand Down