Browse Source

update 取消非正常数据过滤

pull/2/head
lucas 1 month ago
parent
commit
35ad2d7295
  1. 2
      adaptors/安心云最新设备数据toES.go

2
adaptors/安心云最新设备数据toES.go

@ -24,7 +24,7 @@ func (the Adaptor_AXY_LastRAW) Transform(topic, rawMsg string) *models.EsRaw {
}
func (the Adaptor_AXY_LastRAW) raw2es(iotaData models.IotaData) *models.EsRaw {
if !iotaData.Data.Success() {
if len(iotaData.Data.Data) == 0 {
return nil
}
//log.Printf("设备[%s] 数据时间 %s", iotaData.DeviceId, iotaData.TriggerTime)

Loading…
Cancel
Save