kmp_cc_in_log_frames
The `kmp_cc_in_log_frames` directive configures the logging behavior for frames processed in Kaltura Media Framework.
Description
The kmp_cc_in_log_frames directive provides a mechanism for enabling or disabling the logging of frame-level data for Kaltura Media Framework streams. This is particularly useful in the context of debugging or monitoring stream behavior, as it allows administrators to gain insights into the processing of individual frames. By specifying an argument of 1, the directive enables detailed logging, while any other value or omission will disable it.
When this directive is active, it enhances the log output to include more granular details about each frame, which can be instrumental in performance analysis and troubleshooting. It should be noted that excessive logging may impact performance, especially under high load, so it is typically used in development or testing environments rather than in production.
The directive can be used in both stream and stream server contexts, allowing flexibility in its application depending on the deployment architecture. The configuration must ensure that the directive is placed correctly within the appropriate context to take effect effectively, otherwise it will remain ignored.
Config Example
stream {
server {
listen 1234;
kmp_cc_in_log_frames 1;
}
}Ensure the directive is placed within the correct context to be recognized (stream or stream server).
Overuse of logging may degrade performance; it is advisable to limit its use to troubleshooting scenarios.