Tsarr Documentation - v2.11.0
    Preparing search index...

    Type Alias TorrentsTrackers

    type TorrentsTrackers = {
        url?: string;
        status?: 0 | 1 | 2 | 3 | 4;
        tier?: number;
        num_peers?: number;
        num_seeds?: number;
        num_leeches?: number;
        num_downloaded?: number;
        msg?: string;
    }
    Index

    Properties

    url?: string

    Tracker url

    status?: 0 | 1 | 2 | 3 | 4

    Tracker status. See the table below for possible values

    Value Description
    0 Tracker is disabled (used for DHT, PeX, and LSD)
    1 Tracker has not been contacted yet
    2 Tracker has been contacted and is working
    3 Tracker is updating
    4 Tracker has been contacted, but it is not working (or doesn't send proper replies)
    tier?: number

    Tracker priority tier. Lower tier trackers are tried before higher tiers. Tier numbers are valid when >= 0, < 0 is used as placeholder when tier does not exist for special entries (such as DHT).

    num_peers?: number

    Number of peers for current torrent, as reported by the tracker

    num_seeds?: number

    Number of seeds for current torrent, asreported by the tracker

    num_leeches?: number

    Number of leeches for current torrent, as reported by the tracker

    num_downloaded?: number

    Number of completed downlods for current torrent, as reported by the tracker

    msg?: string

    Tracker message (there is no way of knowing what this message is - it's up to tracker admins)