Section 1- oratop and database/instance specifics

spid       :oratop's server SPID connected to instance,
   SID        :instance name (First 4 letters), 
   clock      :Time of current stats collected (hh24:mi:ss)
   time       :uptime since this instance startup,
   ins        :Total number of active database instance(s),
   MT         :database total memory (sum Memory_Target),
   ses        :Total user's sessions,
   usr        :Total distinct database foreground (F/G) users,
   %DB      :%database Active, 0 0ndicate idle db

Section 2- Cluster-wide "Top 5 instances activity" ordered by Wait Time 
   ID         :instance id,
   %HC        :Host CPU Utilization, %(busy/busy+idle),
   HLD        :Current Host Load,
   MBPS       :throughput, 'I/O Megabytes per Second',
   %FR        :Shared Pool Free %,
   PGAU       :total PGA inuse,
   IORL       :Avg Synchronous Single-Block Read Latency,
   PQS        :PQ Slave Session Count,
   ASC        :Active Sessions on CPU,
   ASI        :Active Sessions waiting on user i/o,
   ASW        :Active Sessions waiting/sleeping,
   AST        :Total Active Sessions,
   ASB        :Active Sessions blocked,
   AAS        :Average Active Sessions,
   CTPS       :(CPS) User Calls Per Sec, OR,                (TPS) User Transactions Per Sec (appears in RED),
   SSRT       :SQl service Response time,
   DBC        :database cpu time ratio,
   DBW        :database wait time ratio.

Section 3- Cluster-wide "Top 5 Timed Events" ordered by Wait Time 
   EVENT      :database wait event,
   WAITS      :cluster average Total waits,
   TIME(s)    :cluster average Total wait time in seconds),
   AVG_MS     ::cluster Average wait time in milliseconds,
   PCT        :Percent of wait time,
   WAIT_CLASS :Name of the wait class corresponding to the event.

Section 4- Session/process none-idle ordered by Wait Time desc.
   ID         :instance id,
   SID        :session id,
   SPID       :server process os pid,
   USR        :user name (abbreviated),
   PROG       :program name (abbreviated),
   PGA        :process pga used,
   OPN        :OPERATION name, e.g. SELECT,
   SQLID      :SQL identifier if no blocker, else,
   /BLOCKR    :final blocking instance:session:ospid,
   E/T        :Elapsed Time since the session has become active. Units: (s)econds, (M)inutes, (h)our, (d)ay.
   STATUS     :ACTIVE | INACTIVE | KILLED | CACHED | SNIPED,
   STE        :Process STATE: ON CPU or USR I/O or WAITING,
   WAIT_EVENT :process wait event name,
   W/T        :Wait Time. Units: (u)-micro second, (m)illi second, (s)econds, (M)inutes, (h)our, (d)ay.

oratop 各个指标项说明的更多相关文章

  1. 【Graphite】使用dropwizard.metrics向Graphite中写入指标项数据

    graphite 定时向Graphite中写入指标项数据,指标项模拟个数3000个 使用的类库 官方文档   dropwizard的github地址 Metric官方文档 metrics.dropwi ...

  2. SOAPUI 压力测试的指标项说明

      soapUI Pro指标项说明:   Test Step Sets the startup delay for each thread (in milliseconds), setting to ...

  3. Flume监控指标项

    配置监控 1.修改flume-env.sh export JAVA_OPTS="-Dcom.sun.management.jmxremote -Dcom.sun.management.jmx ...

  4. hbase 监控指标项

    名词解释 JMX:Java Management Extensions,用于用于Java程序扩展监控和管理项 GC:Garbage Collection,垃圾收集,垃圾回收机制 指标项来源 主机名 u ...

  5. Hbase监控指标项

    名词解释 JMX:Java Management Extensions,用于用于Java程序扩展监控和管理项 GC:Garbage Collection,垃圾收集,垃圾回收机制 指标项来源 主机名 u ...

  6. Spark指标项监控

    监控配置 spark的监控主要分为Master.Worker.driver.executor监控.Master和Worker的监控在spark集群运行时即可监控,Driver和Excutor的监控需要 ...

  7. kafka监控指标项

    监控配置 ​ kafka基本分为broker.producer.consumer三个子项,每一项的启动都需要用到 $KAFKA_HOME/bin/kafka-run-class.sh 脚本,在该脚本中 ...

  8. Hadoop监控指标项

    配置 修改$HADOOP_HOME/etc/hadoop/hadoop-env.sh # 在配置namenode和datanode时都会有用到JMX_OPTS的代码,是为了减少重复提取出的公共代码 e ...

  9. List<Map>中根据map的同一指标项数据——去重代码

    先看网络上,博客经常出现的错误代码: for(ABatchAddCheckVO aBatchAddCheckVO : addList){ dto.put("aac001",aBat ...

随机推荐

  1. who is the middle

    Description FJ is surveying his herd to find the most average cow. He wants to know how much milk th ...

  2. LXC docker

    docker的原理和特点可以参照百度百科 http://baike.baidu.com/view/11854949.htm 昨天听到光照说docker技术实现, 既然可以轻量虚拟,是否可以多个虚拟出分 ...

  3. WebService 基本操作

    1.新建asp.net web 应用程序 2.添加web 服务webservice.asmx public string HelloWorld(int a) { if (a==1) { return ...

  4. 如何在子线程中使用Toast和更新UI

    因为没一个Looper处理消息循环,所以子线程中无法使用Toast 方法: Looper.prepare(); Toast.makeText(getActivity(),"刷到底啦" ...

  5. java复习基础知识——java保留字

    ava 关键字列表 (依字母排序 共51组): abstract, assert,boolean, break, byte, case, catch, char, class, const, cont ...

  6. hdu 5100 n*n棋盘放k*1长方条最多覆盖面积

    http://acm.hdu.edu.cn/showproblem.php?pid=5100 给一个n*n的棋盘,问用k*1的长方条最多能覆盖多大的面积(k个单位都必须完全覆盖上去) 首先,若n< ...

  7. Python 之 Bunch Pattern

    When prototyping (or even finalizing) data structures such as trees, it can be useful to have a flex ...

  8. 关于SQL Server 2008添加用户映射问题 解决办法

    同事一直需要用触发器 但是之前的数据库没有dbo映射 无法添加 查阅了很多资料 不适合自己的问题 所以自己动手丰衣足食 特留下笔记 希望能给遇到相同问题的朋友一个解决的思路

  9. CentOS系统下Hadoop 2.4.1集群安装配置(简易版)

    安装配置 1.软件下载 JDK下载:jdk-7u65-linux-i586.tar.gz http://www.oracle.com/technetwork/java/javase/downloads ...

  10. Kali Linux Web 渗透测试视频教程— 第二课 google hack 实战

    Kali Linux Web 渗透测试— 第二课 代理简介 文/玄魂 课程地址: http://edu.51cto.com/course/course_id-1887.html 目录 shellKal ...