Skip to main content
본 한국어 번역은 사용자 편의를 위해 제공되는 기계 번역입니다. 영어 버전과 한국어 버전이 서로 어긋나는 경우에는 언제나 영어 버전이 우선합니다.

BranchCache 통계를 표시합니다

기여자

BranchCache 통계를 에 표시할 수도 있습니다. 그 중에서도 캐싱을 얼마나 잘 수행하고 있는지 식별하고, 구성이 클라이언트에 캐시된 콘텐츠를 제공하고 있는지 여부를 확인하고, 해시 파일을 삭제하여 최신 해시 데이터를 저장할 공간을 확보할 수 있는지 확인할 수 있습니다.

이 작업에 대해

"hashd" 통계 객체에는 BranchCache 해시에 대한 통계 정보를 제공하는 카운터가 포함되어 있습니다. CIFS 통계 객체에는 BranchCache 관련 작업에 대한 통계 정보를 제공하는 카운터가 포함되어 있습니다. 고급 권한 수준에서 이러한 개체에 대한 정보를 수집하고 표시할 수 있습니다.

단계
  1. 권한 수준을 Advanced:'Set-Privilege advanced'로 설정합니다

    cluster1::> set -privilege advanced
    
    Warning: These advanced commands are potentially dangerous; use them only when directed to do so by support personnel.
    Do you want to continue? {y|n}: y
  2. 'tistics catalog counter show' 명령을 사용하여 BranchCache 관련 카운터를 출력한다.

    통계 카운터에 대한 자세한 내용은 이 명령의 man 페이지를 참조하십시오.

    cluster1::*> statistics catalog counter show -object hashd
    
    Object: hashd
        Counter                     Description
        --------------------------- ----------------------------------------------
        branchcache_hash_created    Number of times a request to generate
                                    BranchCache hash for a file succeeded.
        branchcache_hash_files_replaced
                                    Number of times a BranchCache hash file was
                                    deleted to make room for more recent hash
                                    data. This happens if the hash store size is
                                    exceeded.
        branchcache_hash_rejected   Number of times a request to generate
                                    BranchCache hash data failed.
        branchcache_hash_store_bytes
                                    Total number of bytes used to store hash data.
        branchcache_hash_store_size Total space used to store BranchCache hash
                                    data for the Vserver.
        instance_name               Instance Name
        instance_uuid               Instance UUID
        node_name                   System node name
        node_uuid                   System node id
    9 entries were displayed.
    
    cluster1::*> statistics catalog counter show -object cifs
    
    Object: cifs
        Counter                     Description
        --------------------------- ----------------------------------------------
        active_searches             Number of active searches over SMB and SMB2
        auth_reject_too_many        Authentication refused after too many
                                    requests were made in rapid succession
        avg_directory_depth         Average number of directories crossed by SMB
                                    and SMB2 path-based commands
        avg_junction_depth          Average number of junctions crossed by SMB
                                    and SMB2 path-based commands
        branchcache_hash_fetch_fail Total number of times a request to fetch hash
                                    data failed. These are failures when
                                    attempting to read existing hash data. It
                                    does not include attempts to fetch hash data
                                    that has not yet been generated.
        branchcache_hash_fetch_ok   Total number of times a request to fetch hash
                                    data succeeded.
        branchcache_hash_sent_bytes Total number of bytes sent to clients
                                    requesting hashes.
        branchcache_missing_hash_bytes
                                    Total number of bytes of data that had to be
                                    read by the client because the hash for that
                                    content was not available on the server.
       ....Output truncated....
  3. '스타티틱스 스타트', '스타티틱스 스톱' 명령어를 사용해 BranchCache 관련 통계를 수집한다.

    cluster1::*> statistics start -object cifs -vserver vs1 -sample-id 11
    Statistics collection is being started for Sample-id: 11
    
    cluster1::*> statistics stop -sample-id 11
    Statistics collection is being stopped for Sample-id: 11
  4. 통계 표시 명령을 사용하여 수집된 BranchCache 통계를 표시합니다.

    cluster1::*> statistics show -object cifs -counter  branchcache_hash_sent_bytes -sample-id 11
    
    Object: cifs
    Instance: vs1
    Start-time: 12/26/2012 19:50:24
    End-time: 12/26/2012 19:51:01
    Cluster: cluster1
    
        Counter                                                     Value
        -------------------------------- --------------------------------
        branchcache_hash_sent_bytes                                     0
        branchcache_hash_sent_bytes                                     0
        branchcache_hash_sent_bytes                                     0
        branchcache_hash_sent_bytes                                     0
    
    cluster1::*> statistics show -object cifs -counter  branchcache_missing_hash_bytes -sample-id 11
    
    Object: cifs
    Instance: vs1
    Start-time: 12/26/2012 19:50:24
    End-time: 12/26/2012 19:51:01
    Cluster: cluster1
    
        Counter                                                     Value
        -------------------------------- --------------------------------
        branchcache_missing_hash_bytes                                  0
        branchcache_missing_hash_bytes                                  0
        branchcache_missing_hash_bytes                                  0
        branchcache_missing_hash_bytes                                  0
  5. admin 권한 수준으로 복귀:'et-Privilege admin'입니다

    cluster1::*> set -privilege admin