Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Cgroup ¶
type Cgroup struct {
// Name is the full path name of the cgroup.
Name string `json:"name"`
// Value is the integer files in the cgroup file.
Value *int `json:"value,omitempty"`
// ReadOnly is true if the cgroup was not writable.
ReadOnly *bool `json:"readOnly,omitempty"`
// Error is the String representation of the error returned obtaining the information.
Error string `json:"error,omitempty"`
}
Cgroup contains the Cgroup value for a given setting.
type FileInfo ¶
type FileInfo struct {
// Name is the full filename.
Name string `json:"name"`
// Size is the length in bytes for regular files; system-dependent for others.
Size *int64 `json:"size,omitempty"`
// Mode is the file mode bits.
Mode string `json:"mode,omitempty"`
// ModTime is the file last modified time
ModTime time.Time `json:"modTime,omitempty"`
// IsDir is true if the file is a directory.
IsDir *bool `json:"isDir,omitempty"`
// Error is the String representation of the error returned obtaining the information.
Error string `json:"error,omitempty"`
}
FileInfo contains the metadata for a given file.
type HostInfo ¶
type HostInfo struct {
// Files is a map of file metadata.
Files []*FileInfo `json:"files"`
// EnvVars is a map of all environment variables set.
EnvVars map[string]string `json:"envs"`
// Cgroups is a list of cgroup information.
Cgroups []*Cgroup `json:"cgroups"`
// Mounts is a list of mounted volume information, or error.
Mounts []*Mount `json:"mounts"`
Stdin *Stdin `json:"stdin"`
User *UserInfo `json:"user"`
}
HostInfo contains information about the host environment.
type Mount ¶
type Mount struct {
// Device is the device that is mounted
Device string `json:"device,omitempty"`
// Path is the location where the volume is mounted
Path string `json:"path,omitempty"`
// Type is the filesystem type (i.e. sysfs, proc, tmpfs, ext4, overlay, etc.)
Type string `json:"type,omitempty"`
// Options is the mount options set (i.e. rw, nosuid, relatime, etc.)
Options []string `json:"options,omitempty"`
// Error is the String representation of the error returned obtaining the information.
Error string `json:"error,omitempty"`
}
Mount contains information about a given mount.
type RequestInfo ¶
type RequestInfo struct {
// Ts is the timestamp of when the request came in from the system time.
Ts time.Time `json:"ts"`
// URI is the request-target of the Request-Line.
URI string `json:"uri"`
// Host is the hostname on which the URL is sought.
Host string `json:"host"`
// Method is the method used for the request.
Method string `json:"method"`
// Headers is a Map of all headers set.
Headers http.Header `json:"headers"`
}
RequestInfo encapsulates information about the request.
type RuntimeInfo ¶
type RuntimeInfo struct {
// Request is information about the request.
Request *RequestInfo `json:"request"`
// Host is a set of host information.
Host *HostInfo `json:"host"`
}
RuntimeInfo encapsulates both the host and request information.
type Stdin ¶ added in v0.5.0
type Stdin struct {
// EOF is true if the first byte read from stdin results in EOF.
EOF *bool `json:"eof,omitempty"`
// Error is the String representation of an error probing sdtin.
Error string `json:"error,omitempty"`
}
Stdin contains information about the Stdin file descriptor for the container.
Click to show internal directories.
Click to hide internal directories.