forked from SAP/jenkins-library
-
Notifications
You must be signed in to change notification settings - Fork 0
/
fatalHook.go
53 lines (43 loc) · 1.41 KB
/
fatalHook.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
package log
import (
"encoding/json"
"fmt"
"io/ioutil"
"path/filepath"
"github.com/sirupsen/logrus"
)
// FatalHook provides a logrus hook which persists details about a fatal error into the file system.
// This is helpful in order to transfer the error details to an orchestrating CI/CD system
// and by that make it possible to provide better error messages to the user.
type FatalHook struct {
Path string
CorrelationID string
}
// Levels returns the supported log level of the hook.
func (f *FatalHook) Levels() []logrus.Level {
return []logrus.Level{logrus.FatalLevel}
}
// Fire persists the error message of the fatal error as json file into the file system.
func (f *FatalHook) Fire(entry *logrus.Entry) error {
details := entry.Data
if details == nil {
details = logrus.Fields{}
}
details["message"] = entry.Message
details["error"] = fmt.Sprint(details["error"])
details["category"] = GetErrorCategory().String()
details["result"] = "failure"
details["correlationId"] = f.CorrelationID
fileName := "errorDetails.json"
if details["stepName"] != nil {
fileName = fmt.Sprintf("%v_%v", fmt.Sprint(details["stepName"]), fileName)
}
filePath := filepath.Join(f.Path, fileName)
_, err := ioutil.ReadFile(filePath)
if err != nil {
// ignore errors, since we don't want to break the logging flow
errDetails, _ := json.Marshal(&details)
ioutil.WriteFile(filePath, errDetails, 0655)
}
return nil
}