日本語は機械翻訳による参考訳です。内容に矛盾や不一致があった場合には、英語の内容が優先されます。
ONTAP SMB BranchCache統計を表示する
BranchCache統計を表示すると、さまざまな目的の中でも、キャッシュが適切に機能しているかどうかの確認、キャッシュ コンテンツをクライアントに提供しているかどうかの確認、新しいハッシュ データのスペースを確保するためにハッシュ ファイルが削除されたかどうかの確認に特に役立ちます。
タスク概要
`hashd`統計オブジェクトには、BranchCacheハッシュに関する統計情報を提供するカウンタが含まれています。 `cifs`統計オブジェクトには、BranchCache関連アクティビティに関する統計情報を提供するカウンタが含まれています。これらのオブジェクトに関する情報は、advanced権限レベルで収集および表示できます。
手順
-
権限レベルをadvancedに設定します:
set -privilege advancedcluster1::> 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 -
`statistics catalog counter show`コマンドを使用して、BranchCache関連のカウンターを表示します。
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....`statistics catalog counter show`の詳細については、link:https://docs.netapp.com/us-en/ontap-cli/statistics-catalog-counter-show.html["ONTAPコマンド リファレンス"^]をご覧ください。
-
`statistics start`コマンドと `statistics stop`コマンドを使用して、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
`statistics start`および `statistics stop`の詳細については、link:https://docs.netapp.com/us-en/ontap-cli/search.html?q=statistics["ONTAPコマンド リファレンス"^]をご覧ください。
-
`statistics show`コマンドを使用して、収集された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`statistics show`の詳細については、link:https://docs.netapp.com/us-en/ontap-cli/statistics-show.html["ONTAPコマンド リファレンス"^]をご覧ください。
-
admin権限レベルに戻ります:
set -privilege admincluster1::*> set -privilege admin