云日志服务 LTS-操作符函数:op_eq

时间:2024-11-02 18:44:20

op_eq

按照a==b条件进行计算,返回true或false。

  • 函数格式
    op_eq(value1, value2)
  • 参数说明

    参数名称

    参数类型

    是否必填

    说明

    value1

    任意

    运算值1。

    value2

    必须与值1相同

    运算值2。

  • 返回结果

    如果值1与值2相等返回true,否则返回false。

  • 函数示例
    1. 示例1:
      • 测试数据
        {
         "content": "hello",
         "ctx": "hello"
        }
      • 加工规则
        e_set("test_eq", op_eq(v("content"),v("ctx")))
      • 加工结果
        content: hello
        ctx: hello 
        test_eq: true
    2. 示例2:
      • 测试数据
        {
         "content": "hello",
         "ctx": "ctx"
        }
      • 加工规则
        e_set("test_eq", op_eq(v("content"),v("ctx")))
      • 加工结果
        content: hello
        ctx: ctx 
        test_eq: false
support.huaweicloud.com/usermanual-lts/lts_07_0158.html