FishingHealth: {
    kills: string[];
    pendingPlayers: number;
    redis: {
        dbSize: number | null;
        maxMemoryBytes: number | null;
        policy: string | null;
        usedMemoryBytes: number | null;
    };
    rollout: FishingRollout;
}

Type declaration

  • kills: string[]
  • pendingPlayers: number

    Players with unflushed deltas waiting in Redis.

  • redis: {
        dbSize: number | null;
        maxMemoryBytes: number | null;
        policy: string | null;
        usedMemoryBytes: number | null;
    }
    • dbSize: number | null
    • maxMemoryBytes: number | null
    • policy: string | null

      null when CONFIG GET is disabled on the instance.

    • usedMemoryBytes: number | null
  • rollout: FishingRollout