storj/crashcollect/crash/crashes.go
Qweder93 a5c1e4b4a5 crashcollect: process for receiving panics
Added crashcollect server for tracking panics
on parent process and saving them in file.

Change-Id: I7926f9a16594227a3262e05d216199b7c2857385
2021-04-27 18:57:47 +03:00

18 lines
296 B
Go

// Copyright (C) 2020 Storj Labs, Inc.
// See LICENSE for copying information.
package crash
import (
"time"
"storj.io/common/storj"
)
// Crash holds information about storagenode crash.
type Crash struct {
ID storj.NodeID
CompressedPanic []byte
CrashedAt time.Time
}