This feature is available as an add-on for the Honeycomb Enterprise plan.
Please contact your Honeycomb account team for details.
Supported Platforms
Platform
Metrics
Logs
Traces
Linux
✓
✓
Windows
✓
✓
macOS
✓
✓
Metrics Requirements
To collect metrics from OracleDB, a user with SELECT access to the relevant views is required. To create a new user with those permissions, run the following SQL script as a user with sufficient permissions connected to the Oracle DB instance as SYSDBA or SYSOPER.
-- Create the monitoring user "bindplane"
CREATEUSERbindplaneIDENTIFIEDBY<authenticationpassword>;-- Grant the "bindplane" user the required permissions
GRANTCONNECTTObindplane;GRANTSELECTONSYS.GV_$DATABASEtobindplane;GRANTSELECTONSYS.GV_$INSTANCEtobindplane;GRANTSELECTONSYS.GV_$PROCESStobindplane;GRANTSELECTONSYS.GV_$RESOURCE_LIMITtobindplane;GRANTSELECTONSYS.GV_$SYSMETRICtobindplane;GRANTSELECTONSYS.GV_$SYSSTATtobindplane;GRANTSELECTONSYS.GV_$SYSTEM_EVENTtobindplane;GRANTSELECTONSYS.V_$RMAN_BACKUP_JOB_DETAILStobindplane;GRANTSELECTONSYS.V_$SORT_SEGMENTtobindplane;GRANTSELECTONSYS.V_$TABLESPACEtobindplane;GRANTSELECTONSYS.V_$TEMPFILEtobindplane;GRANTSELECTONSYS.DBA_DATA_FILEStobindplane;GRANTSELECTONSYS.DBA_FREE_SPACEtobindplane;GRANTSELECTONSYS.DBA_TABLESPACE_USAGE_METRICStobindplane;GRANTSELECTONSYS.DBA_TABLESPACEStobindplane;GRANTSELECTONSYS.GLOBAL_NAMEtobindplane;