Skip to content

Oracle


·


Oracle monitoring metrics collection has the following data collection functions.

  • process correlation
  • Tablespace related data
  • system data collection
  • Custom query data collection

Already tested version:

  • Oracle 19c
  • Oracle 12c
  • Oracle 11g

Configuration

Precondition

  • Create a monitoring account

If you wish to monitor only a single PDB or non-CDB instance, a local user is sufficient:

-- Create the datakit user. Replace the password placeholder with a secure password.
CREATE USER datakit IDENTIFIED BY <PASSWORD>;

-- Grant access to the datakit user.
GRANT CONNECT, CREATE SESSION TO datakit;
GRANT SELECT_CATALOG_ROLE to datakit;
GRANT SELECT ON DBA_TABLESPACE_USAGE_METRICS TO datakit;
GRANT SELECT ON DBA_TABLESPACES TO datakit;
GRANT SELECT ON DBA_USERS TO datakit;
GRANT SELECT ON SYS.DBA_DATA_FILES TO datakit;
GRANT SELECT ON V_$ACTIVE_SESSION_HISTORY TO datakit;
GRANT SELECT ON V_$ARCHIVE_DEST TO datakit;
GRANT SELECT ON V_$ASM_DISKGROUP TO datakit;
GRANT SELECT ON V_$DATABASE TO datakit;
GRANT SELECT ON V_$DATAFILE TO datakit;
GRANT SELECT ON V_$INSTANCE TO datakit;
GRANT SELECT ON V_$LOG TO datakit;
GRANT SELECT ON V_$OSSTAT TO datakit;
GRANT SELECT ON V_$PGASTAT TO datakit;
GRANT SELECT ON V_$PROCESS TO datakit;
GRANT SELECT ON V_$RECOVERY_FILE_DEST TO datakit;
GRANT SELECT ON V_$RESTORE_POINT TO datakit;
GRANT SELECT ON V_$SESSION TO datakit;
GRANT SELECT ON V_$SGASTAT TO datakit;
GRANT SELECT ON V_$SYSMETRIC TO datakit;
GRANT SELECT ON V_$SYSTEM_PARAMETER TO datakit;

If you want to monitor table spaces from the CDB and all PDBs, you need a common user with the appropriate permissions:

-- Create the datakit user. Replace the password placeholder with a secure password.
CREATE USER datakit IDENTIFIED BY <PASSWORD>;

-- Grant access to the datakit user.
ALTER USER datakit SET CONTAINER_DATA=ALL CONTAINER=CURRENT;
GRANT CONNECT, CREATE SESSION TO datakit;
GRANT SELECT_CATALOG_ROLE to datakit;
GRANT SELECT ON v_$instance TO datakit;
GRANT SELECT ON v_$database TO datakit;
GRANT SELECT ON v_$sysmetric TO datakit;
GRANT SELECT ON v_$system_parameter TO datakit;
GRANT SELECT ON v_$session TO datakit;
GRANT SELECT ON v_$recovery_file_dest TO datakit;
GRANT SELECT ON v_$active_session_history TO datakit;
GRANT SELECT ON v_$osstat TO datakit;
GRANT SELECT ON v_$restore_point TO datakit;
GRANT SELECT ON v_$process TO datakit;
GRANT SELECT ON v_$datafile TO datakit;
GRANT SELECT ON v_$pgastat TO datakit;
GRANT SELECT ON v_$sgastat TO datakit;
GRANT SELECT ON v_$log TO datakit;
GRANT SELECT ON v_$archive_dest TO datakit;
GRANT SELECT ON v_$asm_diskgroup TO datakit;
GRANT SELECT ON sys.dba_data_files TO datakit;
GRANT SELECT ON DBA_TABLESPACES TO datakit;
GRANT SELECT ON DBA_TABLESPACE_USAGE_METRICS TO datakit;
GRANT SELECT ON DBA_USERS TO datakit;
Attention

Some of the SQL above may lead to non-existent failure due to diverse Oracle version, just ignore it.

  • Deploy dependency package

Select the appropriate installation package based on the operating system and Oracle version, refer to here. For example:

wget https://download.oracle.com/otn_software/linux/instantclient/2110000/instantclient-basiclite-linux.x64-21.10.0.0.0dbru.zip
unzip instantclient-basiclite-linux.x64-21.10.0.0.0dbru.zip

Add the extracted directory file path to the LD_LIBRARY_PATH environment variable path in the following configuration information.

You can also download our pre-prepared dependency package directly:

wget https://static.guance.com/otn_software/instantclient/instantclient-basiclite-linux.x64-21.10.0.0.0dbru.zip \
    -O /usr/local/datakit/externals/instantclient-basiclite-linux.zip \
    && unzip /usr/local/datakit/externals/instantclient-basiclite-linux.zip -d /opt/oracle \
    && mv /opt/oracle/instantclient_21_10 /opt/oracle/instantclient;
wget https://download.oracle.com/otn_software/linux/instantclient/1919000/instantclient-basiclite-linux.arm64-19.19.0.0.0dbru.zip
unzip instantclient-basiclite-linux.arm64-19.19.0.0.0dbru.zip

Add the extracted directory file path to the LD_LIBRARY_PATH environment variable path in the following configuration information.

You can also download our pre-prepared dependency package directly:

wget https://static.guance.com/otn_software/instantclient/instantclient-basiclite-linux.arm64-19.19.0.0.0dbru.zip \
    -O /usr/local/datakit/externals/instantclient-basiclite-linux.zip \
    && unzip /usr/local/datakit/externals/instantclient-basiclite-linux.zip -d /opt/oracle \
    && mv /opt/oracle/instantclient_19_19 /opt/oracle/instantclient;
  • For some OS need to install additional dependent libraries:
apt-get install -y libaio-dev libaio1

Configuration

Go to the conf.d/db directory under the DataKit installation directory, copy oracle.conf.sample and name it oracle.conf. Examples are as follows:

[[inputs.external]]
  daemon = true
  name   = "oracle"
  cmd    = "/usr/local/datakit/externals/oracle"

  ## Set true to enable election
  election = true

  ## Modify below if necessary.
  ## The password use environment variable named "ENV_INPUT_ORACLE_PASSWORD".
  args = [
    "--interval"        , "1m"                           ,
    "--host"            , "<your-oracle-host>"           ,
    "--port"            , "1521"                         ,
    "--username"        , "<oracle-user-name>"           ,
    "--service-name"    , "<oracle-service-name>"        ,
    "--slow-query-time" , "0s"                           ,
    "--log"             , "/var/log/datakit/oracle.log"  ,
  ]
  envs = [
    "ENV_INPUT_ORACLE_PASSWORD=<oracle-password>",
    "LD_LIBRARY_PATH=/opt/oracle/instantclient:$LD_LIBRARY_PATH",
  ]

  [inputs.external.tags]
    # some_tag = "some_value"
    # more_tag = "some_other_value"

  ## Run a custom SQL query and collect corresponding metrics.
  # [[inputs.external.custom_queries]]
  #   sql = '''
  #     SELECT
  #       GROUP_ID, METRIC_NAME, VALUE
  #     FROM GV$SYSMETRIC
  #   '''
  #   metric = "oracle_custom"
  #   tags = ["GROUP_ID", "METRIC_NAME"]
  #   fields = ["VALUE"]

  #############################
  # Parameter Description (Marked with * is required field)
  #############################
  # *--interval                   : Collect interval (Default is 1m).
  # *--host                       : Oracle instance address (IP).
  # *--port                       : Oracle listen port (Default is 1521).
  # *--username                   : Oracle username.
  # *--service-name               : Oracle service name.
  # *--slow-query-time            : Oracle slow query time threshold defined. If larger than this, the executed sql will be reported.
  # *--log                        : Collector log path.
  # *ENV_INPUT_ORACLE_PASSWORD    : Oracle password.

Once configured, restart DataKit.

The collector can now be turned on by ConfigMap Injection Collector Configuration.

Tip

The configuration above would shows in the process list(including password). If want to hide the password, can use the environment variable ENV_INPUT_ORACLE_PASSWORD, like below:

envs = [
  "ENV_INPUT_ORACLE_PASSWORD=<YOUR-SAFE-PASSWORD>"
] 

The environment variable has highest priority, which means if existed that environment variable, the value in the environment variable will always treated as the password.

Metric

For all of the following data collections, a global tag named host is appended by default (the tag value is the host name of the DataKit), or other tags can be specified in the configuration by [inputs.external.tags]:

 [inputs.external.tags]
  # some_tag = "some_value"
  # more_tag = "some_other_value"
  # ...

oracle_process

  • tag
Tag Description
host Host name
oracle_server Server addr
oracle_service Server service
pdb_name PDB name
program Program in progress
  • metric list
Metric Description Type Unit
pga_alloc_mem PGA memory allocated by process float B
pga_freeable_mem PGA memory freeable by process float B
pga_max_mem PGA maximum memory ever allocated by process float B
pga_used_mem PGA memory used by process float B
pid Oracle process identifier int -

oracle_tablespace

  • tag
Tag Description
host Host name
oracle_server Server addr
oracle_service Server service
pdb_name PDB name
tablespace_name Table space name
  • metric list
Metric Description Type Unit
in_use Table space in-use float count
off_use Table space offline float count
ts_size Table space size float B
used_space Used space float count

oracle_system

  • tag
Tag Description
host Host name
oracle_server Server addr
oracle_service Server service
pdb_name PDB name
  • metric list
Metric Description Type Unit
active_sessions Number of active sessions float count
buffer_cachehit_ratio Ratio of buffer cache hits float percent
cache_blocks_corrupt Corrupt cache blocks float count
cache_blocks_lost Lost cache blocks float count
consistent_read_changes Consistent read changes per second float count
consistent_read_gets Consistent read gets per second float count
cursor_cachehit_ratio Ratio of cursor cache hits float percent
database_cpu_time_ratio Database CPU time ratio float percent
database_wait_time_ratio Memory sorts per second float percent
db_block_changes DB block changes per second float count
db_block_gets DB block gets per second float count
disk_sorts Disk sorts per second float count
enqueue_timeouts Enqueue timeouts per second float count
execute_without_parse Execute without parse ratio float count
gc_cr_block_received GC CR block received float count
host_cpu_utilization Host CPU utilization (%) float percent
library_cachehit_ratio Ratio of library cache hits float percent
logical_reads Logical reads per second float count
logons Number of logon attempts float count
memory_sorts_ratio Memory sorts ratio float percent
pga_over_allocation_count Over-allocating PGA memory count float count
physical_reads Physical reads per second float count
physical_reads_direct Physical reads direct per second float count
physical_writes Physical writes per second float count
redo_generated Redo generated per second float count
redo_writes Redo writes per second float count
rows_per_sort Rows per sort float count
service_response_time Service response time float sec
session_count Session count float count
session_limit_usage Session limit usage float percent
shared_pool_free Shared pool free memory % float percent
soft_parse_ratio Soft parse ratio float percent
sorts_per_user_call Sorts per user call float count
temp_space_used Temp space used float B
user_rollbacks Number of user rollbacks float count

Long running queries

Datakit could reports the SQLs, those executed time exceeded the threshold time defined by user, to Guance Cloud, displays in the Logs side bar, the source name is oracle_log.

This function is disabled by default, user could enabling it by modify Datakit's Oracle configuration like followings:

Change the string value after --slow-query-time from 0s to the threshold time, minimal value is 1 millsecond. Generally, recommand it to 10s.

  args = [
    ...
    '--slow-query-time' , '10s',
  ]
Fields description
  • avg_elapsed: The SQL executed average time cost.
  • username: The user who executed the SQL.
  • failed_obfuscate:SQL obfuscated failed reason. Only exist when SQL obfuscated failed. Original SQL will be reported when SQL obfuscated failed. More fields.
Attention
  • If the string value after --slow-query-time is 0s or empty or less than 1 millisecond, this function is disabled, which is also the default state.
  • The SQL would not display here when NOT executed completed.

Custom Query

Support custom query collects. Guide and example is custom_queries in the Configuration above.

FAQ

How to view the running log of Oracle Collector?

Because the Oracle collector is an external collector, its logs by default are stored separately in [Datakit-install-path]/externals/oracle.log.

In addition, the log path could modified by using --log parameter in configuration file.

After Oracle collection is configured, why is there no data displayed in monitor?

There are several possible reasons:

  • Oracle dynamic library dependencies are problematic

Even though you may already have a corresponding Oracle package on your machine, it is recommended to use the dependency package specified in the above document and ensure that its installation path is consistent with the path specified by LD_LIBRARY_PATH.

  • There is a problem with the glibc version

As the Oracle collector is compiled independently and CGO is turned on, its runtime requires glibc dependencies. On Linux, you can check whether there is any problem with the glibc dependencies of the current machine by the following command:

$ ldd <Datakit-install-path>/externals/oracle
  linux-vdso.so.1 (0x00007ffed33f9000)
  libdl.so.2 => /lib/x86_64-linux-gnu/libdl.so.2 (0x00007f70144e1000)
  libpthread.so.0 => /lib/x86_64-linux-gnu/libpthread.so.0 (0x00007f70144be000)
  libc.so.6 => /lib/x86_64-linux-gnu/libc.so.6 (0x00007f70142cc000)
  /lib64/ld-linux-x86-64.so.2 (0x00007f70144fc000)

If the following information is reported, it is basically caused by the low glibc version on the current machine:

externals/oracle: /lib64/libc.so.6: version  `GLIBC_2.14` not found (required by externals/oracle)
  • Oracle Collector is only available on Linux x86_64/ARM64 architecture DataKit and is not supported on other platforms.

This means that the Oracle collector can only run on x86_64/ARM64 Linux, and no other platform can run the current Oracle collector.

Why can't see oracle_system measurements?

It needs to taking 1 minute to see them after the database system starting up.

Feedback

Is this page helpful? ×