Show / Hide Table of Contents

Class CrashEventSystemInformation

Detailed information about system at the time of the crash.

Inheritance
object
CrashEventSystemInformation
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.OsmanagementService.Models
Assembly: OCI.DotNetSDK.Osmanagement.dll
Syntax
public class CrashEventSystemInformation

Properties

Architecture

Declaration
[JsonProperty(PropertyName = "architecture")]
[JsonConverter(typeof(ResponseEnumConverter))]
public ArchTypes? Architecture { get; set; }
Property Value
Type Description
ArchTypes?

system architecture

KspliceEffectiveKernelVersion

Declaration
[JsonProperty(PropertyName = "kspliceEffectiveKernelVersion")]
public string KspliceEffectiveKernelVersion { get; set; }
Property Value
Type Description
string

Active ksplice kernel version (uptrack-uname -r)

OsFamily

Declaration
[JsonProperty(PropertyName = "osFamily")]
[JsonConverter(typeof(ResponseEnumConverter))]
public OsFamilies? OsFamily { get; set; }
Property Value
Type Description
OsFamilies?

The Operating System type of the managed instance.

OsKernelRelease

Declaration
[JsonProperty(PropertyName = "osKernelRelease")]
public string OsKernelRelease { get; set; }
Property Value
Type Description
string

Operating System Kernel Release (uname -v)

OsKernelVersion

Declaration
[JsonProperty(PropertyName = "osKernelVersion")]
public string OsKernelVersion { get; set; }
Property Value
Type Description
string

Operating System Kernel Version (uname -r)

OsName

Declaration
[JsonProperty(PropertyName = "osName")]
public string OsName { get; set; }
Property Value
Type Description
string

Operating System Name (OCA value)

OsSystemVersion

Declaration
[JsonProperty(PropertyName = "osSystemVersion")]
public string OsSystemVersion { get; set; }
Property Value
Type Description
string

Version of the OS (VERSION from /etc/os-release)

In this article
Back to top