@accordkit/tracer - v0.2.1
    Preparing search index...

    Type Alias Hypothesis

    (Reserved) A hypothesis about system behavior for root cause analysis. This structure is used for advanced correlation and diagnostics.

    type Hypothesis = {
        id: string;
        title: string;
        service: string;
        confidence: number;
        category: "deploy" | "dependency" | "attribution" | "other";
        evidence: Evidence[];
    }
    Index

    Properties

    id: string

    A unique identifier for the hypothesis.

    title: string

    A human-readable title for the hypothesis.

    service: string

    The service related to this hypothesis.

    confidence: number

    A score from 0 to 1 indicating confidence in the hypothesis.

    category: "deploy" | "dependency" | "attribution" | "other"

    The category of the hypothesis.

    evidence: Evidence[]

    A collection of evidence supporting the hypothesis.