文档首页/ 云日志服务 LTS/ 最佳实践/ 日志加工(邀测)/ 使用DSL加工函数清洗LTS日志数据/ 场景五:使用default传参为日志不存在的字段填充默认值
更新时间:2024-08-02 GMT+08:00
分享

场景五:使用default传参为日志不存在的字段填充默认值

  • 原始日志
    {
      "content": "this is a log"
    }
  • 加工规则:
    e_if(e_not_has("type"), e_set("type", "log"))
  • 加工结果
    {
    	"type": "log",
    	"content": "this is a log"
    }

相关文档