Hi, I'm trying to get data in from a file where data is in the following format (anonymized): {" seq " :55619 ," ntp_time " : [ 3809782725 , 1802580594 ]," reporting_id " : {" tugid " : "server "," ep_type " : " sip "," side " : " SS "," mac " : "aa:bb:cc:dd:ee:ff "," user " : "username "," dn " : " 43128 "}," stream_id " : {" sip_callid " : " hexstring "," local_uri " : " sips:emailstring:5061 "," remote_uri " : " sips:emailstring:5061 ; transport=tls "," ep_stream_id " :5053 }," event " : " rtcp_tx "," rtcp_block " : {" addr_local " : "ipaddr :24794 "," addr_remote " : "ipaddr 5036 "," cname " : "emailstring "," snd_ssrc " :680275594 ," recv_ssrc " :3888553685 ," snd_pktcnt " :206158433963 ," snd_bcnt " :4121132523374324448 ," rx_loss_total " :139753940844544 ," rx_loss_fract " :0 ," rx_jtr " :-139758235811834 ," rtt " :139753940844544 }," rtp_stats " : {" observed_pt " :0 ," observed_codec " : " RTP_CODEC_G711_U "}} So, a nice JSON. But, that pair of integers in ntp_time{} are seconds since 1/1/1900 and a fractional second, not 1/1/1970. I'm really, really hoping I don't have to write a second script that writes out the correct timestamp. On my indexers, for the sourcetype I've defined for this, I've the following: [baddate] REGEX = ntp_time\":\[(?<baddate>\d+) INGEST_EVAL = gooddate = baddate - 2208988800 I also have props.conf calling the transform, and fields.conf setting "INDEXED=True" for baddate. But I don't get the field in search yet. Would this even work though? Does anyone have any other strategies I can try? I don't really care about the fractional second, but would work it in if I can get something to work.
... View more