翻译自:
What Is Metric "Network Traffic Volume Per Sec" In DBA_HIST_SYSMETRIC_SUMMARY ? (Doc ID 1548632.1)
适用于:
Oracle Net Services - Version 10.2.0.4 to 11.2.0.3 [Release 10.2 to 11.2]
Information in this document applies to any platform.
目标:
What is the meaning of Network Traffic
Volume Per Sec metric. It is populated in DBA_HIST_SYSMETRIC_SUMMARY. But not included in any external or internal MOS document
解决方法
The metric gives info about public network traffic per second
In Oracle 10g, there is a table called DBA_HIST_SYSMETRIC_SUMMARY which stores information about the database activities. One of the metric is called NETWORK TRAFFIC VOLUME Per/Sec (metric_id=2058).
The value is in bytes per second. A typical query may be something like:
select minval, maxval, average from dba_hist_sysmetric_summary where metric_id=2058
The value represents the combined network traffic from all clients and database links.
It's use for customers will vary. One use would be to gauge the capacity of the NIC on the server. However, there are other tools (such as ipref) that can do this as well.