e2e: enable systemd logcollection

Signed-off-by: Paul Meyer <49727155+katexochen@users.noreply.github.com>
This commit is contained in:
Paul Meyer 2022-12-05 16:30:16 +01:00
parent cb734a2e66
commit a9ed8c0191
2 changed files with 20 additions and 2 deletions

View file

@ -10,6 +10,15 @@ package logcollector
// under the prefix "logcollect.".
func InfoFields() (string, map[string]struct{}) {
return "logcollect.", map[string]struct{}{
"admin": {}, // the name of the person running the cdbg command
"admin": {}, // name of the person running the cdbg command
// GitHub workflow information, see https://docs.github.com/en/actions/learn-github-actions/environment-variables#default-environment-variables
"github.actor": {},
"github.workflow": {},
"github.run-id": {},
"github.run-attempt": {},
"github.ref-name": {},
"github.sha": {},
"github.runner-os": {},
}
}