> ## Documentation Index
> Fetch the complete documentation index at: https://devdocs.xbox.com/llms.txt
> Use this file to discover all available pages before exploring further.

# DSTORAGE_PRIORITY_STATS

> DSTORAGE_PRIORITY_STATS

# DSTORAGE\_PRIORITY\_STATS

DirectStorage 통계입니다.

## 구문

```cpp theme={null}
struct DSTORAGE_PRIORITY_STATS {
    UINT32 CurrentQueueCount;
    UINT32 MaxQueueCount;
    UINT32 CumulativeQueueCount;
    UINT32 TotalStatusCount;
    UINT32 TotalFenceCount;
    UINT32 PendingRequestCount;
    UINT32 TotalRequestCount;
    UINT64 TotalRequestSourceByteCount;
    UINT64 TotalRequestDestinationByteCount;
};
```

### 멤버

*CurrentQueueCount*\
형식: UINT32

현재 열려 있는 큐의 수입니다.

*MaxQueueCount*\
형식: UINT32

동시에 열린 큐의 최고 수입니다.

*CumulativeQueueCount*\
형식: UINT32

열린 큐의 누적 수입니다.

*TotalStatusCount*\
형식: UINT32

전체 상태 요청 수입니다.

*TotalFenceCount*\
형식: UINT32

전체 펜스 요청 수입니다.

*PendingRequestCount*\
형식: UINT32

현재 보류 중인 요청 수입니다. DirectStorage 하위 시스템이 요청 처리를 시작했지만
요청이 아직 완료되지 않은 상태에서 요청은 보류 중인 것으로 간주됩니다.
[IDStorageQueueX::Submit](/reference/system/dstorage/interfaces/IDStorageQueueX/methods/idstoragequeuex_submit) 호출은
DirectStorage가 지정된 큐의 요청 처리를 시작하도록 하는 신호입니다. 하위 수준의 DirectStorage 리소스가
사용 중인 경우 [IDStorageQueueX::Submit](/reference/system/dstorage/interfaces/IDStorageQueueX/methods/idstoragequeuex_submit) 호출과
요청이 보류 중으로 간주되는 시점 사이에 지연이 있을 수 있습니다.

*TotalRequestCount*\
형식: UINT32

제출된 전체 요청 수입니다.

*TotalRequestSourceByteCount*\
형식: UINT64

요청 소스 크기의 합계입니다.

*TotalRequestDestinationByteCount*\
형식: UINT64

요청 대상 크기의 합계입니다.

## 설명

이 구조체는 [IDStorageFactoryX1::GetStats](/reference/system/dstorage/interfaces/IDStorageFactoryX1/methods/idstoragefactoryx1_getstats) 메서드에서 사용하는 [DSTORAGE\_STATS](/reference/system/dstorage/structs/dstorage_stats)의 일부로 반환됩니다.

## 요구 사항

**헤더:** dstorage\_xs.h

**지원되는 플랫폼:** XBOX Series 콘솔

## 함께 보기

[DStorage](/reference/system/dstorage/dstorage_members)


## Related topics

- [DSTORAGE_STATS](/ko/reference/system/dstorage/structs/dstorage_stats.md)
- [DStorage](/ko/reference/system/dstorage/dstorage_members.md)
- [DSTORAGE_PRIORITY](/ko/reference/system/dstorage/enums/dstorage_priority.md)
- [DSTORAGE_QUEUE_DESC](/ko/reference/system/dstorage/structs/dstorage_queue_desc.md)
- [DSTORAGE_QUEUE_DESC1](/ko/reference/system/dstorage/structs/dstorage_queue_desc1.md)
