difference between two snapshots.

Constructors

Properties

added: string[]

Profiles of ImageRefs that are present in the second snapshot, but not in the first snapshot.

modified: string[]

Profiles of ImageRefs that are present in both snapshots but are different. Profile is considered modified if number of references or memory consumption is different.

removed: string[]

Unique ids of ImageRefs that are not present in the second snapshot and present in the first snapshot.

totalMemoryConsumptionDiff: number

Difference between total memory consumption in two snapshots.

Default is 0

Methods

  • Parameters

    Returns {
        added?: string[];
        modified?: string[];
        removed?: string[];
        totalMemoryConsumptionDiff?: number;
        serialize?(config?): { totalMemoryConsumptionDiff?: number | undefined; removed?: string[] | undefined; added?: string[] | undefined; modified?: string[] | undefined; serialize?: ((config?: ToJsonConfiguration | undefined) => ...) | undefined; };
    }

    • Optional added?: string[]

      Profiles of ImageRefs that are present in the second snapshot, but not in the first snapshot.

    • Optional modified?: string[]

      Profiles of ImageRefs that are present in both snapshots but are different. Profile is considered modified if number of references or memory consumption is different.

    • Optional removed?: string[]

      Unique ids of ImageRefs that are not present in the second snapshot and present in the first snapshot.

    • Optional totalMemoryConsumptionDiff?: number

      Difference between total memory consumption in two snapshots.

      Default is 0

    • serialize?:function
      • Parameters

        Returns { totalMemoryConsumptionDiff?: number | undefined; removed?: string[] | undefined; added?: string[] | undefined; modified?: string[] | undefined; serialize?: ((config?: ToJsonConfiguration | undefined) => ...) | undefined; }