Max processes


Job details

Name: Max processes
Platform: Oracle
Category: Capacity
Description: Checks the maximum number of processes.
Long description:
Version: 1.0
Default schedule: 15m
Requires engine install: No
Compatibility tag: .[type=‘instance’ & databasetype=‘oracle’]

Parameters

Name Default value Description
warning_threshold 20 Number of processes left until processes parameter is reached in order to generate warning
alarm_threshold 5 Number of processes left until processes parameter is reached in order to generate alarm

Job Summary

select to_number(p.value), to_number((select count(*) from v$process)) from v$parameter p where upper(p.name) like 'PROCESSES';

Functionality and Detection Logic

Execution and Scheduling

Reporting and Output

Details Table Display and Error Handling

Name SQL-Type Description
Details 0 Shows current process count vs. the maximum limit

By maintaining this job, database administrators ensure they can proactively manage and scale their Oracle environments effectively, avoiding potential outages or slow-downs caused by maxing out available database processes.