📣 极限科技诚招搜索运维工程师(Elasticsearch/Easysearch)- 全职/北京 👉 : 立即申请加入

适用版本: 6.8-8.9

1. 错误异常的基本描述 #

could not parse message attachment field. unexpected field [field] 是 Elasticsearch Watcher 在解析消息附件(message attachment)对象时抛出的异常。当附件对象中出现当前解析器不支持的字段时,就会触发此错误。

此错误常见于 Slack、PagerDuty、Jira 等通知动作的 attachment 配置中,通常由于字段层级错误或使用了不支持的字段名导致。

常见现象 #

  • 创建或更新 watch 时返回 HTTP 400 错误。
  • 报错信息明确指出哪个字段是未预期的(unexpected field [field])。
  • 常见于手动编写复杂 attachment JSON 时,或从不同版本的配置示例中复制粘贴时。
  • 附件对象中可能多写了字段,或把字段放错了层级。

典型报错与异常栈 #

{
  "error": {
    "root_cause": [
      {
        "type": "parse_exception",
        "reason": "could not parse message attachment field. unexpected field [invalid_field]"
      }
    ],
    "type": "parse_exception",
    "reason": "could not parse message attachment field. unexpected field [invalid_field]"
  },
  "status": 400
}

服务端日志中可能出现类似以下内容:

[2024-01-15T10:30:00,123][WARN ][o.e.x.w.a.e.SlackAction ] [node-1] failed to parse message attachment field
ElasticsearchParseException[could not parse message attachment field. unexpected field [invalid_field]]
    at org.elasticsearch.xpack.watcher.actions.slack.SlackAttachment$Field.parse(SlackAttachment.java:256)
    at org.elasticsearch.xpack.watcher.actions.slack.SlackAttachment.parse(SlackAttachment.java:189)

2. 为什么会发生这个错误 #

Watcher 的 message attachment parser 只接受一组预定义的固定字段。当解析器遇到不在支持列表中的字段时,就会抛出 unexpected field 异常。

常见原因包括:

  • 附件对象中多写了未支持字段:例如,在 attachment field 中使用了 Slack API 支持但 Watcher 解析器不支持的字段。
  • 字段放错层级:把应该属于 attachment 对象的字段放到了 field 对象中,或反之。
  • 动作数组或子对象结构错误actions 数组的结构不正确,导致解析器无法正确识别字段归属。
  • 版本差异:不同版本的 Watcher 支持的 attachment 字段不同,从高版本复制的配置可能包含低版本不支持的字段。
  • JSON 结构嵌套错误:字段嵌套层级不正确,导致解析器在某个层级遇到了不期望的字段。
  • 拼写错误:字段名拼写错误,导致解析器无法识别(如 short 写成 sort)。

3. 如何排查和解决这个异常和解决这个异常 #

排查步骤 #

  1. 确认报错中的字段名:从错误信息中提取具体是哪个字段未预期(unexpected field [field])。

  2. 检查 Watch 中的 attachment 配置

# 获取 watch 配置
GET _watcher/watch/<watch_id>?pretty

# 检查 attachment 和 field 结构
  1. 对照官方文档验证字段合法性:确认该字段是否在当前版本的 Watcher attachment 支持列表中。

  2. 检查字段层级是否正确

# attachment 的正确结构示例(Slack)
PUT _watcher/watch/<watch_id>
{
  "actions": {
    "send_slack": {
      "slack": {
        "message": {
          "attachments": [
            {
              "title": "Alert Title",
              "text": "Alert message",
              "fields": [
                {
                  "title": "Field 1",
                  "value": "Value 1",
                  "short": true
                }
              ]
            }
          ]
        }
      }
    }
  }
}

排查时需要注意的问题 #

  • 注意区分 attachment 级别字段和 field 级别字段:它们支持的字段集合不同。
  • 如果使用了 actions 字段,确保其结构正确(应该是对象数组)。
  • 检查是否有从其他通知类型(如 Email)复制过来的字段,这些字段在 Slack attachment 中可能不支持。

4. 如何解决这个错误 #

常用修复思路 #

  1. 删除非法字段:从 attachment 对象中移除不支持的字段。
# 修复前(包含不支持的字段)
PUT _watcher/watch/<watch_id>
{
  "actions": {
    "send_slack": {
      "slack": {
        "message": {
          "attachments": [
            {
              "title": "Alert",
              "text": "Message",
              "invalid_field": "some value",
              "fields": []
            }
          ]
        }
      }
    }
  }
}

# 修复后(移除不支持的字段)
PUT _watcher/watch/<watch_id>
{
  "actions": {
    "send_slack": {
      "slack": {
        "message": {
          "attachments": [
            {
              "title": "Alert",
              "text": "Message",
              "fields": []
            }
          ]
        }
      }
    }
  }
}
  1. 调整字段层级:将字段移到正确的层级。
# 如果字段应该属于 attachment 而非 field
# 错误:放在 field 中
"fields": [
  {
    "title": "Field 1",
    "value": "Value 1",
    "footer": "This should be in attachment"  # 错误位置
  }
]

# 正确:footer 应该属于 attachment
{
  "attachments": [
    {
      "title": "Alert",
      "text": "Message",
      "footer": "Footer text",  # 正确位置
      "fields": [
        {
          "title": "Field 1",
          "value": "Value 1"
        }
      ]
    }
  ]
}
  1. 使用版本兼容的配置:确保配置与当前 Elasticsearch 版本兼容。

后续注意事项与推荐建议 #

  • 在编写 attachment 配置时,严格参照官方文档中的字段列表,不要随意添加 Slack API 支持但 Watcher 不支持的字段。
  • 建立配置模板库,复用经过验证的配置片段。
  • 在测试环境验证 attachment 配置,特别是从其他来源复制配置时。

借助 INFINI 产品提升排障效率 #

  • INFINI Console 提供可视化的 Watch 编辑功能,可以在保存前验证 attachment 配置的字段合法性,自动检测不支持的字段。
  • INFINI Gateway 可以记录 Watcher action 的完整请求内容,帮助捕获 attachment 配置的详细错误上下文,并通过流量回放验证修复方案。
  • 通过 INFINI Console 的配置对比功能,可以对比不同版本间的配置差异,快速定位版本兼容性问题。

5. 小结 #

could not parse message attachment field. unexpected field [field] 是一个字段合法性错误,表示 attachment 对象中包含了不支持的字段。解决此问题的关键是:确认报错字段名,检查字段是否应该存在于当前层级,移除不支持的字段或将字段移到正确位置。

通过 INFINI Console 的配置验证功能和 INFINI Gateway 的请求捕获能力,可以更高效地定位和修复 message attachment 的字段层级问题。

相关错误 #

参考文档 #

附:日志上下文 #

下面保留当前页面中的源码或日志片段,便于继续结合异常调用栈定位问题:

} else if (XField.ACTIONS.match(currentFieldName, parser.getDeprecationHandler())) {
    if (token == XContentParser.Token.START_OBJECT) {
        actions.add(Action.ACTION_PARSER.parse(parser, null));
    }
} else {
    throw new ElasticsearchParseException("could not parse message attachment field. unexpected field [{}]",
        currentFieldName);
}