kurento 日志配置

网上找了半天也找不到相关文章,最后在代码中找到默认配置(kurento-media-server.default)
并写明文档地址https://doc-kurento.readthedocs.io/en/latest/features/logging.html

位置 /etc/default/kurento-media-server

–gst-debug-level=3
–gst-debug=“Kurento*:4,kms*:4”

或者
export GST_DEBUG=“3,Kurento*:4,kms*:4”
/usr/bin/kurento-media-server

############ Kurento Media Server Settings ############## Most settings can be passed either as environment variables or as
## command-line arguments.
## E.g.: KURENTO_LOGS_PATH="/tmp" is equivalent to --logs-path="/tmp"## Default logging levels for recommended components.
## Command line equivalent: --gst-debug-level=3 --gst-debug="[...]"
## See https://doc-kurento.readthedocs.io/en/latest/features/logging.html
export GST_DEBUG="3,Kurento*:4,kms*:4,sdp*:4,webrtc*:4,*rtpendpoint:4,rtp*handler:4,rtpsynchronizer:4,agnosticbin:4"

############ Kurento Media Server Settings ############## Most settings can be passed either as environment variables or as
## command-line arguments.
## E.g.: KURENTO_LOGS_PATH="/tmp" is equivalent to --logs-path="/tmp"## Default logging levels for recommended components.
## Command line equivalent: --gst-debug-level=3 --gst-debug="[...]"
## See https://doc-kurento.readthedocs.io/en/latest/features/logging.html
export GST_DEBUG="3,Kurento*:4,kms*:4,sdp*:4,webrtc*:4,*rtpendpoint:4,rtp*handler:4,rtpsynchronizer:4,agnosticbin:4"## Extended logging: Event MediaFlow{In,Out} state changes
# export GST_DEBUG="${GST_DEBUG:-3},KurentoMediaElementImpl:5"## Extended logging: ICE candidate gathering
# export GST_DEBUG="${GST_DEBUG:-3},kmsiceniceagent:5,kmswebrtcsession:5,webrtcendpoint:4"## 3rd-Party logging: libnice
# export G_MESSAGES_DEBUG="libnice,libnice-stun"
# export GST_DEBUG="${GST_DEBUG:-3},glib:5"## Extended logging: RPC calls
# export GST_DEBUG="${GST_DEBUG:-3},KurentoWebSocketTransport:5"## Extended logging: Transcoding of media
# export GST_DEBUG="${GST_DEBUG:-3},Kurento*:5,agnosticbin*:5"## Logging settings: Disable colored output.
## When running KMS with these service init scripts, this setting mainly
## affects the output of errors in '/var/log/kurento-media-server/errors.log'.
## Also useful to set when running directly from a Docker container.
export GST_DEBUG_NO_COLOR=1## Logging settings: Output path for GStreamer debug graphs.
## Uncomment to enable generation of debug graphs.
# export GST_DEBUG_DUMP_DOT_DIR="/tmp"## Path where rotating log files will be stored.
## If this option is unset, logging will be disabled.
## Command line equivalent: --logs-path
## Default: Unset
export KURENTO_LOGS_PATH="$DAEMON_LOG_DIR"## Maximum file size for log files, in MB.
## Command line equivalent: --log-file-size
## Default: 100
# export KURENTO_LOG_FILE_SIZE=100## Maximum number of log files to keep.
## Command line equivalent: --number-log-files
## Default: 10
# export KURENTO_NUMBER_LOG_FILES=10## Path to the main configuration file for Kurento.
## Command line equivalent: --conf-file
## Default: "/etc/kurento/kurento.conf.json"
# export KURENTO_CONF_FILE="/etc/kurento/kurento.conf.json"## Path to the directory where Kurento modules can be found.
## Command line equivalent: --modules-path
## Default: "/usr/lib"
# export KURENTO_MODULES_PATH="/usr/lib"## Path to the directory where config files can be found for Kurento modules.
## Command line equivalent: --modules-config-path
## Default: "/etc/kurento/modules"
# export KURENTO_MODULES_CONFIG_PATH="/etc/kurento/modules"############ Linux Kernel & System Settings ############unset GST_PLUGIN_PATH## Destination of Kernel core dump files
## See https://www.kernel.org/doc/Documentation/sysctl/kernel.txt
##
## In Ubuntu, if Apport is installed it creates a compact Crash Report
## including the Core Dump and some other system information.
## The default pattern in Ubuntu desktop systems is:
##     '|/usr/share/apport/apport %p %s %c %d %P'.
##
## Uncomment to set a custom pattern for core dump files.
# DAEMON_CORE_PATTERN="/tmp/core_%e_%p_%u_%t"## Set per-process max open file descriptors to half of system-wide max
## (Only touch this if you are a sysadmin and/or you know what you are doing!)
DAEMON_MAX_FILES="$(( ($(cat /proc/sys/fs/file-max) * 50) / 100 ))"## Set per-user max threads to system's "Hard Limit"
## (Only touch this if you are a sysadmin and/or you know what you are doing!)
##
## Note: This is '-u' in Bash and '-p' in Sh
# DAEMON_MAX_THREADS="$(ulimit -Hp)"

kurento 日志配置相关推荐

  1. qt能使用logback_Spring boot使用logback实现日志配置

    欢迎关注头条号:老顾聊技术 精品原创技术分享,知识的组装工 目录 前言 常用日志组件 什么是日志门面和日志实现 常见的日志框架 日志使用 @slf4j注解 日志的配置 logback-spring配置 ...

  2. 九爷带你了解 nginx 日志配置指令详解

    nginx日志配置指令详解 日志对于统计排错来说非常有利的. 本文总结了nginx日志相关的配置如 access_log.log_format.open_log_file_cache.log_not_ ...

  3. django 完整日志配置

    django 完整日志配置 django中的log需要在settings.py中配置 import timecur_path = os.path.dirname(os.path.realpath(__ ...

  4. vsftpd日志配置及查看——可以将vsftpd记录在系统日志里

    vsftpd日志配置及查看 vsftpd ftp服务器的日志设置,可以通过修改主配置文件/etc/vsftpd.conf实现.主配置文件中与日志设置有关的选项包括xferlog_enable .xfe ...

  5. Oracle 监听器日志配置与管理

    --======================== -- Oracle 监听器日志配置与管理 --========================     Oracle 监听器是一个服务器端程序,用 ...

  6. Spring Boot与日志 ——日志框架、日志配置||SLF4j使用||SpringBoot日志关系||切换日志框架

    1.日志框架 SLF4j使用 1.如何在系统中使用SLF4j 以后开发的时候,日志记录方法的调用,不应该来直接调用日志的实现类,而是调用日志抽象层里面的方法: 给系统里面导入slf4j的jar和 lo ...

  7. Spring boot指定日志配置

    指定日志配置 给类路径下,放上每个日志框架,自己的配置文件即可 SpringBoot就不使用,默认配置的了 Spring文件名区别 logback.xml 直接就被日志框架识别了 logback-sp ...

  8. Spring boot默认日志配置

    默认日志配置 查看依赖包 Logging Base.xml 基本配置 Defaults.xml 默认配置

  9. filebeat获取nginx的access日志配置

    filebeat获取nginx的access日志配置产生nginx日志的服务器即生产者服务器配置: 拿omp.chinasoft.com举例: 1.nginx.conf主配置文件添加日志格式log_f ...

最新文章

  1. 玩转Autorun.inf
  2. 解密联想20年的45条法则
  3. 关于epoll中的read函数说明
  4. boost::hana::to用法的测试程序
  5. python类和对象实例_python的类和实例化对象
  6. python多人游戏服务器_Python在线多人游戏开发教程
  7. Android添加Header请求参数实例,java响应header请求实现demo
  8. 开启阿里云对象存储OSS防误删新功能,保护您珍贵的数据。
  9. react-native 打离线包
  10. vb6 由于超出容量限制 不能创建新事务_Executors类创建四种常见线程池
  11. composer.install
  12. 前端必备Javascript 书籍测评【含红宝书和绿皮书】
  13. matlab产生大气湍流,一种大气湍流模拟装置的制造方法
  14. 怎么解除计算机教室的游戏限制,多妙招解除极域电子教室的控制权限
  15. 我眼中的未来计算机作文1000字,我的未来作文1000字
  16. python 小甲鱼小游戏_Python 小甲鱼教程 Easygui 篇
  17. MyBatis 的级联查询
  18. 计组笔记:浮点的四则运算 /规格化 / 舍入
  19. RAID技术规范简介 RAID0 RAID1 RAID2 RAID3 RAID4 RAID5 RAID6 RAID7
  20. 比尔盖茨夫妇现身贫民窟

热门文章

  1. oracle 55道练习题
  2. html表单下拉菜单_HTML表单:下拉菜单
  3. html5小米618,小米放大招!迎战618 终于等到了!
  4. 程序员去卖水果和混沌理论
  5. Java8集合List排序、筛选、求和、求最大值、平均值、List转Map
  6. 机器学习实验——单变量线性回归(披萨价格预测问题)
  7. 学会这一妙计,切削振刀至少降低3倍
  8. T8服务器怎么重装系统,美图 T8手机如何重装系统、手机系统怎样重装?
  9. access查询mysql_Access查询之自定义字段
  10. Ubuntu18.04——编译报错解决:file format not recognized; treating as linker script