微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

如何将自定义属性添加到 AttributesToJSON?

如何解决如何将自定义属性添加到 AttributesToJSON?

我有一个场景,其中文件列表来自前一个处理器,对于每个文件,我必须创建具有流文件属性的 json 文件。在 AttributesToJSON 处理器配置中,可以选择提取管道属性并可以创建 json 文件/对象,如果我们将 Include Core Attributes 设置为 true,它将读取一些文件属性并形成 json 文件

enter image description here

the out for the above case in my scenario is …
{"fragment.size":"125"
file.group:"root",file.lastModifiedTime:"2020-12-22T15:09:13+0000",fragment.identifier:"ee5770ea-8406-400a-a2fd-2362bd706fe0",fragment.index:"1",file.creationTime:"2020-12-22T15:09:13+0000",file.lastAccesstime:"2020-12-22T17:34:22+0000",segment.original.filename:"Sample-Spreadsheet-10000-rows.csv",file.owner:"root",fragment.count:"2",file.permissions:"rw-r--r--",text.line.count:"1"}
}



 But the files has other properties,like absolute.path,filename,uuid  are missing in the above json file.
    My requirement is,get the absolute.path,filename and uuid and concatenate absolute.path+/+filename,assign this to custom attribute say filepath:absolute.path+/+filename and also add uuid to json object.  

所以我的 json 文件应该像

{ uuid:"文件 uuid 值",文件路径:“绝对路径+/+文件名” } 任何输入到 json 文件之上。

解决方法

在传递给 UpdateAttribute 之前使用 AttributestoJSON 处理器删除不必要的属性,或者您也可以在 attributesToJSON 处理器中指定您需要的确切属性。

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。