Anchorage API reference
    Preparing search index...

    One denied request. host is null when the URL never parsed; hop is 0 for the initial request, n for the nth redirect. Deliberately never carries the full URL — denials get audited, and query strings/paths can embed secrets that must not reach a log sink.

    interface EgressDenial {
        hop: number;
        host: string | null;
        reason: string;
    }
    Index

    Properties

    Properties

    hop: number

    Zero for the initial request, or the one-based redirect hop number.

    host: string | null

    Normalized denied hostname, or null when the URL was invalid.

    reason: string

    Safe explanation that excludes the path and query string.