kmp_cc_out_log_frames

The `kmp_cc_out_log_frames` directive enables logging of frames output from the Kaltura Media Framework during streaming.

Syntaxkmp_cc_out_log_frames level;
Defaultnone
Contextstream, stream server
Arguments1

Description

The kmp_cc_out_log_frames directive, applicable within the stream and stream server contexts, allows operators to enable logging for the frames processed in a streaming session when using the Kaltura Media Framework. This information can be crucial for debugging and monitoring purposes, as it provides insights into the media frame output activity. The directive accepts a single argument, typically a string that indicates the log level or format, and controls the verbosity of the logging related to the output frames.

When the kmp_cc_out_log_frames directive is enabled, the NGINX server will capture and log relevant frame data for the media streams being processed by the Kaltura Media Framework. This can include information on frame counts, timestamps, and any potential issues encountered during streaming. Care should be taken to appropriately set the logging level since excessive logging can lead to performance degradation or quickly consume disk space depending on the volume of video traffic.

Config Example

stream {
    server {
        kmp_cc_out_log_frames debug;
    }
}

Ensure that the logging level set does not overwhelm the logging system.

Only use this directive in appropriate contexts to avoid misconfigurations.

Make sure to monitor disk usage if logging at a verbose level is enabled.

← Back to all directives