Class FailureInfo
Contains information on a Watson failure bucket for a given version as well as how many hits are associated with it.
Inheritance
System.Object
FailureInfo
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: CrashCABN.PullIngestion.Watson
Assembly: CrashCABN.PullIngestion.Watson.dll
Syntax
public class FailureInfo
Constructors
View SourceFailureInfo(String, String, Double, String, Nullable<Int64>)
Declaration
public FailureInfo(string appName, string appVersion, double apportionedHits, string failureId, long? exceptionCode)
Parameters
Type | Name | Description |
---|---|---|
System.String | appName | |
System.String | appVersion | |
System.Double | apportionedHits | |
System.String | failureId | |
System.Nullable<System.Int64> | exceptionCode |
Properties
View SourceAppName
Gets the application name.
Declaration
public string AppName { get; }
Property Value
Type | Description |
---|---|
System.String |
ApportionedHits
Gets the count of how many hits are apportioned to this failure.
Declaration
public double ApportionedHits { get; }
Property Value
Type | Description |
---|---|
System.Double |
AppVersion
Gets the application version.
Declaration
public string AppVersion { get; }
Property Value
Type | Description |
---|---|
System.String |
ExceptionCode
Gets the Watson failure exception code.
Declaration
public long? ExceptionCode { get; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Int64> |
FailureId
Gets the Watson failure bucket ID.
Declaration
public string FailureId { get; }
Property Value
Type | Description |
---|---|
System.String |