OvenMediaEngine Enterprise
English
English
  • About
    • Introduction
    • Release Notes
      • 0.19.0
      • 0.18.3
      • 0.18.2
      • 0.18.1
      • 0.18.0
      • 0.17.3
      • 0.17.2
      • 0.17.1
      • 0.17.0
      • 0.16.8
      • 0.16.7
      • 0.16.6
      • 0.16.5
      • 0.16.4
  • Pre-Built Package Installation
    • Getting Started
      • Getting Started with Ubuntu
      • Getting Started with RHEL
      • Getting Started with Docker
    • Configuration Structure Overview
  • Advanced Security
    • Digital Rights Management (DRM)
      • OvenMediaEngine Configuration for DRM
      • PallyCon DRM Configuration
    • RTMP Authentication
  • SHA-2 Support
  • High Availability
    • Origin Redundancy
  • Web Console
    • Getting Started with Web Console
    • Web Console Overview
      • Sign In
      • Change Password
      • Web Console Home
      • Stream List
        • Managed and Instant Streams
        • Scheduled Channels
        • Multiplex Channels
      • Event Monitoring
        • Configuration
        • Event Specification
      • Web Console Publishing
      • Logs
      • Configuration Files
      • Restart
    • Web Console Settings
      • Server Settings
      • Live Sources (Ingress) Settings
      • ABR and Transcoding Settings
      • Streaming (Egress) Settings
      • TLS Encryption Settings
      • Access Control Settings
      • Thumbnail Settings
      • Recording Settings
      • Push Publishing Settings
      • REST API Settings
      • Alert Settings
  • Operations & Monitoring
    • API Storage
    • Recording Delivery
  • Performance Optimization
    • Hardware Encoder Support
  • Workflow Integration & External System Connectivity
    • CDN Cache Control
    • Proxy Protocol
    • SEI Insertion
    • AMF0 Message Insertion
    • HLS Markers (CUE-OUT/IN)
    • onCuePoint Message Insertion
    • Delay Buffer
    • Query String Handling
    • Default Playlist Creation
    • iOS Audio PTS
  • REST API
    • v2
      • Statistics
        • Current
Powered by GitBook
On this page
  1. Web Console
  2. Web Console Overview
  3. Event Monitoring

Configuration

PreviousEvent MonitoringNextEvent Specification

Last updated 3 months ago

CtrlK
  • Configuration
  • Configuration using Server.xml
  • Configuration using the Web Console
  • Post Configuration
  • Web Console Event Log Directory Setting
  • Event Specification

Configuration

Event monitoring can be configured by modifying Server.xml or through the Web Console.

Configuration using Server.xml

To enable event monitoring, add the relevant settings to Server.xml.

<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<Server version="8">

 <Monitoring>
    <Events>
      <Level>info</Level>
      <Log>
        <Enabled>true</Enabled>
        <Path>/var/log/ovenmediaengine</Path>
      </Log>
    </Events>
  </Monitoring>

</Server>
Parameter
Required
Description

<Events><Level>

N

Event logs have different levels according to operations. Configurable values are trace, debug, info, warn, error, and the default is debug.

<Events><Log><Enabled>

Y

The event logging function can be enabled or disabled with true or false.

<Events><Log><Path>

N

Specifies the directory where event log files are saved. The default directory is /var/log/ovenmediaengine.

If you modify Server.xml, you need to restart OvenMediaEngine and the Web Console.

Configuration using the Web Console

You can enable the event monitoring function through the UI on the Web Console's Server Settings page.

  1. Navigate to the Settings → Server page using the navigation at the top-right of the screen.

  2. Set the values in the monitoring section. 2-1. level: Set the level of event logs. 2-2. Log Enabled: Set to true to enable event logging. 2-3. Log Path: Set the directory where event logs will be saved. If set to an empty value, event logs will be saved as event.log in OvenMediaEngine's default log storage directory, /var/log/ovenmediaengine.

  3. After setting the values, click the Update Changes button at the top to apply the changes.

OvenMediaEngine will automatically restart when changes are applied.

Post Configuration

Web Console Event Log Directory Setting

No additional settings are needed if you use the default directory, /var/log/ovenmediaengine.

To synchronize recorded event logs with the Web Console, you need to match the Web Console's environment variables with the configured LogPath.

You can set the changed event logging directory by adding environment variables to system.env.

OS_ENGINE_MONITORING_EVENT_PATH=/your/eventlog/directory

Event Specification

Please refer to the Event Specification document for details on the event formats and event lists recorded through event logging.