STORPORT_LIVEDUMP_DEVICE_TELEMETRY_LOG - NtDoc

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

typedef struct _STORPORT_LIVEDUMP_DEVICE_TELEMETRY_LOG {
  ULONG Version;
  ULONG Size;
  UCHAR BucketId[STORPORT_LIVEDUMP_BUCKET_ID_LENGTH];
  UCHAR OrganizationID[3];
  UCHAR Reserved;
  ULONG TelemetryLength;
  PVOID DeviceTelemetry;
} STORPORT_LIVEDUMP_DEVICE_TELEMETRY_LOG, *PSTORPORT_LIVEDUMP_DEVICE_TELEMETRY_LOG;
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (ns-storport-storport_livedump_device_telemetry_log)

Description

STORPORT_LIVEDUMP_DEVICE_TELEMETRY_LOG contains the payload for a live dump captured by StorPortCaptureLiveDump.

Members

Version

Size, in bytes, of this structure. The structure size serves as the version.

Size

Size, in bytes, of this structure plus all of its variable-sized fields.

BucketId

Unique identifier for the device's state when the issue occurs.

OrganizationID

The IEEE organizationally unique identifier (OUI).

Reserved

Reserved; do not use.

TelemetryLength

Size, in bytes, of the telemetry log that DeviceTelemetry points to.

DeviceTelemetry

Pointer to the device-defined telemetry log.

Remarks

When a miniport calls StorPortCaptureLiveDump with STORPORT_CAPTURE_LIVEDUMP.DataType set to StorportLivedumpDataTypeDeviceTelemetryLog, STORPORT_CAPTURE_LIVEDUMP.Data points to a STORPORT_LIVEDUMP_DEVICE_TELEMETRY_LOG structure that contains the payload for the live dump.

See also

STORPORT_LIVEDUMP_DATA_TYPE

StorPortCaptureLiveDump