0
0
Fork 0
mirror of https://github.com/netdata/netdata.git synced 2025-04-12 16:58:10 +00:00
netdata_netdata/collectors/python.d.plugin/oracledb/README.md
Joel Hans a726c905bd
Change "netdata" to "Netdata" in all docs ()
* First pass of changing netdata to Netdata

* Second pass of netdata -> Netdata

* Starting work on netdata with no whitespace after

* Pass for netdata with no whitespace at the end

* Pass for netdata with no whitespace at the front
2019-08-13 08:07:17 -07:00

1.9 KiB

oracledb

Module monitor oracledb performance and health metrics.

Requirements:

  • cx_Oracle package.
  • Oracle Client (using cx_Oracle requires Oracle Client libraries to be installed).

It produces following charts:

  • session activity
    • Session Count
    • Session Limit Usage
    • Logons
  • disk activity
    • Physical Disk Reads/Writes
    • Sorts On Disk
    • Full Table Scans
  • database and buffer activity
    • Database Wait Time Ratio
    • Shared Pool Free Memory
    • In-Memory Sorts Ratio
    • SQL Service Response Time
    • User Rollbacks
    • Enqueue Timeouts
  • cache
    • Cache Hit Ratio
    • Global Cache Blocks Events
  • activities
    • Activities
  • wait time
    • Wait Time
  • tablespace
    • Size
    • Usage
    • Usage In Percent

prerequisite

To use the Oracle module do the following:

  1. Install cx_Oracle package (link).

  2. Install Oracle Client libraries (link).

  3. Create a read-only netdata user with proper access to your Oracle Database Server.

Connect to your Oracle database with an administrative user and execute:

ALTER SESSION SET "_ORACLE_SCRIPT"=true;

CREATE USER netdata IDENTIFIED BY <PASSWORD>;

GRANT CONNECT TO netdata;
GRANT SELECT_CATALOG_ROLE TO netdata;

configuration

local:
  user: 'netdata'
  password: 'secret'
  server: 'localhost:1521'
  service: 'XE'

remote:
  user: 'netdata'
  password: 'secret'
  server: '10.0.0.1:1521'
  service: 'XE'

All parameters are required. Without them module will fail to start.

analytics