Home

Awesome

ASH Viewer

ASH Viewer provides graphical view of active session history data within the database.

Supported databases: Oracle, PostgreSQL

Table of contents

ASH-Viewer

Quick start

ASH-Viewer connection dialog

ASH-Viewer Top activity

ASH-Viewer raw data

ASH-Viewer sql details

ASH-Viewer session details

Return to Table of Contents

How it works

Active Session History (ASH) is a view in Oracle database that maps a circular buffer in the SGA. The name of the view is V$ACTIVE_SESSION_HISTORY. This view is populated every second and will only contain data for 'active' sessions, which are defined as sessions waiting on a non-idle event or on a CPU.

ASH Viewer provides graphical Top Activity, similar Top Activity analysis and Drilldown of Oracle Enterprise Manager performance page. ASH Viewer store ASH data locally using embedded database Oracle Berkeley DB Java Edition.

For Oracle standard edition and PostgreSQL, ASH Viewer emulate ASH, storing active session data on local storage.

Please note that v$active_session_history is a part of the Oracle Diagnostic Pack and requires a purchase of the ODP license.

Return to Table of Contents

Build

To compile the application into an executable jar file, do the following:

  1. Install JDK version 11 or higher, Maven and Git on your local computer.

    java -version  
    mvn -version
    git --version 
    
  2. Download the source codes of the application to your local computer using Git

    git clone <url source code storage system>
    cd ASH-Viewer
    
  3. Compile the project using Maven

    mvn clean compile
    
  4. Execute the Maven command to build an executable jar file with tests running

     mvn clean package -DskipTests=true 
    

An executable jar file like ashv-<VERSION>-SNAPSHOT-jar-with-dependencies.jar will be located at the relative path ashv/target

Return to Table of Contents

Security

Encryption and Container settings provide security for database passwords (go to Other tab -> Security block)

Encryption

Encryption setting has AES and PBE options

Container

It's the way to store your encrypted data

Recommendations

Return to Table of Contents

Bugs and feature requests

If you found a bug in the code or have a suggestion for improvement, Please open an issue

Return to Table of Contents

Downloads

Return to Table of Contents

Based on

Return to Table of Contents

License

GPLv3 license

Code released under the GNU General Public License v3.0

Return to Table of Contents

Contact

Created by @akardapolov - feel free to contact me!

Return to Table of Contents