初步了解 Oracle Real User Experience Insight (RUEI)


Ruei 中文的习惯叫法"如意"

Ruei 的英文名字是Real User Experience Insight

主要功能:
- 通过监控最终用户的行为优化用户体验。
- 大概的一些特色: 快速定位系统存在的性能瓶颈,可以重放性能差的页面,交易性能分析,趋势分析,可定制Key Performance Indicators (KPIs)和Service Level Agreements
(SLAs)监控 ,查看源码定位代码问题等等。

工作原理

- 主要是架构在网络交换机层面,通过抓Client ip,Server IP,URL,Cookie/Session ID ,以及响应时间,数据大小,用户访问的错误,以及网络失败,或者网络超时等等这些数据,然后进行分析。

如果计划在ADF Fusion Web Applicaiton中使用它,需要在web.xml中配置如下参数:
  1. <context-param>  
  2.   <description>This parameter notifies ADF Faces that the  
  3.                ExecutionContextProvider service provider is enabled.  
  4.                When enabled, this will start monitoring and aggregating  
  5.                user activity information for the client initiated  
  6.                requests. By default this param is not set or is false.  
  7.   </description>  
  8.   <param-name>  
  9.          Oracle.adf.view.faces.context.ENABLE_ADF_EXECUTION_CONTEXT_PROVIDER  
  10.   </param-name>  
  11.   <param-value>true</param-value>  
  12. </context-param>  

相关内容