CLS_IO_STATISTICS - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// wdm.h

typedef struct _CLS_IO_STATISTICS {
  CLS_IO_STATISTICS_HEADER hdrIoStats;
  ULONGLONG                cFlush;
  ULONGLONG                cbFlush;
  ULONGLONG                cMetaFlush;
  ULONGLONG                cbMetaFlush;
} CLS_IO_STATISTICS, *PCLS_IO_STATISTICS, PPCLS_IO_STATISTICS;
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (ns-wdm-_cls_io_statistics)

_CLS_IO_STATISTICS structure

Description

The CLFS_IO_STATISTICS structure holds I/O statistics data for a Common Log File System (CLFS) log.

Members

hdrIoStats

A CLFS_IO_STATISTICS_HEADER structure that holds header information for the set of statistics.

cFlush

The number of data flushes.

cbFlush

The number of bytes of data flushed.

cMetaFlush

The number of metadata flushes.

cbMetaFlush

The number of bytes of metadata flushed.

See also

CLFS_IO_STATISTICS_HEADER

ClfsGetIoStatistics