Table of Contents

Class ScanTotals

Namespace
Typhon.Engine
Assembly
Typhon.Engine.dll

Aggregate counters describing what the scan actually looked at.

public sealed class ScanTotals
Inheritance
ScanTotals
Inherited Members

Constructors

ScanTotals()

public ScanTotals()

Properties

BySeverity

Finding counts by severity, indexed by IntegritySeverity.

public IReadOnlyList<int> BySeverity { get; init; }

Property Value

IReadOnlyList<int>

BytesLeaked

Bytes held by allocated-but-unreachable structures.

public long BytesLeaked { get; init; }

Property Value

long

ChecksumFailures

Pages whose stored checksum did not match their content.

public int ChecksumFailures { get; init; }

Property Value

int

ChunksAllocated

Chunks found allocated across every chunk-based segment.

public long ChunksAllocated { get; init; }

Property Value

long

PagesAllocated

Pages whose occupancy bit is set.

public int PagesAllocated { get; init; }

Property Value

int

PagesScanned

Pages read and classified.

public int PagesScanned { get; init; }

Property Value

int

PagesWithSectorFooters

Pages carrying a per-sector verification footer.

public int PagesWithSectorFooters { get; init; }

Property Value

int

SectorFailures

Sectors that failed verification across all pages.

public int SectorFailures { get; init; }

Property Value

int

SegmentsWalked

Logical segments discovered and walked.

public int SegmentsWalked { get; init; }

Property Value

int