我有一个这样的日志文件。INFO [com.cplus.sdk.iso.module] 02:55:24.8290 19.02.2022 @ com.cplus.sdk.iso.Module [Message] message sent [Source] [Protocol:TranzWare-InterConnect (v.2.115-11);Client:[Transport:TCP/IP;To:/127.0.0.1:50274;From:/127.0.0.1:4455;KeepAlive:true;Framer:L2 L1 <###>]] [Thread] IA-Pool-Thread-18 (30)INFO [com.cplus.sdk.net] 02:55:25.7840 19.02.2022 @ com.cplus.sdk.net.Client [Message] connection closed [Source] [Transport:TCP/IP;Closed;To:/172.30.250.35:57001;From:/10.1.180.54:49851;KeepAlive:true;Framer:(Len+1) L2 L1 <###> ETX] [Thread] IA-Pool-Thread-4 (16)SEVERE [com.cplus.ia] 02:55:25.9530 19.02.2022 @ com.cplus.ia.Instance$InterfaceListener$2 [Message] interface processing error [Source] Instance:[UnitID:11276;External:{ExternalHost:[Protocol:Alto-Rtt (v.1.0);Interface:ISO-8583 Based Host-To-Host Interface]}] [Thread] IA-Pool-Thread-4 (16) [Exception] com.cplus.sdk.ex.ProcessorException com.cplus.ia.tic.Interface.handle <- com.cplus.sdk.iso.Processor.process <- com.cplus.ia.tic.Interface.process <- com.cplus.sdk.iso.Module.process <- com.cplus.ia.Instance$InterfaceListener$2.run <- java.util.concurrent.Executors$RunnableAdapter.call[Executors.java<511>] <- java.util.concurrent.FutureTask.run[FutureTask.java<266>] <- java.util.concurrent.ThreadPoolExecutor.runWorker[ThreadPoolExecutor.java<1149>] <- java.util.concurrent.ThreadPoolExecutor$Worker.run[ThreadPoolExecutor.java<624>] <- com.cplus.ia.Instance$ApplicationThread.run <- java.lang.Thread.run[Thread.java<748>] [Text] unhandled processing error我想根据下一行是否不是 \t 字符来拆分和分组它。在 javascript 中,我可以在 split 方法中使用正则表达式,但是 golang Split in strings 内置函数只接收字符串作为分隔符。到目前为止我试过的是strings.SplitAfter(log, ")")但是上面的代码并没有完全捕获 SEVERE 状态。我正在考虑遍历每个字符并寻找字母字符并将其附加到一个切片,但我认为它会太慢。有什么办法吗?
- 1 回答
- 0 关注
- 82 浏览
添加回答
举报
0/150
提交
取消