package
Version:
v0.1.0
Opens a new window with list of versions in this module.
Published: Mar 6, 2023
License: Apache-2.0
Opens a new window with license information.
Imports: 6
Opens a new window with list of imports.
Imported by: 1
Opens a new window with list of known importers.
Documentation
¶
View Source
var (
FileAccessDir = outputDir + "file_access_logs/"
)
type BaseOperation struct {
Level string `json:"level"`
Msg string `json:"msg"`
Operation string `json:"operation"`
Path string `json:"path"`
Time time.Time `json:"time"`
}
type FileAccessPatterns struct {
ImageName string `json:"ImageName"`
ContainerStartTime time.Time `json:"containerStartTime"`
TotalOperationCount map[string]int `json:"TotalOperationCounts"`
Operations []Operation `json:"operations"`
}
type Operation struct {
Operation string `json:"operation"`
Path string `json:"path"`
FirstAccessTimeAfterStart string `json:"firstAccessTimeAfterStart"`
Count int `json:"count"`
}
type SociLog struct {
Msg string `json:"msg"`
}
Source Files
¶
Click to show internal directories.
Click to hide internal directories.