error.log-2025-01-15 579 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469
  1. {"@timestamp":"2025-01-15T00:00:14.604+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  2. {"@timestamp":"2025-01-15T00:00:39.609+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  3. {"@timestamp":"2025-01-15T00:01:04.615+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  4. {"@timestamp":"2025-01-15T00:01:29.621+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  5. {"@timestamp":"2025-01-15T00:01:54.625+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  6. {"@timestamp":"2025-01-15T00:02:19.631+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  7. {"@timestamp":"2025-01-15T00:02:44.637+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  8. {"@timestamp":"2025-01-15T00:03:09.641+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  9. {"@timestamp":"2025-01-15T00:03:34.646+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  10. {"@timestamp":"2025-01-15T00:03:59.651+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  11. {"@timestamp":"2025-01-15T00:04:24.656+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  12. {"@timestamp":"2025-01-15T00:04:49.661+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  13. {"@timestamp":"2025-01-15T00:05:14.667+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  14. {"@timestamp":"2025-01-15T00:05:39.672+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  15. {"@timestamp":"2025-01-15T00:06:04.679+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  16. {"@timestamp":"2025-01-15T00:06:29.685+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  17. {"@timestamp":"2025-01-15T00:06:54.690+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  18. {"@timestamp":"2025-01-15T00:07:19.695+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  19. {"@timestamp":"2025-01-15T00:07:44.698+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  20. {"@timestamp":"2025-01-15T00:08:09.704+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  21. {"@timestamp":"2025-01-15T00:08:34.709+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  22. {"@timestamp":"2025-01-15T00:08:59.715+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  23. {"@timestamp":"2025-01-15T00:09:24.721+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  24. {"@timestamp":"2025-01-15T00:09:49.726+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  25. {"@timestamp":"2025-01-15T00:10:14.732+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  26. {"@timestamp":"2025-01-15T00:10:39.737+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  27. {"@timestamp":"2025-01-15T00:11:04.743+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  28. {"@timestamp":"2025-01-15T00:11:29.749+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  29. {"@timestamp":"2025-01-15T00:11:54.754+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  30. {"@timestamp":"2025-01-15T00:12:19.761+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  31. {"@timestamp":"2025-01-15T00:12:44.766+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  32. {"@timestamp":"2025-01-15T00:13:09.772+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  33. {"@timestamp":"2025-01-15T00:13:34.776+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  34. {"@timestamp":"2025-01-15T00:13:59.782+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  35. {"@timestamp":"2025-01-15T00:14:24.785+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  36. {"@timestamp":"2025-01-15T00:14:49.792+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  37. {"@timestamp":"2025-01-15T00:15:14.797+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  38. {"@timestamp":"2025-01-15T00:15:39.803+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  39. {"@timestamp":"2025-01-15T00:16:04.809+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  40. {"@timestamp":"2025-01-15T00:16:29.815+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  41. {"@timestamp":"2025-01-15T00:16:54.820+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  42. {"@timestamp":"2025-01-15T00:17:19.826+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  43. {"@timestamp":"2025-01-15T00:17:44.830+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  44. {"@timestamp":"2025-01-15T00:18:09.835+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  45. {"@timestamp":"2025-01-15T00:18:34.842+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  46. {"@timestamp":"2025-01-15T00:18:59.847+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  47. {"@timestamp":"2025-01-15T00:19:24.853+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  48. {"@timestamp":"2025-01-15T00:19:49.858+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  49. {"@timestamp":"2025-01-15T00:20:14.860+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  50. {"@timestamp":"2025-01-15T00:20:39.862+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  51. {"@timestamp":"2025-01-15T00:21:04.866+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  52. {"@timestamp":"2025-01-15T00:21:29.869+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  53. {"@timestamp":"2025-01-15T00:21:54.874+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  54. {"@timestamp":"2025-01-15T00:22:19.879+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  55. {"@timestamp":"2025-01-15T00:22:44.885+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  56. {"@timestamp":"2025-01-15T00:23:09.890+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  57. {"@timestamp":"2025-01-15T00:23:34.897+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  58. {"@timestamp":"2025-01-15T00:23:59.900+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  59. {"@timestamp":"2025-01-15T00:24:24.906+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  60. {"@timestamp":"2025-01-15T00:24:49.912+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  61. {"@timestamp":"2025-01-15T00:25:14.918+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  62. {"@timestamp":"2025-01-15T00:25:39.923+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  63. {"@timestamp":"2025-01-15T00:26:04.929+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  64. {"@timestamp":"2025-01-15T00:26:29.936+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  65. {"@timestamp":"2025-01-15T00:26:54.942+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  66. {"@timestamp":"2025-01-15T00:27:19.948+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  67. {"@timestamp":"2025-01-15T00:27:44.953+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  68. {"@timestamp":"2025-01-15T00:28:09.958+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  69. {"@timestamp":"2025-01-15T00:28:34.964+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  70. {"@timestamp":"2025-01-15T00:28:59.969+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  71. {"@timestamp":"2025-01-15T00:29:24.975+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  72. {"@timestamp":"2025-01-15T00:29:49.979+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  73. {"@timestamp":"2025-01-15T00:30:14.984+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  74. {"@timestamp":"2025-01-15T00:30:39.990+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  75. {"@timestamp":"2025-01-15T00:31:04.998+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  76. {"@timestamp":"2025-01-15T00:31:30.006+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  77. {"@timestamp":"2025-01-15T00:31:55.015+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  78. {"@timestamp":"2025-01-15T00:32:20.024+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  79. {"@timestamp":"2025-01-15T00:32:45.030+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  80. {"@timestamp":"2025-01-15T00:33:10.028+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  81. {"@timestamp":"2025-01-15T00:33:35.017+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  82. {"@timestamp":"2025-01-15T00:34:00.023+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  83. {"@timestamp":"2025-01-15T00:34:25.032+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  84. {"@timestamp":"2025-01-15T00:34:50.040+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  85. {"@timestamp":"2025-01-15T00:35:15.050+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  86. {"@timestamp":"2025-01-15T00:35:40.059+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  87. {"@timestamp":"2025-01-15T00:36:05.067+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  88. {"@timestamp":"2025-01-15T00:36:30.077+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  89. {"@timestamp":"2025-01-15T00:36:55.087+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  90. {"@timestamp":"2025-01-15T00:37:20.093+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  91. {"@timestamp":"2025-01-15T00:37:45.096+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  92. {"@timestamp":"2025-01-15T00:38:10.101+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  93. {"@timestamp":"2025-01-15T00:38:35.107+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  94. {"@timestamp":"2025-01-15T00:39:00.113+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  95. {"@timestamp":"2025-01-15T00:39:25.119+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  96. {"@timestamp":"2025-01-15T00:39:50.125+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  97. {"@timestamp":"2025-01-15T00:40:15.130+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  98. {"@timestamp":"2025-01-15T00:40:40.137+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  99. {"@timestamp":"2025-01-15T00:41:05.143+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  100. {"@timestamp":"2025-01-15T00:41:30.149+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  101. {"@timestamp":"2025-01-15T00:41:55.155+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  102. {"@timestamp":"2025-01-15T00:42:20.160+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  103. {"@timestamp":"2025-01-15T00:42:45.165+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  104. {"@timestamp":"2025-01-15T00:43:10.171+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  105. {"@timestamp":"2025-01-15T00:43:35.176+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  106. {"@timestamp":"2025-01-15T00:44:00.182+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  107. {"@timestamp":"2025-01-15T00:44:25.189+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  108. {"@timestamp":"2025-01-15T00:44:50.194+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  109. {"@timestamp":"2025-01-15T00:45:15.198+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  110. {"@timestamp":"2025-01-15T00:45:40.204+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  111. {"@timestamp":"2025-01-15T00:46:05.211+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  112. {"@timestamp":"2025-01-15T00:46:30.218+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  113. {"@timestamp":"2025-01-15T00:46:55.222+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  114. {"@timestamp":"2025-01-15T00:47:20.228+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  115. {"@timestamp":"2025-01-15T00:47:45.234+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  116. {"@timestamp":"2025-01-15T00:48:10.243+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  117. {"@timestamp":"2025-01-15T00:48:35.177+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  118. {"@timestamp":"2025-01-15T00:49:00.183+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  119. {"@timestamp":"2025-01-15T00:49:25.189+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  120. {"@timestamp":"2025-01-15T00:49:50.194+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  121. {"@timestamp":"2025-01-15T00:50:15.199+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  122. {"@timestamp":"2025-01-15T00:50:40.205+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  123. {"@timestamp":"2025-01-15T00:51:05.211+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  124. {"@timestamp":"2025-01-15T00:51:30.219+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  125. {"@timestamp":"2025-01-15T00:51:55.227+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  126. {"@timestamp":"2025-01-15T00:52:20.237+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  127. {"@timestamp":"2025-01-15T00:52:45.247+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  128. {"@timestamp":"2025-01-15T00:53:10.257+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  129. {"@timestamp":"2025-01-15T00:53:35.265+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  130. {"@timestamp":"2025-01-15T00:54:00.271+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  131. {"@timestamp":"2025-01-15T00:54:25.278+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  132. {"@timestamp":"2025-01-15T00:54:50.282+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  133. {"@timestamp":"2025-01-15T00:55:15.289+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  134. {"@timestamp":"2025-01-15T00:55:40.298+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  135. {"@timestamp":"2025-01-15T00:56:05.308+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  136. {"@timestamp":"2025-01-15T00:56:30.318+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  137. {"@timestamp":"2025-01-15T00:56:55.323+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  138. {"@timestamp":"2025-01-15T00:57:20.330+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  139. {"@timestamp":"2025-01-15T00:57:45.337+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  140. {"@timestamp":"2025-01-15T00:58:10.413+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  141. {"@timestamp":"2025-01-15T00:58:35.423+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  142. {"@timestamp":"2025-01-15T00:59:00.433+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  143. {"@timestamp":"2025-01-15T00:59:25.441+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  144. {"@timestamp":"2025-01-15T00:59:50.450+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  145. {"@timestamp":"2025-01-15T01:00:15.458+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  146. {"@timestamp":"2025-01-15T01:00:40.468+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  147. {"@timestamp":"2025-01-15T01:01:05.478+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  148. {"@timestamp":"2025-01-15T01:01:30.488+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  149. {"@timestamp":"2025-01-15T01:01:55.496+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  150. {"@timestamp":"2025-01-15T01:02:20.506+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  151. {"@timestamp":"2025-01-15T01:02:45.517+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  152. {"@timestamp":"2025-01-15T01:03:35.355+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  153. {"@timestamp":"2025-01-15T01:04:00.364+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  154. {"@timestamp":"2025-01-15T01:19:50.420+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  155. {"@timestamp":"2025-01-15T01:32:13.483+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  156. {"@timestamp":"2025-01-15T01:32:38.488+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  157. {"@timestamp":"2025-01-15T01:33:03.494+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  158. {"@timestamp":"2025-01-15T01:33:28.500+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  159. {"@timestamp":"2025-01-15T01:33:53.505+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  160. {"@timestamp":"2025-01-15T01:34:18.511+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  161. {"@timestamp":"2025-01-15T01:34:43.516+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  162. {"@timestamp":"2025-01-15T01:35:08.521+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  163. {"@timestamp":"2025-01-15T01:35:33.528+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  164. {"@timestamp":"2025-01-15T01:35:58.530+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  165. {"@timestamp":"2025-01-15T01:36:23.534+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  166. {"@timestamp":"2025-01-15T01:36:48.539+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  167. {"@timestamp":"2025-01-15T01:37:13.545+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  168. {"@timestamp":"2025-01-15T01:37:38.550+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  169. {"@timestamp":"2025-01-15T01:38:03.562+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  170. {"@timestamp":"2025-01-15T01:38:28.567+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  171. {"@timestamp":"2025-01-15T01:38:53.572+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  172. {"@timestamp":"2025-01-15T01:39:18.578+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  173. {"@timestamp":"2025-01-15T01:39:43.584+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  174. {"@timestamp":"2025-01-15T01:40:08.590+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  175. {"@timestamp":"2025-01-15T01:40:33.596+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  176. {"@timestamp":"2025-01-15T01:40:58.602+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  177. {"@timestamp":"2025-01-15T01:41:23.608+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  178. {"@timestamp":"2025-01-15T01:41:48.613+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  179. {"@timestamp":"2025-01-15T01:42:13.619+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  180. {"@timestamp":"2025-01-15T01:42:38.624+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  181. {"@timestamp":"2025-01-15T01:43:03.628+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  182. {"@timestamp":"2025-01-15T01:43:28.631+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  183. {"@timestamp":"2025-01-15T01:43:53.636+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  184. {"@timestamp":"2025-01-15T01:44:18.642+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  185. {"@timestamp":"2025-01-15T01:44:43.648+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  186. {"@timestamp":"2025-01-15T01:45:08.654+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  187. {"@timestamp":"2025-01-15T01:45:33.659+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  188. {"@timestamp":"2025-01-15T01:45:58.664+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  189. {"@timestamp":"2025-01-15T01:46:23.669+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  190. {"@timestamp":"2025-01-15T01:46:48.674+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  191. {"@timestamp":"2025-01-15T01:47:13.680+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  192. {"@timestamp":"2025-01-15T01:47:38.685+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  193. {"@timestamp":"2025-01-15T01:48:03.690+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  194. {"@timestamp":"2025-01-15T01:48:28.697+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  195. {"@timestamp":"2025-01-15T01:48:53.703+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  196. {"@timestamp":"2025-01-15T01:49:18.708+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  197. {"@timestamp":"2025-01-15T01:49:43.714+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  198. {"@timestamp":"2025-01-15T01:50:08.719+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  199. {"@timestamp":"2025-01-15T01:50:33.726+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  200. {"@timestamp":"2025-01-15T01:50:58.730+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  201. {"@timestamp":"2025-01-15T01:51:23.734+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  202. {"@timestamp":"2025-01-15T01:51:48.741+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  203. {"@timestamp":"2025-01-15T01:52:13.747+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  204. {"@timestamp":"2025-01-15T01:52:38.752+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  205. {"@timestamp":"2025-01-15T01:53:03.758+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  206. {"@timestamp":"2025-01-15T01:53:28.765+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  207. {"@timestamp":"2025-01-15T01:53:53.771+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  208. {"@timestamp":"2025-01-15T01:54:18.777+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  209. {"@timestamp":"2025-01-15T01:54:43.782+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  210. {"@timestamp":"2025-01-15T01:55:08.788+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  211. {"@timestamp":"2025-01-15T01:55:33.790+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  212. {"@timestamp":"2025-01-15T01:55:58.795+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  213. {"@timestamp":"2025-01-15T01:56:23.800+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  214. {"@timestamp":"2025-01-15T01:56:48.806+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  215. {"@timestamp":"2025-01-15T01:57:13.812+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  216. {"@timestamp":"2025-01-15T01:57:38.819+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  217. {"@timestamp":"2025-01-15T01:58:03.824+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  218. {"@timestamp":"2025-01-15T01:58:28.830+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  219. {"@timestamp":"2025-01-15T01:58:53.834+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  220. {"@timestamp":"2025-01-15T01:59:18.839+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  221. {"@timestamp":"2025-01-15T01:59:43.844+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  222. {"@timestamp":"2025-01-15T02:00:08.853+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  223. {"@timestamp":"2025-01-15T02:00:33.863+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  224. {"@timestamp":"2025-01-15T02:00:58.873+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  225. {"@timestamp":"2025-01-15T02:01:23.883+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  226. {"@timestamp":"2025-01-15T02:01:48.889+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  227. {"@timestamp":"2025-01-15T02:02:13.899+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  228. {"@timestamp":"2025-01-15T02:02:38.909+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  229. {"@timestamp":"2025-01-15T02:03:03.914+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  230. {"@timestamp":"2025-01-15T02:03:28.920+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  231. {"@timestamp":"2025-01-15T02:03:53.929+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  232. {"@timestamp":"2025-01-15T02:04:18.938+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  233. {"@timestamp":"2025-01-15T02:04:43.945+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  234. {"@timestamp":"2025-01-15T02:05:08.951+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  235. {"@timestamp":"2025-01-15T02:05:33.956+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  236. {"@timestamp":"2025-01-15T02:05:58.964+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  237. {"@timestamp":"2025-01-15T02:06:23.971+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  238. {"@timestamp":"2025-01-15T02:06:48.981+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  239. {"@timestamp":"2025-01-15T02:07:13.990+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  240. {"@timestamp":"2025-01-15T02:07:38.999+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  241. {"@timestamp":"2025-01-15T02:08:04.008+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  242. {"@timestamp":"2025-01-15T02:08:29.015+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  243. {"@timestamp":"2025-01-15T02:08:54.021+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  244. {"@timestamp":"2025-01-15T02:09:19.027+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  245. {"@timestamp":"2025-01-15T02:09:44.033+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  246. {"@timestamp":"2025-01-15T02:10:09.039+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  247. {"@timestamp":"2025-01-15T02:10:34.041+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  248. {"@timestamp":"2025-01-15T02:10:59.044+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  249. {"@timestamp":"2025-01-15T02:11:24.049+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  250. {"@timestamp":"2025-01-15T02:11:48.974+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  251. {"@timestamp":"2025-01-15T02:12:13.979+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  252. {"@timestamp":"2025-01-15T02:12:38.985+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  253. {"@timestamp":"2025-01-15T02:13:03.989+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  254. {"@timestamp":"2025-01-15T02:13:28.994+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  255. {"@timestamp":"2025-01-15T02:13:54.000+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  256. {"@timestamp":"2025-01-15T02:14:19.004+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  257. {"@timestamp":"2025-01-15T02:14:44.010+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  258. {"@timestamp":"2025-01-15T02:15:09.016+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  259. {"@timestamp":"2025-01-15T02:15:34.022+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  260. {"@timestamp":"2025-01-15T02:15:59.026+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  261. {"@timestamp":"2025-01-15T02:16:24.032+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  262. {"@timestamp":"2025-01-15T02:16:49.037+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  263. {"@timestamp":"2025-01-15T02:17:14.042+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  264. {"@timestamp":"2025-01-15T02:17:39.047+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  265. {"@timestamp":"2025-01-15T02:18:04.051+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  266. {"@timestamp":"2025-01-15T02:18:29.055+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  267. {"@timestamp":"2025-01-15T02:18:54.060+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  268. {"@timestamp":"2025-01-15T02:19:19.065+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  269. {"@timestamp":"2025-01-15T02:19:44.070+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  270. {"@timestamp":"2025-01-15T02:20:09.074+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  271. {"@timestamp":"2025-01-15T02:20:34.080+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  272. {"@timestamp":"2025-01-15T02:20:59.085+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  273. {"@timestamp":"2025-01-15T02:21:24.090+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  274. {"@timestamp":"2025-01-15T02:21:49.094+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  275. {"@timestamp":"2025-01-15T02:22:14.099+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  276. {"@timestamp":"2025-01-15T02:22:39.105+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  277. {"@timestamp":"2025-01-15T02:23:04.110+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  278. {"@timestamp":"2025-01-15T02:23:29.115+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  279. {"@timestamp":"2025-01-15T02:23:54.121+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  280. {"@timestamp":"2025-01-15T02:24:19.126+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  281. {"@timestamp":"2025-01-15T02:24:44.130+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  282. {"@timestamp":"2025-01-15T02:25:09.135+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  283. {"@timestamp":"2025-01-15T02:25:34.141+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  284. {"@timestamp":"2025-01-15T02:25:59.145+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  285. {"@timestamp":"2025-01-15T02:26:24.150+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  286. {"@timestamp":"2025-01-15T02:26:49.154+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  287. {"@timestamp":"2025-01-15T02:27:14.160+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  288. {"@timestamp":"2025-01-15T02:27:39.165+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  289. {"@timestamp":"2025-01-15T02:28:04.170+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  290. {"@timestamp":"2025-01-15T02:28:29.175+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  291. {"@timestamp":"2025-01-15T02:28:54.180+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  292. {"@timestamp":"2025-01-15T02:29:19.185+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  293. {"@timestamp":"2025-01-15T02:29:44.191+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  294. {"@timestamp":"2025-01-15T02:30:09.196+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  295. {"@timestamp":"2025-01-15T02:30:34.200+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  296. {"@timestamp":"2025-01-15T02:30:59.203+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  297. {"@timestamp":"2025-01-15T02:31:24.206+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  298. {"@timestamp":"2025-01-15T02:31:49.212+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  299. {"@timestamp":"2025-01-15T02:32:14.218+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  300. {"@timestamp":"2025-01-15T02:32:39.223+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  301. {"@timestamp":"2025-01-15T02:33:04.227+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  302. {"@timestamp":"2025-01-15T02:33:29.232+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  303. {"@timestamp":"2025-01-15T02:33:54.237+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  304. {"@timestamp":"2025-01-15T02:34:19.242+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  305. {"@timestamp":"2025-01-15T02:34:44.247+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  306. {"@timestamp":"2025-01-15T02:35:09.251+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  307. {"@timestamp":"2025-01-15T02:35:34.256+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  308. {"@timestamp":"2025-01-15T02:35:59.261+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  309. {"@timestamp":"2025-01-15T02:36:24.268+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  310. {"@timestamp":"2025-01-15T02:36:49.281+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  311. {"@timestamp":"2025-01-15T02:37:14.287+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  312. {"@timestamp":"2025-01-15T02:37:39.292+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  313. {"@timestamp":"2025-01-15T02:38:04.297+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  314. {"@timestamp":"2025-01-15T02:38:29.302+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  315. {"@timestamp":"2025-01-15T02:38:54.307+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  316. {"@timestamp":"2025-01-15T02:39:19.313+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  317. {"@timestamp":"2025-01-15T02:39:44.319+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  318. {"@timestamp":"2025-01-15T02:40:09.324+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  319. {"@timestamp":"2025-01-15T02:40:34.328+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  320. {"@timestamp":"2025-01-15T02:40:59.333+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  321. {"@timestamp":"2025-01-15T02:41:24.338+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  322. {"@timestamp":"2025-01-15T02:41:49.344+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  323. {"@timestamp":"2025-01-15T02:42:14.349+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  324. {"@timestamp":"2025-01-15T02:42:39.353+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  325. {"@timestamp":"2025-01-15T02:43:04.359+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  326. {"@timestamp":"2025-01-15T02:43:29.364+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  327. {"@timestamp":"2025-01-15T02:43:54.368+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  328. {"@timestamp":"2025-01-15T02:44:19.374+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  329. {"@timestamp":"2025-01-15T02:44:44.379+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  330. {"@timestamp":"2025-01-15T02:45:09.385+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  331. {"@timestamp":"2025-01-15T02:45:34.390+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  332. {"@timestamp":"2025-01-15T02:45:59.395+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  333. {"@timestamp":"2025-01-15T02:46:24.400+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  334. {"@timestamp":"2025-01-15T02:46:49.405+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  335. {"@timestamp":"2025-01-15T02:47:14.409+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  336. {"@timestamp":"2025-01-15T02:47:39.415+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  337. {"@timestamp":"2025-01-15T02:48:04.421+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  338. {"@timestamp":"2025-01-15T02:48:29.427+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  339. {"@timestamp":"2025-01-15T02:48:54.432+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  340. {"@timestamp":"2025-01-15T02:49:19.438+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  341. {"@timestamp":"2025-01-15T02:49:44.442+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  342. {"@timestamp":"2025-01-15T02:50:09.448+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  343. {"@timestamp":"2025-01-15T02:50:34.452+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  344. {"@timestamp":"2025-01-15T02:50:59.454+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  345. {"@timestamp":"2025-01-15T02:51:24.457+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  346. {"@timestamp":"2025-01-15T02:51:49.462+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  347. {"@timestamp":"2025-01-15T02:52:14.468+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  348. {"@timestamp":"2025-01-15T02:52:39.453+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  349. {"@timestamp":"2025-01-15T02:53:04.438+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  350. {"@timestamp":"2025-01-15T02:53:29.439+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  351. {"@timestamp":"2025-01-15T02:53:54.443+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  352. {"@timestamp":"2025-01-15T02:54:19.449+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  353. {"@timestamp":"2025-01-15T02:54:44.454+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  354. {"@timestamp":"2025-01-15T02:55:09.459+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  355. {"@timestamp":"2025-01-15T02:55:34.476+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  356. {"@timestamp":"2025-01-15T02:55:59.493+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  357. {"@timestamp":"2025-01-15T02:56:24.502+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  358. {"@timestamp":"2025-01-15T02:56:49.510+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  359. {"@timestamp":"2025-01-15T02:57:14.519+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  360. {"@timestamp":"2025-01-15T02:57:39.526+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  361. {"@timestamp":"2025-01-15T02:58:04.532+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  362. {"@timestamp":"2025-01-15T02:58:29.542+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  363. {"@timestamp":"2025-01-15T02:58:54.550+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  364. {"@timestamp":"2025-01-15T02:59:19.559+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  365. {"@timestamp":"2025-01-15T02:59:44.567+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  366. {"@timestamp":"2025-01-15T03:00:09.576+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  367. {"@timestamp":"2025-01-15T03:00:59.374+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  368. {"@timestamp":"2025-01-15T03:01:24.381+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  369. {"@timestamp":"2025-01-15T03:17:11.427+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  370. {"@timestamp":"2025-01-15T03:17:36.416+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  371. {"@timestamp":"2025-01-15T03:18:01.420+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  372. {"@timestamp":"2025-01-15T03:18:26.427+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  373. {"@timestamp":"2025-01-15T03:18:51.436+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  374. {"@timestamp":"2025-01-15T03:19:16.445+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  375. {"@timestamp":"2025-01-15T03:19:41.452+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  376. {"@timestamp":"2025-01-15T03:20:06.457+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  377. {"@timestamp":"2025-01-15T03:20:31.461+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  378. {"@timestamp":"2025-01-15T03:36:09.606+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  379. {"@timestamp":"2025-01-15T03:36:34.606+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  380. {"@timestamp":"2025-01-15T03:36:59.610+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  381. {"@timestamp":"2025-01-15T03:37:24.617+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  382. {"@timestamp":"2025-01-15T03:37:49.622+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  383. {"@timestamp":"2025-01-15T03:38:14.631+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  384. {"@timestamp":"2025-01-15T03:38:39.639+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  385. {"@timestamp":"2025-01-15T03:39:04.647+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  386. {"@timestamp":"2025-01-15T03:39:29.653+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  387. {"@timestamp":"2025-01-15T03:39:54.659+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  388. {"@timestamp":"2025-01-15T03:40:19.668+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  389. {"@timestamp":"2025-01-15T03:40:44.677+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  390. {"@timestamp":"2025-01-15T03:41:34.577+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  391. {"@timestamp":"2025-01-15T03:41:59.585+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  392. {"@timestamp":"2025-01-15T03:57:46.590+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  393. {"@timestamp":"2025-01-15T03:58:11.588+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  394. {"@timestamp":"2025-01-15T04:13:34.458+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  395. {"@timestamp":"2025-01-15T04:13:59.503+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  396. {"@timestamp":"2025-01-15T04:14:24.522+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  397. {"@timestamp":"2025-01-15T04:14:49.532+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  398. {"@timestamp":"2025-01-15T04:15:14.539+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  399. {"@timestamp":"2025-01-15T04:15:39.548+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  400. {"@timestamp":"2025-01-15T04:16:04.557+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  401. {"@timestamp":"2025-01-15T04:16:29.566+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  402. {"@timestamp":"2025-01-15T04:16:54.572+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  403. {"@timestamp":"2025-01-15T04:17:19.580+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  404. {"@timestamp":"2025-01-15T04:17:44.588+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  405. {"@timestamp":"2025-01-15T04:18:09.597+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  406. {"@timestamp":"2025-01-15T04:18:34.601+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  407. {"@timestamp":"2025-01-15T04:18:59.619+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  408. {"@timestamp":"2025-01-15T04:19:24.631+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  409. {"@timestamp":"2025-01-15T04:19:49.642+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  410. {"@timestamp":"2025-01-15T04:20:14.651+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  411. {"@timestamp":"2025-01-15T04:20:39.658+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  412. {"@timestamp":"2025-01-15T04:21:04.666+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  413. {"@timestamp":"2025-01-15T04:21:29.672+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  414. {"@timestamp":"2025-01-15T04:21:54.682+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  415. {"@timestamp":"2025-01-15T04:22:19.688+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  416. {"@timestamp":"2025-01-15T04:22:44.695+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  417. {"@timestamp":"2025-01-15T04:23:09.704+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  418. {"@timestamp":"2025-01-15T04:23:34.710+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  419. {"@timestamp":"2025-01-15T04:23:59.716+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  420. {"@timestamp":"2025-01-15T04:24:24.726+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  421. {"@timestamp":"2025-01-15T04:24:49.733+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  422. {"@timestamp":"2025-01-15T04:25:14.740+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  423. {"@timestamp":"2025-01-15T04:25:39.748+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  424. {"@timestamp":"2025-01-15T04:26:04.754+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  425. {"@timestamp":"2025-01-15T04:26:29.763+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  426. {"@timestamp":"2025-01-15T04:26:54.771+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  427. {"@timestamp":"2025-01-15T04:27:19.780+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  428. {"@timestamp":"2025-01-15T04:27:44.787+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  429. {"@timestamp":"2025-01-15T04:28:09.795+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  430. {"@timestamp":"2025-01-15T04:28:34.804+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  431. {"@timestamp":"2025-01-15T04:28:59.807+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  432. {"@timestamp":"2025-01-15T04:29:24.810+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  433. {"@timestamp":"2025-01-15T04:29:49.818+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  434. {"@timestamp":"2025-01-15T04:30:14.825+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  435. {"@timestamp":"2025-01-15T04:30:39.834+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  436. {"@timestamp":"2025-01-15T04:31:04.843+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  437. {"@timestamp":"2025-01-15T04:31:29.852+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  438. {"@timestamp":"2025-01-15T04:31:54.860+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  439. {"@timestamp":"2025-01-15T04:32:19.863+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  440. {"@timestamp":"2025-01-15T04:32:44.869+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  441. {"@timestamp":"2025-01-15T04:33:09.878+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  442. {"@timestamp":"2025-01-15T04:33:34.885+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  443. {"@timestamp":"2025-01-15T04:33:59.894+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  444. {"@timestamp":"2025-01-15T04:34:24.901+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  445. {"@timestamp":"2025-01-15T04:34:49.909+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  446. {"@timestamp":"2025-01-15T04:35:14.917+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  447. {"@timestamp":"2025-01-15T04:35:39.922+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  448. {"@timestamp":"2025-01-15T04:36:04.931+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  449. {"@timestamp":"2025-01-15T04:36:29.935+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  450. {"@timestamp":"2025-01-15T04:36:54.942+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  451. {"@timestamp":"2025-01-15T04:37:19.948+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  452. {"@timestamp":"2025-01-15T04:37:44.955+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  453. {"@timestamp":"2025-01-15T04:38:09.962+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  454. {"@timestamp":"2025-01-15T04:38:34.971+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  455. {"@timestamp":"2025-01-15T04:38:59.980+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  456. {"@timestamp":"2025-01-15T04:39:24.988+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  457. {"@timestamp":"2025-01-15T04:39:49.997+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  458. {"@timestamp":"2025-01-15T04:40:15.007+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  459. {"@timestamp":"2025-01-15T04:40:40.015+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  460. {"@timestamp":"2025-01-15T04:41:05.024+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  461. {"@timestamp":"2025-01-15T04:41:30.031+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  462. {"@timestamp":"2025-01-15T04:41:55.038+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  463. {"@timestamp":"2025-01-15T04:42:20.047+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  464. {"@timestamp":"2025-01-15T04:42:45.056+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  465. {"@timestamp":"2025-01-15T04:43:10.061+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  466. {"@timestamp":"2025-01-15T04:43:35.064+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  467. {"@timestamp":"2025-01-15T04:44:00.070+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  468. {"@timestamp":"2025-01-15T04:44:25.077+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  469. {"@timestamp":"2025-01-15T04:44:50.084+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  470. {"@timestamp":"2025-01-15T04:45:15.091+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  471. {"@timestamp":"2025-01-15T04:45:40.094+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  472. {"@timestamp":"2025-01-15T04:46:05.099+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  473. {"@timestamp":"2025-01-15T04:46:30.104+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  474. {"@timestamp":"2025-01-15T04:46:55.113+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  475. {"@timestamp":"2025-01-15T04:47:20.122+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  476. {"@timestamp":"2025-01-15T04:47:45.130+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  477. {"@timestamp":"2025-01-15T04:48:10.135+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  478. {"@timestamp":"2025-01-15T04:48:35.139+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  479. {"@timestamp":"2025-01-15T04:49:00.147+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  480. {"@timestamp":"2025-01-15T04:49:25.154+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  481. {"@timestamp":"2025-01-15T04:49:50.163+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  482. {"@timestamp":"2025-01-15T04:50:15.172+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  483. {"@timestamp":"2025-01-15T04:50:40.178+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  484. {"@timestamp":"2025-01-15T04:51:05.187+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  485. {"@timestamp":"2025-01-15T04:51:30.194+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  486. {"@timestamp":"2025-01-15T04:51:55.201+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  487. {"@timestamp":"2025-01-15T04:52:20.207+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  488. {"@timestamp":"2025-01-15T04:52:45.216+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  489. {"@timestamp":"2025-01-15T04:53:10.223+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  490. {"@timestamp":"2025-01-15T04:53:35.231+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  491. {"@timestamp":"2025-01-15T04:54:00.238+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  492. {"@timestamp":"2025-01-15T04:54:25.244+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  493. {"@timestamp":"2025-01-15T04:54:50.253+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  494. {"@timestamp":"2025-01-15T04:55:15.261+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  495. {"@timestamp":"2025-01-15T04:55:40.269+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  496. {"@timestamp":"2025-01-15T04:56:05.276+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  497. {"@timestamp":"2025-01-15T04:56:30.284+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  498. {"@timestamp":"2025-01-15T04:56:55.293+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  499. {"@timestamp":"2025-01-15T04:57:20.299+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  500. {"@timestamp":"2025-01-15T04:57:45.305+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  501. {"@timestamp":"2025-01-15T04:58:10.314+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  502. {"@timestamp":"2025-01-15T04:58:35.322+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  503. {"@timestamp":"2025-01-15T04:59:00.331+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  504. {"@timestamp":"2025-01-15T04:59:25.334+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  505. {"@timestamp":"2025-01-15T04:59:50.338+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  506. {"@timestamp":"2025-01-15T05:00:15.342+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  507. {"@timestamp":"2025-01-15T05:00:40.351+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  508. {"@timestamp":"2025-01-15T05:01:05.359+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  509. {"@timestamp":"2025-01-15T05:01:30.366+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  510. {"@timestamp":"2025-01-15T05:01:55.375+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  511. {"@timestamp":"2025-01-15T05:02:20.383+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  512. {"@timestamp":"2025-01-15T05:02:45.390+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  513. {"@timestamp":"2025-01-15T05:03:10.398+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  514. {"@timestamp":"2025-01-15T05:03:35.407+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  515. {"@timestamp":"2025-01-15T05:04:00.414+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  516. {"@timestamp":"2025-01-15T05:04:25.420+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  517. {"@timestamp":"2025-01-15T05:04:50.427+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  518. {"@timestamp":"2025-01-15T05:05:15.436+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  519. {"@timestamp":"2025-01-15T05:05:40.441+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  520. {"@timestamp":"2025-01-15T05:06:05.450+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  521. {"@timestamp":"2025-01-15T05:06:30.457+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  522. {"@timestamp":"2025-01-15T05:06:55.465+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  523. {"@timestamp":"2025-01-15T05:07:20.472+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  524. {"@timestamp":"2025-01-15T05:07:45.541+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  525. {"@timestamp":"2025-01-15T05:08:10.549+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  526. {"@timestamp":"2025-01-15T05:08:35.558+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  527. {"@timestamp":"2025-01-15T05:09:00.567+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  528. {"@timestamp":"2025-01-15T05:09:25.575+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  529. {"@timestamp":"2025-01-15T05:09:50.583+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  530. {"@timestamp":"2025-01-15T05:10:15.590+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  531. {"@timestamp":"2025-01-15T05:10:40.598+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  532. {"@timestamp":"2025-01-15T05:11:05.608+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  533. {"@timestamp":"2025-01-15T05:11:30.614+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  534. {"@timestamp":"2025-01-15T05:11:55.624+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  535. {"@timestamp":"2025-01-15T05:12:20.630+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  536. {"@timestamp":"2025-01-15T05:12:45.634+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  537. {"@timestamp":"2025-01-15T05:13:10.639+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  538. {"@timestamp":"2025-01-15T05:13:35.647+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  539. {"@timestamp":"2025-01-15T05:14:00.654+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  540. {"@timestamp":"2025-01-15T05:14:25.661+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  541. {"@timestamp":"2025-01-15T05:14:50.666+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  542. {"@timestamp":"2025-01-15T05:15:15.676+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  543. {"@timestamp":"2025-01-15T05:15:40.685+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  544. {"@timestamp":"2025-01-15T05:16:05.693+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  545. {"@timestamp":"2025-01-15T05:16:30.702+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  546. {"@timestamp":"2025-01-15T05:17:20.560+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  547. {"@timestamp":"2025-01-15T05:17:45.558+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  548. {"@timestamp":"2025-01-15T05:18:10.563+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  549. {"@timestamp":"2025-01-15T05:18:35.568+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  550. {"@timestamp":"2025-01-15T05:19:00.576+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  551. {"@timestamp":"2025-01-15T05:19:25.584+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  552. {"@timestamp":"2025-01-15T05:19:50.592+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  553. {"@timestamp":"2025-01-15T05:20:15.599+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  554. {"@timestamp":"2025-01-15T05:20:40.607+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  555. {"@timestamp":"2025-01-15T05:21:05.617+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  556. {"@timestamp":"2025-01-15T05:21:30.626+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  557. {"@timestamp":"2025-01-15T05:21:55.632+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  558. {"@timestamp":"2025-01-15T05:22:45.521+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  559. {"@timestamp":"2025-01-15T05:23:10.530+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  560. {"@timestamp":"2025-01-15T05:38:43.629+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  561. {"@timestamp":"2025-01-15T05:39:08.637+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  562. {"@timestamp":"2025-01-15T05:54:54.700+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  563. {"@timestamp":"2025-01-15T05:55:19.730+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  564. {"@timestamp":"2025-01-15T05:55:44.745+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  565. {"@timestamp":"2025-01-15T05:56:09.755+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  566. {"@timestamp":"2025-01-15T05:56:34.765+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  567. {"@timestamp":"2025-01-15T05:56:59.769+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  568. {"@timestamp":"2025-01-15T05:57:24.776+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  569. {"@timestamp":"2025-01-15T05:57:49.784+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  570. {"@timestamp":"2025-01-15T05:58:14.793+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  571. {"@timestamp":"2025-01-15T05:58:39.801+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  572. {"@timestamp":"2025-01-15T05:59:04.811+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  573. {"@timestamp":"2025-01-15T05:59:29.820+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  574. {"@timestamp":"2025-01-15T05:59:54.826+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  575. {"@timestamp":"2025-01-15T06:00:19.835+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  576. {"@timestamp":"2025-01-15T06:00:44.842+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  577. {"@timestamp":"2025-01-15T06:01:09.850+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  578. {"@timestamp":"2025-01-15T06:01:34.855+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  579. {"@timestamp":"2025-01-15T06:01:59.862+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  580. {"@timestamp":"2025-01-15T06:02:24.871+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  581. {"@timestamp":"2025-01-15T06:02:49.878+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  582. {"@timestamp":"2025-01-15T06:03:14.887+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  583. {"@timestamp":"2025-01-15T06:03:39.894+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  584. {"@timestamp":"2025-01-15T06:04:04.904+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  585. {"@timestamp":"2025-01-15T06:04:29.911+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  586. {"@timestamp":"2025-01-15T06:04:54.921+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  587. {"@timestamp":"2025-01-15T06:05:19.929+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  588. {"@timestamp":"2025-01-15T06:05:44.938+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  589. {"@timestamp":"2025-01-15T06:06:09.946+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  590. {"@timestamp":"2025-01-15T06:06:34.954+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  591. {"@timestamp":"2025-01-15T06:06:59.961+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  592. {"@timestamp":"2025-01-15T06:07:24.970+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  593. {"@timestamp":"2025-01-15T06:07:49.979+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  594. {"@timestamp":"2025-01-15T06:08:14.989+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  595. {"@timestamp":"2025-01-15T06:08:39.997+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  596. {"@timestamp":"2025-01-15T06:09:05.007+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  597. {"@timestamp":"2025-01-15T06:09:30.013+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  598. {"@timestamp":"2025-01-15T06:09:55.023+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  599. {"@timestamp":"2025-01-15T06:10:20.029+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  600. {"@timestamp":"2025-01-15T06:10:45.035+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  601. {"@timestamp":"2025-01-15T06:11:10.044+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  602. {"@timestamp":"2025-01-15T06:11:35.050+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  603. {"@timestamp":"2025-01-15T06:12:00.059+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  604. {"@timestamp":"2025-01-15T06:12:25.064+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  605. {"@timestamp":"2025-01-15T06:12:50.072+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  606. {"@timestamp":"2025-01-15T06:13:15.082+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  607. {"@timestamp":"2025-01-15T06:13:40.089+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  608. {"@timestamp":"2025-01-15T06:14:05.094+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  609. {"@timestamp":"2025-01-15T06:14:30.104+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  610. {"@timestamp":"2025-01-15T06:14:55.114+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  611. {"@timestamp":"2025-01-15T06:15:20.121+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  612. {"@timestamp":"2025-01-15T06:15:45.130+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  613. {"@timestamp":"2025-01-15T06:16:10.138+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  614. {"@timestamp":"2025-01-15T06:16:35.148+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  615. {"@timestamp":"2025-01-15T06:17:00.157+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  616. {"@timestamp":"2025-01-15T06:17:25.166+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  617. {"@timestamp":"2025-01-15T06:17:50.175+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  618. {"@timestamp":"2025-01-15T06:18:15.184+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  619. {"@timestamp":"2025-01-15T06:18:40.192+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  620. {"@timestamp":"2025-01-15T06:19:05.201+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  621. {"@timestamp":"2025-01-15T06:19:30.210+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  622. {"@timestamp":"2025-01-15T06:19:55.220+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  623. {"@timestamp":"2025-01-15T06:20:20.228+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  624. {"@timestamp":"2025-01-15T06:20:45.235+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  625. {"@timestamp":"2025-01-15T06:21:10.242+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  626. {"@timestamp":"2025-01-15T06:21:35.250+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  627. {"@timestamp":"2025-01-15T06:22:00.260+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  628. {"@timestamp":"2025-01-15T06:22:25.268+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  629. {"@timestamp":"2025-01-15T06:22:50.278+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  630. {"@timestamp":"2025-01-15T06:23:15.286+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  631. {"@timestamp":"2025-01-15T06:23:40.291+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  632. {"@timestamp":"2025-01-15T06:24:05.227+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  633. {"@timestamp":"2025-01-15T06:24:30.234+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  634. {"@timestamp":"2025-01-15T06:24:55.239+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  635. {"@timestamp":"2025-01-15T06:25:20.248+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  636. {"@timestamp":"2025-01-15T06:25:45.256+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  637. {"@timestamp":"2025-01-15T06:26:10.262+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  638. {"@timestamp":"2025-01-15T06:26:35.267+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  639. {"@timestamp":"2025-01-15T06:27:00.276+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  640. {"@timestamp":"2025-01-15T06:27:25.284+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  641. {"@timestamp":"2025-01-15T06:27:50.291+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  642. {"@timestamp":"2025-01-15T06:28:15.300+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  643. {"@timestamp":"2025-01-15T06:28:40.310+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  644. {"@timestamp":"2025-01-15T06:29:05.319+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  645. {"@timestamp":"2025-01-15T06:29:30.327+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  646. {"@timestamp":"2025-01-15T06:29:55.333+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  647. {"@timestamp":"2025-01-15T06:30:20.343+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  648. {"@timestamp":"2025-01-15T06:30:45.352+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  649. {"@timestamp":"2025-01-15T06:31:10.357+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  650. {"@timestamp":"2025-01-15T06:31:35.367+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  651. {"@timestamp":"2025-01-15T06:32:00.376+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  652. {"@timestamp":"2025-01-15T06:32:25.385+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  653. {"@timestamp":"2025-01-15T06:32:50.393+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  654. {"@timestamp":"2025-01-15T06:33:15.402+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  655. {"@timestamp":"2025-01-15T06:33:40.411+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  656. {"@timestamp":"2025-01-15T06:34:05.418+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  657. {"@timestamp":"2025-01-15T06:34:30.426+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  658. {"@timestamp":"2025-01-15T06:34:55.435+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  659. {"@timestamp":"2025-01-15T06:35:20.443+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  660. {"@timestamp":"2025-01-15T06:35:45.450+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  661. {"@timestamp":"2025-01-15T06:36:10.457+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  662. {"@timestamp":"2025-01-15T06:36:35.466+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  663. {"@timestamp":"2025-01-15T06:37:00.471+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  664. {"@timestamp":"2025-01-15T06:37:25.476+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  665. {"@timestamp":"2025-01-15T06:37:50.484+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  666. {"@timestamp":"2025-01-15T06:38:15.493+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  667. {"@timestamp":"2025-01-15T06:38:40.500+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  668. {"@timestamp":"2025-01-15T06:39:05.509+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  669. {"@timestamp":"2025-01-15T06:39:30.517+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  670. {"@timestamp":"2025-01-15T06:39:55.504+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  671. {"@timestamp":"2025-01-15T06:40:20.495+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  672. {"@timestamp":"2025-01-15T06:40:45.501+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  673. {"@timestamp":"2025-01-15T06:41:10.510+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  674. {"@timestamp":"2025-01-15T06:41:35.518+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  675. {"@timestamp":"2025-01-15T06:42:00.527+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  676. {"@timestamp":"2025-01-15T06:42:25.534+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  677. {"@timestamp":"2025-01-15T06:42:50.543+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  678. {"@timestamp":"2025-01-15T06:43:15.552+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  679. {"@timestamp":"2025-01-15T06:43:40.559+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  680. {"@timestamp":"2025-01-15T06:44:05.568+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  681. {"@timestamp":"2025-01-15T06:44:30.578+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  682. {"@timestamp":"2025-01-15T06:44:55.585+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  683. {"@timestamp":"2025-01-15T06:45:20.591+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  684. {"@timestamp":"2025-01-15T06:45:45.598+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  685. {"@timestamp":"2025-01-15T06:46:10.607+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  686. {"@timestamp":"2025-01-15T06:46:35.617+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  687. {"@timestamp":"2025-01-15T06:47:00.625+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  688. {"@timestamp":"2025-01-15T06:47:25.633+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  689. {"@timestamp":"2025-01-15T06:47:50.642+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  690. {"@timestamp":"2025-01-15T06:48:15.649+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  691. {"@timestamp":"2025-01-15T06:48:40.658+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  692. {"@timestamp":"2025-01-15T06:49:05.667+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  693. {"@timestamp":"2025-01-15T06:49:30.676+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  694. {"@timestamp":"2025-01-15T06:49:55.679+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  695. {"@timestamp":"2025-01-15T06:50:20.684+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  696. {"@timestamp":"2025-01-15T06:50:45.693+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  697. {"@timestamp":"2025-01-15T06:51:10.699+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  698. {"@timestamp":"2025-01-15T06:51:35.707+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  699. {"@timestamp":"2025-01-15T06:52:00.715+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  700. {"@timestamp":"2025-01-15T06:52:25.723+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  701. {"@timestamp":"2025-01-15T06:52:50.733+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  702. {"@timestamp":"2025-01-15T06:53:15.741+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  703. {"@timestamp":"2025-01-15T06:53:40.751+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  704. {"@timestamp":"2025-01-15T06:54:05.760+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  705. {"@timestamp":"2025-01-15T06:54:30.768+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  706. {"@timestamp":"2025-01-15T06:54:55.775+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  707. {"@timestamp":"2025-01-15T06:55:20.800+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  708. {"@timestamp":"2025-01-15T06:55:45.814+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  709. {"@timestamp":"2025-01-15T06:56:10.825+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  710. {"@timestamp":"2025-01-15T06:56:35.835+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  711. {"@timestamp":"2025-01-15T06:57:00.843+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  712. {"@timestamp":"2025-01-15T06:57:50.745+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  713. {"@timestamp":"2025-01-15T06:58:15.751+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  714. {"@timestamp":"2025-01-15T06:58:40.759+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  715. {"@timestamp":"2025-01-15T06:59:05.766+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  716. {"@timestamp":"2025-01-15T06:59:30.776+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  717. {"@timestamp":"2025-01-15T06:59:55.786+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  718. {"@timestamp":"2025-01-15T07:00:20.793+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  719. {"@timestamp":"2025-01-15T07:00:45.802+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  720. {"@timestamp":"2025-01-15T07:01:10.811+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  721. {"@timestamp":"2025-01-15T07:01:35.819+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  722. {"@timestamp":"2025-01-15T07:02:00.828+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  723. {"@timestamp":"2025-01-15T07:02:25.837+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  724. {"@timestamp":"2025-01-15T07:03:15.690+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  725. {"@timestamp":"2025-01-15T07:03:40.693+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  726. {"@timestamp":"2025-01-15T07:19:30.826+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  727. {"@timestamp":"2025-01-15T07:19:55.834+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  728. {"@timestamp":"2025-01-15T07:35:42.240+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  729. {"@timestamp":"2025-01-15T07:36:07.249+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  730. {"@timestamp":"2025-01-15T07:36:32.255+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  731. {"@timestamp":"2025-01-15T07:36:57.263+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  732. {"@timestamp":"2025-01-15T07:37:22.271+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  733. {"@timestamp":"2025-01-15T07:37:47.280+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  734. {"@timestamp":"2025-01-15T07:38:12.290+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  735. {"@timestamp":"2025-01-15T07:38:37.298+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  736. {"@timestamp":"2025-01-15T07:39:02.306+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  737. {"@timestamp":"2025-01-15T07:39:27.311+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  738. {"@timestamp":"2025-01-15T07:39:52.317+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  739. {"@timestamp":"2025-01-15T07:40:17.326+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  740. {"@timestamp":"2025-01-15T07:40:42.335+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  741. {"@timestamp":"2025-01-15T07:41:07.344+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  742. {"@timestamp":"2025-01-15T07:41:32.353+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  743. {"@timestamp":"2025-01-15T07:41:57.362+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  744. {"@timestamp":"2025-01-15T07:42:22.370+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  745. {"@timestamp":"2025-01-15T07:42:47.378+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  746. {"@timestamp":"2025-01-15T07:43:12.388+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  747. {"@timestamp":"2025-01-15T07:43:37.397+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  748. {"@timestamp":"2025-01-15T07:44:02.405+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  749. {"@timestamp":"2025-01-15T07:44:27.412+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  750. {"@timestamp":"2025-01-15T07:44:52.420+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  751. {"@timestamp":"2025-01-15T07:45:17.428+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  752. {"@timestamp":"2025-01-15T07:45:42.436+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  753. {"@timestamp":"2025-01-15T07:46:07.444+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  754. {"@timestamp":"2025-01-15T07:46:32.451+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  755. {"@timestamp":"2025-01-15T07:46:57.460+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  756. {"@timestamp":"2025-01-15T07:47:22.463+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  757. {"@timestamp":"2025-01-15T07:47:47.468+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  758. {"@timestamp":"2025-01-15T07:48:12.476+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  759. {"@timestamp":"2025-01-15T07:48:37.481+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  760. {"@timestamp":"2025-01-15T07:49:02.489+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  761. {"@timestamp":"2025-01-15T07:49:27.498+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  762. {"@timestamp":"2025-01-15T07:49:52.505+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  763. {"@timestamp":"2025-01-15T07:50:17.509+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  764. {"@timestamp":"2025-01-15T07:50:42.519+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  765. {"@timestamp":"2025-01-15T07:51:07.526+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  766. {"@timestamp":"2025-01-15T07:51:32.533+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  767. {"@timestamp":"2025-01-15T07:51:57.541+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  768. {"@timestamp":"2025-01-15T07:52:22.550+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  769. {"@timestamp":"2025-01-15T07:52:47.559+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  770. {"@timestamp":"2025-01-15T07:53:12.565+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  771. {"@timestamp":"2025-01-15T07:53:37.574+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  772. {"@timestamp":"2025-01-15T07:54:02.580+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  773. {"@timestamp":"2025-01-15T07:54:27.588+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  774. {"@timestamp":"2025-01-15T07:54:52.606+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  775. {"@timestamp":"2025-01-15T07:55:17.619+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  776. {"@timestamp":"2025-01-15T07:55:42.630+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  777. {"@timestamp":"2025-01-15T07:56:07.639+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  778. {"@timestamp":"2025-01-15T07:56:32.647+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  779. {"@timestamp":"2025-01-15T07:56:57.653+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  780. {"@timestamp":"2025-01-15T07:57:22.663+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  781. {"@timestamp":"2025-01-15T07:57:47.672+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  782. {"@timestamp":"2025-01-15T07:58:12.680+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  783. {"@timestamp":"2025-01-15T07:58:37.687+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  784. {"@timestamp":"2025-01-15T07:59:02.694+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  785. {"@timestamp":"2025-01-15T07:59:27.702+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  786. {"@timestamp":"2025-01-15T07:59:52.712+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  787. {"@timestamp":"2025-01-15T08:00:17.721+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  788. {"@timestamp":"2025-01-15T08:00:42.728+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  789. {"@timestamp":"2025-01-15T08:01:07.731+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  790. {"@timestamp":"2025-01-15T08:01:32.736+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  791. {"@timestamp":"2025-01-15T08:01:57.746+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  792. {"@timestamp":"2025-01-15T08:02:22.755+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  793. {"@timestamp":"2025-01-15T08:02:47.764+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  794. {"@timestamp":"2025-01-15T08:03:12.774+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  795. {"@timestamp":"2025-01-15T08:03:37.783+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  796. {"@timestamp":"2025-01-15T08:04:02.792+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  797. {"@timestamp":"2025-01-15T08:04:27.800+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  798. {"@timestamp":"2025-01-15T08:04:52.810+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  799. {"@timestamp":"2025-01-15T08:05:17.818+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  800. {"@timestamp":"2025-01-15T08:05:42.828+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  801. {"@timestamp":"2025-01-15T08:06:07.837+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  802. {"@timestamp":"2025-01-15T08:06:32.846+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  803. {"@timestamp":"2025-01-15T08:06:57.854+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  804. {"@timestamp":"2025-01-15T08:07:22.863+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  805. {"@timestamp":"2025-01-15T08:07:47.873+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  806. {"@timestamp":"2025-01-15T08:08:12.882+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  807. {"@timestamp":"2025-01-15T08:08:37.891+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  808. {"@timestamp":"2025-01-15T08:09:02.899+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  809. {"@timestamp":"2025-01-15T08:09:27.908+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  810. {"@timestamp":"2025-01-15T08:09:52.915+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  811. {"@timestamp":"2025-01-15T08:10:17.921+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  812. {"@timestamp":"2025-01-15T08:10:42.929+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  813. {"@timestamp":"2025-01-15T08:11:07.939+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  814. {"@timestamp":"2025-01-15T08:11:32.941+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  815. {"@timestamp":"2025-01-15T08:11:57.947+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  816. {"@timestamp":"2025-01-15T08:12:22.954+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  817. {"@timestamp":"2025-01-15T08:12:47.963+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  818. {"@timestamp":"2025-01-15T08:13:12.968+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  819. {"@timestamp":"2025-01-15T08:13:37.970+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  820. {"@timestamp":"2025-01-15T08:14:02.973+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  821. {"@timestamp":"2025-01-15T08:14:27.982+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  822. {"@timestamp":"2025-01-15T08:14:52.991+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  823. {"@timestamp":"2025-01-15T08:15:17.999+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  824. {"@timestamp":"2025-01-15T08:15:43.008+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  825. {"@timestamp":"2025-01-15T08:16:08.015+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  826. {"@timestamp":"2025-01-15T08:16:33.021+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  827. {"@timestamp":"2025-01-15T08:16:58.030+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  828. {"@timestamp":"2025-01-15T08:17:23.040+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  829. {"@timestamp":"2025-01-15T08:17:48.050+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  830. {"@timestamp":"2025-01-15T08:18:13.057+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  831. {"@timestamp":"2025-01-15T08:18:38.066+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  832. {"@timestamp":"2025-01-15T08:19:03.074+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  833. {"@timestamp":"2025-01-15T08:19:28.083+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  834. {"@timestamp":"2025-01-15T08:19:53.093+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  835. {"@timestamp":"2025-01-15T08:20:18.101+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  836. {"@timestamp":"2025-01-15T08:20:43.110+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  837. {"@timestamp":"2025-01-15T08:21:08.119+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  838. {"@timestamp":"2025-01-15T08:21:33.126+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  839. {"@timestamp":"2025-01-15T08:21:58.135+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  840. {"@timestamp":"2025-01-15T08:22:23.143+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  841. {"@timestamp":"2025-01-15T08:22:48.151+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  842. {"@timestamp":"2025-01-15T08:23:13.160+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  843. {"@timestamp":"2025-01-15T08:23:38.168+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  844. {"@timestamp":"2025-01-15T08:24:03.176+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  845. {"@timestamp":"2025-01-15T08:24:28.185+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  846. {"@timestamp":"2025-01-15T08:24:53.193+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  847. {"@timestamp":"2025-01-15T08:25:18.202+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  848. {"@timestamp":"2025-01-15T08:25:43.210+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  849. {"@timestamp":"2025-01-15T08:26:08.216+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  850. {"@timestamp":"2025-01-15T08:26:33.130+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  851. {"@timestamp":"2025-01-15T08:26:58.138+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  852. {"@timestamp":"2025-01-15T08:27:23.145+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  853. {"@timestamp":"2025-01-15T08:27:48.155+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  854. {"@timestamp":"2025-01-15T08:28:13.162+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  855. {"@timestamp":"2025-01-15T08:28:38.170+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  856. {"@timestamp":"2025-01-15T08:29:03.175+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  857. {"@timestamp":"2025-01-15T08:29:28.182+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  858. {"@timestamp":"2025-01-15T08:29:53.191+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  859. {"@timestamp":"2025-01-15T08:30:18.197+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  860. {"@timestamp":"2025-01-15T08:30:43.203+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  861. {"@timestamp":"2025-01-15T08:31:08.209+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  862. {"@timestamp":"2025-01-15T08:31:33.216+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  863. {"@timestamp":"2025-01-15T08:31:58.224+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  864. {"@timestamp":"2025-01-15T08:32:23.233+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  865. {"@timestamp":"2025-01-15T08:32:48.242+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  866. {"@timestamp":"2025-01-15T08:33:13.249+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  867. {"@timestamp":"2025-01-15T08:33:38.257+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  868. {"@timestamp":"2025-01-15T08:34:03.266+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  869. {"@timestamp":"2025-01-15T08:34:28.273+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  870. {"@timestamp":"2025-01-15T08:34:53.282+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  871. {"@timestamp":"2025-01-15T08:35:18.291+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  872. {"@timestamp":"2025-01-15T08:35:43.299+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  873. {"@timestamp":"2025-01-15T08:36:08.305+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  874. {"@timestamp":"2025-01-15T08:36:33.312+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  875. {"@timestamp":"2025-01-15T08:36:58.320+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  876. {"@timestamp":"2025-01-15T08:37:48.308+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  877. {"@timestamp":"2025-01-15T08:38:13.318+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  878. {"@timestamp":"2025-01-15T08:38:38.327+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  879. {"@timestamp":"2025-01-15T08:39:03.336+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  880. {"@timestamp":"2025-01-15T08:39:28.342+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  881. {"@timestamp":"2025-01-15T08:39:53.345+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  882. {"@timestamp":"2025-01-15T08:40:18.351+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  883. {"@timestamp":"2025-01-15T08:40:43.357+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  884. {"@timestamp":"2025-01-15T08:41:08.365+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  885. {"@timestamp":"2025-01-15T08:41:33.374+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  886. {"@timestamp":"2025-01-15T08:41:58.382+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  887. {"@timestamp":"2025-01-15T08:42:23.391+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  888. {"@timestamp":"2025-01-15T08:43:13.274+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  889. {"@timestamp":"2025-01-15T08:43:38.284+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  890. {"@timestamp":"2025-01-15T08:56:45.200+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  891. {"@timestamp":"2025-01-15T09:12:35.118+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  892. {"@timestamp":"2025-01-15T09:13:00.124+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  893. {"@timestamp":"2025-01-15T09:13:25.132+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  894. {"@timestamp":"2025-01-15T09:13:50.140+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  895. {"@timestamp":"2025-01-15T09:14:15.148+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  896. {"@timestamp":"2025-01-15T09:14:40.156+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  897. {"@timestamp":"2025-01-15T09:15:05.161+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  898. {"@timestamp":"2025-01-15T09:15:30.168+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  899. {"@timestamp":"2025-01-15T09:15:55.176+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  900. {"@timestamp":"2025-01-15T09:16:20.185+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  901. {"@timestamp":"2025-01-15T09:16:45.191+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  902. {"@timestamp":"2025-01-15T09:17:10.199+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  903. {"@timestamp":"2025-01-15T09:17:35.207+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  904. {"@timestamp":"2025-01-15T09:18:00.215+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  905. {"@timestamp":"2025-01-15T09:18:25.224+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  906. {"@timestamp":"2025-01-15T09:18:50.231+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  907. {"@timestamp":"2025-01-15T09:19:15.240+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  908. {"@timestamp":"2025-01-15T09:19:40.249+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  909. {"@timestamp":"2025-01-15T09:20:05.256+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  910. {"@timestamp":"2025-01-15T09:20:30.263+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  911. {"@timestamp":"2025-01-15T09:20:55.271+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  912. {"@timestamp":"2025-01-15T09:21:10.273+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  913. {"@timestamp":"2025-01-15T09:21:35.278+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  914. {"@timestamp":"2025-01-15T09:22:00.286+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  915. {"@timestamp":"2025-01-15T09:22:25.294+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  916. {"@timestamp":"2025-01-15T09:22:50.301+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  917. {"@timestamp":"2025-01-15T09:23:15.308+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  918. {"@timestamp":"2025-01-15T09:23:40.316+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  919. {"@timestamp":"2025-01-15T09:24:05.324+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  920. {"@timestamp":"2025-01-15T09:24:30.333+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  921. {"@timestamp":"2025-01-15T09:24:55.339+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  922. {"@timestamp":"2025-01-15T09:25:20.346+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  923. {"@timestamp":"2025-01-15T09:25:45.356+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  924. {"@timestamp":"2025-01-15T09:26:10.363+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  925. {"@timestamp":"2025-01-15T09:26:35.371+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  926. {"@timestamp":"2025-01-15T09:27:00.379+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  927. {"@timestamp":"2025-01-15T09:27:25.384+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  928. {"@timestamp":"2025-01-15T09:27:50.392+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  929. {"@timestamp":"2025-01-15T09:28:15.400+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  930. {"@timestamp":"2025-01-15T09:28:40.406+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  931. {"@timestamp":"2025-01-15T09:29:05.413+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  932. {"@timestamp":"2025-01-15T09:29:30.421+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  933. {"@timestamp":"2025-01-15T09:29:55.430+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  934. {"@timestamp":"2025-01-15T09:30:20.436+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  935. {"@timestamp":"2025-01-15T09:30:45.445+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  936. {"@timestamp":"2025-01-15T09:31:10.454+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  937. {"@timestamp":"2025-01-15T09:31:35.459+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  938. {"@timestamp":"2025-01-15T09:32:00.464+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  939. {"@timestamp":"2025-01-15T09:32:25.471+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  940. {"@timestamp":"2025-01-15T09:32:50.480+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  941. {"@timestamp":"2025-01-15T09:33:15.488+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  942. {"@timestamp":"2025-01-15T09:33:40.495+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  943. {"@timestamp":"2025-01-15T09:34:05.504+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  944. {"@timestamp":"2025-01-15T09:34:30.508+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  945. {"@timestamp":"2025-01-15T09:34:55.512+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  946. {"@timestamp":"2025-01-15T09:35:20.518+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  947. {"@timestamp":"2025-01-15T09:35:45.527+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  948. {"@timestamp":"2025-01-15T09:36:10.536+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  949. {"@timestamp":"2025-01-15T09:36:35.544+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  950. {"@timestamp":"2025-01-15T09:37:00.550+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  951. {"@timestamp":"2025-01-15T09:37:25.558+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  952. {"@timestamp":"2025-01-15T09:37:50.564+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  953. {"@timestamp":"2025-01-15T09:38:15.571+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  954. {"@timestamp":"2025-01-15T09:38:40.580+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  955. {"@timestamp":"2025-01-15T09:39:05.588+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  956. {"@timestamp":"2025-01-15T09:39:30.596+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  957. {"@timestamp":"2025-01-15T09:39:55.603+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  958. {"@timestamp":"2025-01-15T09:40:20.611+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  959. {"@timestamp":"2025-01-15T09:40:45.618+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  960. {"@timestamp":"2025-01-15T09:41:10.627+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  961. {"@timestamp":"2025-01-15T09:41:35.636+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  962. {"@timestamp":"2025-01-15T09:42:00.729+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  963. {"@timestamp":"2025-01-15T09:42:25.737+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  964. {"@timestamp":"2025-01-15T09:42:50.743+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  965. {"@timestamp":"2025-01-15T09:43:15.751+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  966. {"@timestamp":"2025-01-15T09:43:40.761+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  967. {"@timestamp":"2025-01-15T09:44:05.771+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  968. {"@timestamp":"2025-01-15T09:44:30.779+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  969. {"@timestamp":"2025-01-15T09:44:55.788+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  970. {"@timestamp":"2025-01-15T09:45:20.797+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  971. {"@timestamp":"2025-01-15T09:45:45.807+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  972. {"@timestamp":"2025-01-15T09:46:10.817+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  973. {"@timestamp":"2025-01-15T09:46:35.824+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  974. {"@timestamp":"2025-01-15T09:47:00.831+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  975. {"@timestamp":"2025-01-15T09:47:25.834+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  976. {"@timestamp":"2025-01-15T09:47:50.838+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  977. {"@timestamp":"2025-01-15T09:48:15.845+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  978. {"@timestamp":"2025-01-15T09:48:40.854+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  979. {"@timestamp":"2025-01-15T09:49:05.863+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  980. {"@timestamp":"2025-01-15T09:49:30.872+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  981. {"@timestamp":"2025-01-15T09:49:55.880+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  982. {"@timestamp":"2025-01-15T09:50:20.887+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  983. {"@timestamp":"2025-01-15T09:50:45.894+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  984. {"@timestamp":"2025-01-15T09:51:10.902+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  985. {"@timestamp":"2025-01-15T09:51:35.910+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  986. {"@timestamp":"2025-01-15T09:52:00.919+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  987. {"@timestamp":"2025-01-15T09:52:25.927+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  988. {"@timestamp":"2025-01-15T09:52:50.937+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  989. {"@timestamp":"2025-01-15T09:53:15.943+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  990. {"@timestamp":"2025-01-15T09:53:40.950+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  991. {"@timestamp":"2025-01-15T09:54:05.957+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  992. {"@timestamp":"2025-01-15T09:54:30.964+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  993. {"@timestamp":"2025-01-15T09:54:55.971+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  994. {"@timestamp":"2025-01-15T09:55:20.981+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  995. {"@timestamp":"2025-01-15T09:55:45.989+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  996. {"@timestamp":"2025-01-15T09:56:10.997+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  997. {"@timestamp":"2025-01-15T09:56:36.006+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  998. {"@timestamp":"2025-01-15T09:57:01.013+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  999. {"@timestamp":"2025-01-15T09:57:26.022+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1000. {"@timestamp":"2025-01-15T09:57:51.029+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1001. {"@timestamp":"2025-01-15T09:58:16.037+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1002. {"@timestamp":"2025-01-15T09:58:41.046+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1003. {"@timestamp":"2025-01-15T09:59:06.055+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1004. {"@timestamp":"2025-01-15T09:59:31.062+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1005. {"@timestamp":"2025-01-15T09:59:56.072+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1006. {"@timestamp":"2025-01-15T10:00:21.080+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1007. {"@timestamp":"2025-01-15T10:00:46.084+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1008. {"@timestamp":"2025-01-15T10:01:11.089+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1009. {"@timestamp":"2025-01-15T10:01:36.095+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1010. {"@timestamp":"2025-01-15T10:02:01.101+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1011. {"@timestamp":"2025-01-15T10:02:26.111+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1012. {"@timestamp":"2025-01-15T10:02:51.119+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1013. {"@timestamp":"2025-01-15T10:03:16.128+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1014. {"@timestamp":"2025-01-15T10:03:41.133+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1015. {"@timestamp":"2025-01-15T10:04:06.140+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1016. {"@timestamp":"2025-01-15T10:04:31.093+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1017. {"@timestamp":"2025-01-15T10:04:56.101+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1018. {"@timestamp":"2025-01-15T10:05:21.106+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1019. {"@timestamp":"2025-01-15T10:05:46.115+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1020. {"@timestamp":"2025-01-15T10:06:11.122+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1021. {"@timestamp":"2025-01-15T10:06:36.129+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1022. {"@timestamp":"2025-01-15T10:07:01.135+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1023. {"@timestamp":"2025-01-15T10:07:26.144+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1024. {"@timestamp":"2025-01-15T10:07:51.152+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1025. {"@timestamp":"2025-01-15T10:08:16.158+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1026. {"@timestamp":"2025-01-15T10:08:41.164+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1027. {"@timestamp":"2025-01-15T10:09:06.170+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1028. {"@timestamp":"2025-01-15T10:09:31.178+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1029. {"@timestamp":"2025-01-15T10:09:56.187+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1030. {"@timestamp":"2025-01-15T10:10:21.194+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1031. {"@timestamp":"2025-01-15T10:10:46.201+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1032. {"@timestamp":"2025-01-15T10:11:11.208+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1033. {"@timestamp":"2025-01-15T10:11:36.214+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1034. {"@timestamp":"2025-01-15T10:12:01.220+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1035. {"@timestamp":"2025-01-15T10:12:26.229+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1036. {"@timestamp":"2025-01-15T10:12:51.237+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1037. {"@timestamp":"2025-01-15T10:13:16.244+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1038. {"@timestamp":"2025-01-15T10:13:41.251+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1039. {"@timestamp":"2025-01-15T10:14:06.260+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1040. {"@timestamp":"2025-01-15T10:14:56.169+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1041. {"@timestamp":"2025-01-15T10:15:21.170+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1042. {"@timestamp":"2025-01-15T10:15:46.177+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1043. {"@timestamp":"2025-01-15T10:16:11.186+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1044. {"@timestamp":"2025-01-15T10:16:36.195+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1045. {"@timestamp":"2025-01-15T10:17:01.203+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1046. {"@timestamp":"2025-01-15T10:17:26.211+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1047. {"@timestamp":"2025-01-15T10:17:51.218+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1048. {"@timestamp":"2025-01-15T10:18:16.225+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1049. {"@timestamp":"2025-01-15T10:18:41.233+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1050. {"@timestamp":"2025-01-15T10:19:06.242+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1051. {"@timestamp":"2025-01-15T10:19:31.248+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1052. {"@timestamp":"2025-01-15T10:20:21.118+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1053. {"@timestamp":"2025-01-15T10:20:46.125+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1054. {"@timestamp":"2025-01-15T10:36:36.268+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1055. {"@timestamp":"2025-01-15T10:37:01.277+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1056. {"@timestamp":"2025-01-15T10:37:26.286+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1057. {"@timestamp":"2025-01-15T10:37:51.295+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1058. {"@timestamp":"2025-01-15T10:38:16.303+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1059. {"@timestamp":"2025-01-15T10:38:41.313+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1060. {"@timestamp":"2025-01-15T10:39:06.323+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1061. {"@timestamp":"2025-01-15T10:39:31.332+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1062. {"@timestamp":"2025-01-15T10:39:56.341+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1063. {"@timestamp":"2025-01-15T10:40:21.348+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1064. {"@timestamp":"2025-01-15T10:40:46.357+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1065. {"@timestamp":"2025-01-15T10:41:11.363+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1066. {"@timestamp":"2025-01-15T10:41:36.370+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1067. {"@timestamp":"2025-01-15T10:42:01.378+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1068. {"@timestamp":"2025-01-15T10:42:26.387+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1069. {"@timestamp":"2025-01-15T10:42:51.396+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1070. {"@timestamp":"2025-01-15T10:43:16.405+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1071. {"@timestamp":"2025-01-15T10:43:41.409+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1072. {"@timestamp":"2025-01-15T10:44:06.412+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1073. {"@timestamp":"2025-01-15T10:44:31.419+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1074. {"@timestamp":"2025-01-15T10:44:56.427+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1075. {"@timestamp":"2025-01-15T10:45:21.435+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1076. {"@timestamp":"2025-01-15T10:45:46.443+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1077. {"@timestamp":"2025-01-15T10:46:11.453+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1078. {"@timestamp":"2025-01-15T10:46:36.462+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1079. {"@timestamp":"2025-01-15T10:47:01.470+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1080. {"@timestamp":"2025-01-15T10:47:26.479+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1081. {"@timestamp":"2025-01-15T10:47:51.487+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1082. {"@timestamp":"2025-01-15T10:48:16.497+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1083. {"@timestamp":"2025-01-15T10:48:41.505+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1084. {"@timestamp":"2025-01-15T10:49:06.514+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1085. {"@timestamp":"2025-01-15T10:49:31.522+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1086. {"@timestamp":"2025-01-15T10:49:56.530+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1087. {"@timestamp":"2025-01-15T10:50:21.537+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1088. {"@timestamp":"2025-01-15T10:50:46.544+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1089. {"@timestamp":"2025-01-15T10:51:11.550+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1090. {"@timestamp":"2025-01-15T10:51:36.560+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1091. {"@timestamp":"2025-01-15T10:52:01.568+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1092. {"@timestamp":"2025-01-15T10:52:26.577+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1093. {"@timestamp":"2025-01-15T10:52:51.586+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1094. {"@timestamp":"2025-01-15T10:53:16.593+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1095. {"@timestamp":"2025-01-15T10:53:41.603+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1096. {"@timestamp":"2025-01-15T10:54:06.610+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1097. {"@timestamp":"2025-01-15T10:54:31.618+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1098. {"@timestamp":"2025-01-15T10:54:56.623+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1099. {"@timestamp":"2025-01-15T10:55:21.632+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1100. {"@timestamp":"2025-01-15T10:55:46.641+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1101. {"@timestamp":"2025-01-15T10:56:11.647+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1102. {"@timestamp":"2025-01-15T10:56:36.654+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1103. {"@timestamp":"2025-01-15T10:57:01.658+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1104. {"@timestamp":"2025-01-15T10:57:26.662+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1105. {"@timestamp":"2025-01-15T10:57:51.671+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1106. {"@timestamp":"2025-01-15T10:58:16.678+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1107. {"@timestamp":"2025-01-15T10:58:41.686+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1108. {"@timestamp":"2025-01-15T10:59:06.694+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1109. {"@timestamp":"2025-01-15T10:59:31.703+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1110. {"@timestamp":"2025-01-15T10:59:56.711+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1111. {"@timestamp":"2025-01-15T11:00:21.720+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1112. {"@timestamp":"2025-01-15T11:00:46.727+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1113. {"@timestamp":"2025-01-15T11:01:11.735+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1114. {"@timestamp":"2025-01-15T11:01:36.744+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1115. {"@timestamp":"2025-01-15T11:02:01.753+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1116. {"@timestamp":"2025-01-15T11:02:26.761+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1117. {"@timestamp":"2025-01-15T11:02:51.772+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1118. {"@timestamp":"2025-01-15T11:03:16.785+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1119. {"@timestamp":"2025-01-15T11:03:41.795+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1120. {"@timestamp":"2025-01-15T11:04:06.803+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1121. {"@timestamp":"2025-01-15T11:04:31.811+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1122. {"@timestamp":"2025-01-15T11:04:56.820+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1123. {"@timestamp":"2025-01-15T11:05:21.830+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1124. {"@timestamp":"2025-01-15T11:05:46.839+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1125. {"@timestamp":"2025-01-15T11:06:11.847+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1126. {"@timestamp":"2025-01-15T11:06:36.857+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1127. {"@timestamp":"2025-01-15T11:07:01.864+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1128. {"@timestamp":"2025-01-15T11:07:26.874+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1129. {"@timestamp":"2025-01-15T11:07:51.882+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1130. {"@timestamp":"2025-01-15T11:08:16.888+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1131. {"@timestamp":"2025-01-15T11:08:41.897+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1132. {"@timestamp":"2025-01-15T11:09:06.904+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1133. {"@timestamp":"2025-01-15T11:09:31.912+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1134. {"@timestamp":"2025-01-15T11:09:56.917+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1135. {"@timestamp":"2025-01-15T11:10:21.921+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1136. {"@timestamp":"2025-01-15T11:10:46.925+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1137. {"@timestamp":"2025-01-15T11:11:11.932+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1138. {"@timestamp":"2025-01-15T11:11:36.942+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1139. {"@timestamp":"2025-01-15T11:12:01.951+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1140. {"@timestamp":"2025-01-15T11:12:26.961+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1141. {"@timestamp":"2025-01-15T11:12:51.969+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1142. {"@timestamp":"2025-01-15T11:13:16.979+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1143. {"@timestamp":"2025-01-15T11:13:41.987+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1144. {"@timestamp":"2025-01-15T11:14:06.996+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1145. {"@timestamp":"2025-01-15T11:14:32.004+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1146. {"@timestamp":"2025-01-15T11:14:57.010+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1147. {"@timestamp":"2025-01-15T11:15:22.021+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1148. {"@timestamp":"2025-01-15T11:15:47.033+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1149. {"@timestamp":"2025-01-15T11:16:12.040+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1150. {"@timestamp":"2025-01-15T11:16:37.045+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1151. {"@timestamp":"2025-01-15T11:17:02.050+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1152. {"@timestamp":"2025-01-15T11:17:27.054+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1153. {"@timestamp":"2025-01-15T11:17:52.058+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1154. {"@timestamp":"2025-01-15T11:18:17.063+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1155. {"@timestamp":"2025-01-15T11:18:42.067+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1156. {"@timestamp":"2025-01-15T11:19:07.070+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1157. {"@timestamp":"2025-01-15T11:19:32.075+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1158. {"@timestamp":"2025-01-15T11:19:57.080+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1159. {"@timestamp":"2025-01-15T11:20:22.084+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1160. {"@timestamp":"2025-01-15T11:20:47.088+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1161. {"@timestamp":"2025-01-15T11:21:12.094+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1162. {"@timestamp":"2025-01-15T11:21:37.098+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1163. {"@timestamp":"2025-01-15T11:22:02.104+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1164. {"@timestamp":"2025-01-15T11:22:27.109+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1165. {"@timestamp":"2025-01-15T11:22:52.115+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1166. {"@timestamp":"2025-01-15T11:23:17.120+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1167. {"@timestamp":"2025-01-15T11:23:42.126+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1168. {"@timestamp":"2025-01-15T11:24:07.131+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1169. {"@timestamp":"2025-01-15T11:24:32.137+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1170. {"@timestamp":"2025-01-15T11:24:57.143+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1171. {"@timestamp":"2025-01-15T11:25:22.147+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1172. {"@timestamp":"2025-01-15T11:25:47.152+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1173. {"@timestamp":"2025-01-15T11:26:12.158+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1174. {"@timestamp":"2025-01-15T11:26:37.162+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1175. {"@timestamp":"2025-01-15T11:27:02.167+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1176. {"@timestamp":"2025-01-15T11:27:27.173+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1177. {"@timestamp":"2025-01-15T11:27:52.178+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1178. {"@timestamp":"2025-01-15T11:28:17.181+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1179. {"@timestamp":"2025-01-15T11:28:42.184+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1180. {"@timestamp":"2025-01-15T11:29:07.189+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1181. {"@timestamp":"2025-01-15T11:29:32.193+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1182. {"@timestamp":"2025-01-15T11:29:57.198+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1183. {"@timestamp":"2025-01-15T11:30:22.204+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1184. {"@timestamp":"2025-01-15T11:30:47.209+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1185. {"@timestamp":"2025-01-15T11:31:12.214+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1186. {"@timestamp":"2025-01-15T11:31:37.220+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1187. {"@timestamp":"2025-01-15T11:32:02.226+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1188. {"@timestamp":"2025-01-15T11:32:27.231+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1189. {"@timestamp":"2025-01-15T11:32:52.238+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1190. {"@timestamp":"2025-01-15T11:33:17.243+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1191. {"@timestamp":"2025-01-15T11:33:42.249+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1192. {"@timestamp":"2025-01-15T11:34:07.254+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1193. {"@timestamp":"2025-01-15T11:34:32.259+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1194. {"@timestamp":"2025-01-15T11:34:57.265+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1195. {"@timestamp":"2025-01-15T11:35:22.271+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1196. {"@timestamp":"2025-01-15T11:35:47.277+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1197. {"@timestamp":"2025-01-15T11:36:12.282+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1198. {"@timestamp":"2025-01-15T11:36:37.287+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1199. {"@timestamp":"2025-01-15T11:37:02.293+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1200. {"@timestamp":"2025-01-15T11:37:27.298+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1201. {"@timestamp":"2025-01-15T11:37:52.303+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1202. {"@timestamp":"2025-01-15T11:38:17.309+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1203. {"@timestamp":"2025-01-15T11:38:42.315+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1204. {"@timestamp":"2025-01-15T11:39:07.321+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1205. {"@timestamp":"2025-01-15T11:39:32.326+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1206. {"@timestamp":"2025-01-15T11:39:57.330+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1207. {"@timestamp":"2025-01-15T11:40:22.336+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1208. {"@timestamp":"2025-01-15T11:40:47.341+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1209. {"@timestamp":"2025-01-15T11:41:12.347+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1210. {"@timestamp":"2025-01-15T11:41:37.353+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1211. {"@timestamp":"2025-01-15T11:42:02.359+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1212. {"@timestamp":"2025-01-15T11:42:27.367+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1213. {"@timestamp":"2025-01-15T11:42:52.377+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1214. {"@timestamp":"2025-01-15T11:43:17.385+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1215. {"@timestamp":"2025-01-15T11:43:42.394+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1216. {"@timestamp":"2025-01-15T11:44:07.404+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1217. {"@timestamp":"2025-01-15T11:44:32.410+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1218. {"@timestamp":"2025-01-15T11:44:57.420+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1219. {"@timestamp":"2025-01-15T11:45:22.430+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1220. {"@timestamp":"2025-01-15T11:45:47.435+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1221. {"@timestamp":"2025-01-15T11:46:12.439+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1222. {"@timestamp":"2025-01-15T11:46:37.446+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1223. {"@timestamp":"2025-01-15T11:47:02.322+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1224. {"@timestamp":"2025-01-15T11:47:27.331+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1225. {"@timestamp":"2025-01-15T11:47:52.335+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1226. {"@timestamp":"2025-01-15T11:48:17.329+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1227. {"@timestamp":"2025-01-15T11:48:42.332+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1228. {"@timestamp":"2025-01-15T11:49:07.338+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1229. {"@timestamp":"2025-01-15T11:49:32.345+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1230. {"@timestamp":"2025-01-15T11:49:57.354+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1231. {"@timestamp":"2025-01-15T11:50:22.362+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1232. {"@timestamp":"2025-01-15T11:50:47.369+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1233. {"@timestamp":"2025-01-15T11:51:12.377+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1234. {"@timestamp":"2025-01-15T11:51:37.384+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1235. {"@timestamp":"2025-01-15T11:52:02.392+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1236. {"@timestamp":"2025-01-15T11:52:52.295+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1237. {"@timestamp":"2025-01-15T11:57:07.124+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1238. {"@timestamp":"2025-01-15T11:57:32.128+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1239. {"@timestamp":"2025-01-15T11:57:57.133+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1240. {"@timestamp":"2025-01-15T11:58:22.138+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1241. {"@timestamp":"2025-01-15T11:58:47.142+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1242. {"@timestamp":"2025-01-15T11:59:12.147+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1243. {"@timestamp":"2025-01-15T11:59:37.152+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1244. {"@timestamp":"2025-01-15T12:00:02.156+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1245. {"@timestamp":"2025-01-15T12:00:27.161+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1246. {"@timestamp":"2025-01-15T12:00:52.166+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1247. {"@timestamp":"2025-01-15T12:01:17.171+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1248. {"@timestamp":"2025-01-15T12:01:42.176+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1249. {"@timestamp":"2025-01-15T12:02:07.180+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1250. {"@timestamp":"2025-01-15T12:02:32.184+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1251. {"@timestamp":"2025-01-15T12:02:57.189+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1252. {"@timestamp":"2025-01-15T12:03:22.200+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1253. {"@timestamp":"2025-01-15T12:03:47.207+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1254. {"@timestamp":"2025-01-15T12:04:12.212+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1255. {"@timestamp":"2025-01-15T12:04:37.218+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1256. {"@timestamp":"2025-01-15T12:05:02.222+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1257. {"@timestamp":"2025-01-15T12:05:27.227+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1258. {"@timestamp":"2025-01-15T12:05:52.232+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1259. {"@timestamp":"2025-01-15T12:06:17.234+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1260. {"@timestamp":"2025-01-15T12:06:42.236+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1261. {"@timestamp":"2025-01-15T12:07:07.239+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1262. {"@timestamp":"2025-01-15T12:07:32.243+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1263. {"@timestamp":"2025-01-15T12:07:57.248+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1264. {"@timestamp":"2025-01-15T12:08:22.253+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1265. {"@timestamp":"2025-01-15T12:08:47.258+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1266. {"@timestamp":"2025-01-15T12:09:12.263+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1267. {"@timestamp":"2025-01-15T12:09:37.269+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1268. {"@timestamp":"2025-01-15T12:10:02.273+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1269. {"@timestamp":"2025-01-15T12:10:27.280+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1270. {"@timestamp":"2025-01-15T12:10:52.289+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1271. {"@timestamp":"2025-01-15T12:11:17.298+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1272. {"@timestamp":"2025-01-15T12:11:42.304+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1273. {"@timestamp":"2025-01-15T12:12:07.311+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1274. {"@timestamp":"2025-01-15T12:12:32.320+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1275. {"@timestamp":"2025-01-15T12:12:57.326+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1276. {"@timestamp":"2025-01-15T12:13:22.331+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1277. {"@timestamp":"2025-01-15T12:13:47.338+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1278. {"@timestamp":"2025-01-15T12:14:12.346+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1279. {"@timestamp":"2025-01-15T12:14:37.355+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1280. {"@timestamp":"2025-01-15T12:15:02.362+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1281. {"@timestamp":"2025-01-15T12:15:27.369+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1282. {"@timestamp":"2025-01-15T12:15:52.377+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1283. {"@timestamp":"2025-01-15T12:31:34.856+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1284. {"@timestamp":"2025-01-15T12:31:59.863+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1285. {"@timestamp":"2025-01-15T12:32:24.872+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1286. {"@timestamp":"2025-01-15T12:42:46.513+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1287. {"@timestamp":"2025-01-15T12:58:36.656+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1288. {"@timestamp":"2025-01-15T12:59:01.691+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1289. {"@timestamp":"2025-01-15T13:14:51.643+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1290. {"@timestamp":"2025-01-15T13:15:16.651+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1291. {"@timestamp":"2025-01-15T13:15:41.661+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1292. {"@timestamp":"2025-01-15T13:16:06.670+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1293. {"@timestamp":"2025-01-15T13:16:31.675+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1294. {"@timestamp":"2025-01-15T13:16:56.679+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1295. {"@timestamp":"2025-01-15T13:17:21.684+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1296. {"@timestamp":"2025-01-15T13:17:46.687+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1297. {"@timestamp":"2025-01-15T13:18:11.694+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1298. {"@timestamp":"2025-01-15T13:18:36.701+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1299. {"@timestamp":"2025-01-15T13:19:01.708+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1300. {"@timestamp":"2025-01-15T13:19:26.717+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1301. {"@timestamp":"2025-01-15T13:19:51.723+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1302. {"@timestamp":"2025-01-15T13:20:16.731+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1303. {"@timestamp":"2025-01-15T13:20:41.739+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1304. {"@timestamp":"2025-01-15T13:21:06.746+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1305. {"@timestamp":"2025-01-15T13:21:31.755+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1306. {"@timestamp":"2025-01-15T13:21:56.763+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1307. {"@timestamp":"2025-01-15T13:22:21.771+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1308. {"@timestamp":"2025-01-15T13:22:46.780+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1309. {"@timestamp":"2025-01-15T13:23:11.788+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1310. {"@timestamp":"2025-01-15T13:23:36.798+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1311. {"@timestamp":"2025-01-15T13:24:01.805+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1312. {"@timestamp":"2025-01-15T13:24:26.812+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1313. {"@timestamp":"2025-01-15T13:24:51.820+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1314. {"@timestamp":"2025-01-15T13:25:16.828+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1315. {"@timestamp":"2025-01-15T13:25:41.836+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1316. {"@timestamp":"2025-01-15T13:26:06.844+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1317. {"@timestamp":"2025-01-15T13:26:31.853+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1318. {"@timestamp":"2025-01-15T13:26:56.861+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1319. {"@timestamp":"2025-01-15T13:27:21.869+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1320. {"@timestamp":"2025-01-15T13:27:46.877+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1321. {"@timestamp":"2025-01-15T13:28:11.885+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1322. {"@timestamp":"2025-01-15T13:28:36.893+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1323. {"@timestamp":"2025-01-15T13:29:01.901+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1324. {"@timestamp":"2025-01-15T13:29:26.909+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1325. {"@timestamp":"2025-01-15T13:29:51.917+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1326. {"@timestamp":"2025-01-15T13:30:16.919+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1327. {"@timestamp":"2025-01-15T13:30:41.922+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1328. {"@timestamp":"2025-01-15T13:31:06.926+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1329. {"@timestamp":"2025-01-15T13:31:31.932+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1330. {"@timestamp":"2025-01-15T13:31:56.938+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1331. {"@timestamp":"2025-01-15T13:32:21.947+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1332. {"@timestamp":"2025-01-15T13:32:46.956+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1333. {"@timestamp":"2025-01-15T13:33:11.987+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1334. {"@timestamp":"2025-01-15T13:33:37.007+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1335. {"@timestamp":"2025-01-15T13:34:02.018+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1336. {"@timestamp":"2025-01-15T13:34:27.025+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1337. {"@timestamp":"2025-01-15T13:34:52.035+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1338. {"@timestamp":"2025-01-15T13:35:17.042+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1339. {"@timestamp":"2025-01-15T13:35:42.052+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1340. {"@timestamp":"2025-01-15T13:36:07.058+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1341. {"@timestamp":"2025-01-15T13:36:32.067+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1342. {"@timestamp":"2025-01-15T13:36:57.076+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1343. {"@timestamp":"2025-01-15T13:37:22.084+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1344. {"@timestamp":"2025-01-15T13:37:47.092+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1345. {"@timestamp":"2025-01-15T13:38:12.099+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1346. {"@timestamp":"2025-01-15T13:38:37.108+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1347. {"@timestamp":"2025-01-15T13:39:02.118+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1348. {"@timestamp":"2025-01-15T13:39:27.125+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1349. {"@timestamp":"2025-01-15T13:39:52.134+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1350. {"@timestamp":"2025-01-15T13:40:17.141+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1351. {"@timestamp":"2025-01-15T13:40:42.149+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1352. {"@timestamp":"2025-01-15T13:41:07.157+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1353. {"@timestamp":"2025-01-15T13:41:32.165+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1354. {"@timestamp":"2025-01-15T13:41:57.171+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1355. {"@timestamp":"2025-01-15T13:42:22.180+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1356. {"@timestamp":"2025-01-15T13:42:47.188+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1357. {"@timestamp":"2025-01-15T13:43:12.196+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1358. {"@timestamp":"2025-01-15T13:43:37.203+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1359. {"@timestamp":"2025-01-15T13:44:02.207+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1360. {"@timestamp":"2025-01-15T13:44:27.213+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1361. {"@timestamp":"2025-01-15T13:44:52.222+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1362. {"@timestamp":"2025-01-15T13:45:17.228+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1363. {"@timestamp":"2025-01-15T13:45:42.236+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1364. {"@timestamp":"2025-01-15T13:46:07.244+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1365. {"@timestamp":"2025-01-15T13:46:32.252+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1366. {"@timestamp":"2025-01-15T13:46:57.258+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1367. {"@timestamp":"2025-01-15T13:47:22.267+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1368. {"@timestamp":"2025-01-15T13:47:47.277+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1369. {"@timestamp":"2025-01-15T13:48:12.284+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1370. {"@timestamp":"2025-01-15T13:48:37.293+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1371. {"@timestamp":"2025-01-15T13:49:02.300+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1372. {"@timestamp":"2025-01-15T13:49:27.308+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1373. {"@timestamp":"2025-01-15T13:49:52.212+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1374. {"@timestamp":"2025-01-15T13:50:17.219+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1375. {"@timestamp":"2025-01-15T13:50:42.225+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1376. {"@timestamp":"2025-01-15T13:51:07.233+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1377. {"@timestamp":"2025-01-15T13:51:32.240+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1378. {"@timestamp":"2025-01-15T13:51:57.249+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1379. {"@timestamp":"2025-01-15T13:52:22.258+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1380. {"@timestamp":"2025-01-15T13:52:47.265+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1381. {"@timestamp":"2025-01-15T13:53:12.272+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1382. {"@timestamp":"2025-01-15T13:53:37.278+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1383. {"@timestamp":"2025-01-15T13:54:02.285+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1384. {"@timestamp":"2025-01-15T13:54:27.289+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1385. {"@timestamp":"2025-01-15T13:54:52.295+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1386. {"@timestamp":"2025-01-15T13:55:17.302+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1387. {"@timestamp":"2025-01-15T13:55:42.310+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1388. {"@timestamp":"2025-01-15T13:56:07.318+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1389. {"@timestamp":"2025-01-15T13:56:32.326+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1390. {"@timestamp":"2025-01-15T13:56:57.333+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1391. {"@timestamp":"2025-01-15T13:57:22.339+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1392. {"@timestamp":"2025-01-15T13:57:47.343+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1393. {"@timestamp":"2025-01-15T13:58:12.350+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1394. {"@timestamp":"2025-01-15T13:58:37.359+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1395. {"@timestamp":"2025-01-15T13:59:02.368+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1396. {"@timestamp":"2025-01-15T13:59:27.373+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1397. {"@timestamp":"2025-01-15T13:59:52.381+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1398. {"@timestamp":"2025-01-15T14:00:17.389+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1399. {"@timestamp":"2025-01-15T14:00:42.396+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1400. {"@timestamp":"2025-01-15T14:01:07.400+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1401. {"@timestamp":"2025-01-15T14:01:32.406+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1402. {"@timestamp":"2025-01-15T14:01:57.412+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1403. {"@timestamp":"2025-01-15T14:02:22.421+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1404. {"@timestamp":"2025-01-15T14:02:47.427+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1405. {"@timestamp":"2025-01-15T14:03:12.438+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1406. {"@timestamp":"2025-01-15T14:03:37.444+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1407. {"@timestamp":"2025-01-15T14:04:02.451+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1408. {"@timestamp":"2025-01-15T14:04:27.457+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1409. {"@timestamp":"2025-01-15T14:04:52.466+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1410. {"@timestamp":"2025-01-15T14:05:17.472+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1411. {"@timestamp":"2025-01-15T14:05:42.478+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1412. {"@timestamp":"2025-01-15T14:06:07.487+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1413. {"@timestamp":"2025-01-15T14:06:32.496+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1414. {"@timestamp":"2025-01-15T14:06:57.504+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1415. {"@timestamp":"2025-01-15T14:07:22.513+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1416. {"@timestamp":"2025-01-15T14:07:47.521+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1417. {"@timestamp":"2025-01-15T14:08:12.530+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1418. {"@timestamp":"2025-01-15T14:08:37.538+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1419. {"@timestamp":"2025-01-15T14:09:02.544+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1420. {"@timestamp":"2025-01-15T14:09:27.553+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1421. {"@timestamp":"2025-01-15T14:09:52.562+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1422. {"@timestamp":"2025-01-15T14:10:17.568+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1423. {"@timestamp":"2025-01-15T14:10:42.572+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1424. {"@timestamp":"2025-01-15T14:11:07.576+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1425. {"@timestamp":"2025-01-15T14:11:32.583+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1426. {"@timestamp":"2025-01-15T14:11:57.591+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1427. {"@timestamp":"2025-01-15T14:12:22.599+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1428. {"@timestamp":"2025-01-15T14:12:47.602+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1429. {"@timestamp":"2025-01-15T14:13:12.608+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1430. {"@timestamp":"2025-01-15T14:13:37.614+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1431. {"@timestamp":"2025-01-15T14:14:02.621+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1432. {"@timestamp":"2025-01-15T14:14:27.628+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1433. {"@timestamp":"2025-01-15T14:14:52.635+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1434. {"@timestamp":"2025-01-15T14:15:17.691+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1435. {"@timestamp":"2025-01-15T14:15:42.698+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1436. {"@timestamp":"2025-01-15T14:16:32.631+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1437. {"@timestamp":"2025-01-15T14:16:57.656+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1438. {"@timestamp":"2025-01-15T14:32:47.657+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1439. {"@timestamp":"2025-01-15T14:33:12.666+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1440. {"@timestamp":"2025-01-15T14:49:02.647+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1441. {"@timestamp":"2025-01-15T14:49:27.655+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1442. {"@timestamp":"2025-01-15T14:49:52.665+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1443. {"@timestamp":"2025-01-15T14:50:17.674+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1444. {"@timestamp":"2025-01-15T14:50:42.684+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1445. {"@timestamp":"2025-01-15T14:51:07.688+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1446. {"@timestamp":"2025-01-15T14:51:32.693+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1447. {"@timestamp":"2025-01-15T14:51:57.698+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1448. {"@timestamp":"2025-01-15T14:52:22.704+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1449. {"@timestamp":"2025-01-15T14:52:47.708+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1450. {"@timestamp":"2025-01-15T14:53:12.713+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1451. {"@timestamp":"2025-01-15T14:53:37.718+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1452. {"@timestamp":"2025-01-15T14:54:02.722+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1453. {"@timestamp":"2025-01-15T14:54:27.728+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1454. {"@timestamp":"2025-01-15T14:54:52.732+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1455. {"@timestamp":"2025-01-15T14:55:17.736+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1456. {"@timestamp":"2025-01-15T14:55:42.741+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1457. {"@timestamp":"2025-01-15T14:56:07.746+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1458. {"@timestamp":"2025-01-15T14:56:32.802+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1459. {"@timestamp":"2025-01-15T14:56:57.807+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1460. {"@timestamp":"2025-01-15T14:57:22.813+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1461. {"@timestamp":"2025-01-15T14:57:47.816+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1462. {"@timestamp":"2025-01-15T14:58:12.819+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  1463. {"@timestamp":"2025-01-15T14:58:37.821+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1464. {"@timestamp":"2025-01-15T14:59:02.825+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1465. {"@timestamp":"2025-01-15T14:59:27.828+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1466. {"@timestamp":"2025-01-15T14:59:52.834+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1467. {"@timestamp":"2025-01-15T15:00:17.839+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1468. {"@timestamp":"2025-01-15T15:00:42.845+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1469. {"@timestamp":"2025-01-15T15:01:07.850+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1470. {"@timestamp":"2025-01-15T15:01:32.856+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1471. {"@timestamp":"2025-01-15T15:01:57.861+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1472. {"@timestamp":"2025-01-15T15:02:22.866+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1473. {"@timestamp":"2025-01-15T15:02:47.871+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1474. {"@timestamp":"2025-01-15T15:03:12.875+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1475. {"@timestamp":"2025-01-15T15:03:37.881+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1476. {"@timestamp":"2025-01-15T15:04:02.886+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1477. {"@timestamp":"2025-01-15T15:04:27.890+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1478. {"@timestamp":"2025-01-15T15:04:52.894+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1479. {"@timestamp":"2025-01-15T15:05:17.898+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1480. {"@timestamp":"2025-01-15T15:05:42.901+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1481. {"@timestamp":"2025-01-15T15:06:07.904+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1482. {"@timestamp":"2025-01-15T15:06:32.909+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1483. {"@timestamp":"2025-01-15T15:06:57.913+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1484. {"@timestamp":"2025-01-15T15:07:22.919+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1485. {"@timestamp":"2025-01-15T15:07:47.923+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1486. {"@timestamp":"2025-01-15T15:08:12.929+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1487. {"@timestamp":"2025-01-15T15:08:37.933+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1488. {"@timestamp":"2025-01-15T15:09:02.939+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1489. {"@timestamp":"2025-01-15T15:09:27.944+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1490. {"@timestamp":"2025-01-15T15:09:52.950+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1491. {"@timestamp":"2025-01-15T15:10:17.956+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1492. {"@timestamp":"2025-01-15T15:10:42.960+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1493. {"@timestamp":"2025-01-15T15:11:07.966+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1494. {"@timestamp":"2025-01-15T15:11:32.971+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1495. {"@timestamp":"2025-01-15T15:11:57.921+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1496. {"@timestamp":"2025-01-15T15:12:22.925+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1497. {"@timestamp":"2025-01-15T15:12:47.931+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1498. {"@timestamp":"2025-01-15T15:13:12.935+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1499. {"@timestamp":"2025-01-15T15:13:37.940+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1500. {"@timestamp":"2025-01-15T15:14:02.944+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1501. {"@timestamp":"2025-01-15T15:14:27.950+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1502. {"@timestamp":"2025-01-15T15:14:52.953+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1503. {"@timestamp":"2025-01-15T15:15:17.958+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1504. {"@timestamp":"2025-01-15T15:15:42.963+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1505. {"@timestamp":"2025-01-15T15:16:07.968+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1506. {"@timestamp":"2025-01-15T15:16:32.973+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1507. {"@timestamp":"2025-01-15T15:16:57.978+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1508. {"@timestamp":"2025-01-15T15:17:22.984+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1509. {"@timestamp":"2025-01-15T15:17:47.989+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1510. {"@timestamp":"2025-01-15T15:18:12.995+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1511. {"@timestamp":"2025-01-15T15:18:37.999+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1512. {"@timestamp":"2025-01-15T15:19:03.001+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1513. {"@timestamp":"2025-01-15T15:19:28.004+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1514. {"@timestamp":"2025-01-15T15:19:53.009+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1515. {"@timestamp":"2025-01-15T15:20:18.013+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1516. {"@timestamp":"2025-01-15T15:20:43.022+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1517. {"@timestamp":"2025-01-15T15:21:08.027+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1518. {"@timestamp":"2025-01-15T15:21:33.032+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1519. {"@timestamp":"2025-01-15T15:21:58.037+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1520. {"@timestamp":"2025-01-15T15:22:23.042+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1521. {"@timestamp":"2025-01-15T15:22:48.045+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1522. {"@timestamp":"2025-01-15T15:23:13.049+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1523. {"@timestamp":"2025-01-15T15:23:38.054+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1524. {"@timestamp":"2025-01-15T15:24:03.059+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1525. {"@timestamp":"2025-01-15T15:24:28.065+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1526. {"@timestamp":"2025-01-15T15:24:53.070+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1527. {"@timestamp":"2025-01-15T15:25:18.075+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1528. {"@timestamp":"2025-01-15T15:25:43.080+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1529. {"@timestamp":"2025-01-15T15:26:08.085+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1530. {"@timestamp":"2025-01-15T15:26:33.089+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1531. {"@timestamp":"2025-01-15T15:26:58.095+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1532. {"@timestamp":"2025-01-15T15:27:23.098+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1533. {"@timestamp":"2025-01-15T15:27:48.103+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1534. {"@timestamp":"2025-01-15T15:28:13.108+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1535. {"@timestamp":"2025-01-15T15:28:38.114+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1536. {"@timestamp":"2025-01-15T15:29:03.119+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1537. {"@timestamp":"2025-01-15T15:29:28.124+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1538. {"@timestamp":"2025-01-15T15:29:53.129+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1539. {"@timestamp":"2025-01-15T15:30:18.133+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1540. {"@timestamp":"2025-01-15T15:30:43.138+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1541. {"@timestamp":"2025-01-15T15:31:08.143+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1542. {"@timestamp":"2025-01-15T15:31:33.148+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1543. {"@timestamp":"2025-01-15T15:31:58.153+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1544. {"@timestamp":"2025-01-15T15:32:23.156+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1545. {"@timestamp":"2025-01-15T15:32:48.161+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1546. {"@timestamp":"2025-01-15T15:33:13.165+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1547. {"@timestamp":"2025-01-15T15:33:38.171+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1548. {"@timestamp":"2025-01-15T15:34:03.176+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1549. {"@timestamp":"2025-01-15T15:34:28.091+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1550. {"@timestamp":"2025-01-15T15:34:53.095+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1551. {"@timestamp":"2025-01-15T15:35:18.100+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1552. {"@timestamp":"2025-01-15T15:35:43.104+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1553. {"@timestamp":"2025-01-15T15:36:08.108+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1554. {"@timestamp":"2025-01-15T15:36:33.113+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1555. {"@timestamp":"2025-01-15T15:36:58.117+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1556. {"@timestamp":"2025-01-15T15:37:23.122+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1557. {"@timestamp":"2025-01-15T15:37:48.127+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1558. {"@timestamp":"2025-01-15T15:38:13.131+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1559. {"@timestamp":"2025-01-15T15:38:38.133+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1560. {"@timestamp":"2025-01-15T15:39:03.135+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1561. {"@timestamp":"2025-01-15T15:39:28.139+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1562. {"@timestamp":"2025-01-15T15:39:53.143+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1563. {"@timestamp":"2025-01-15T15:40:18.147+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1564. {"@timestamp":"2025-01-15T15:40:43.152+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1565. {"@timestamp":"2025-01-15T15:41:08.156+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1566. {"@timestamp":"2025-01-15T15:41:33.161+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1567. {"@timestamp":"2025-01-15T15:41:58.165+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1568. {"@timestamp":"2025-01-15T15:42:23.169+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1569. {"@timestamp":"2025-01-15T15:42:48.173+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1570. {"@timestamp":"2025-01-15T15:43:13.178+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1571. {"@timestamp":"2025-01-15T15:43:38.183+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1572. {"@timestamp":"2025-01-15T15:44:03.188+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1573. {"@timestamp":"2025-01-15T15:44:28.192+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1574. {"@timestamp":"2025-01-15T15:44:53.197+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1575. {"@timestamp":"2025-01-15T15:45:18.202+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1576. {"@timestamp":"2025-01-15T15:45:43.206+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1577. {"@timestamp":"2025-01-15T15:46:08.213+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1578. {"@timestamp":"2025-01-15T15:46:33.218+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1579. {"@timestamp":"2025-01-15T15:46:58.224+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1580. {"@timestamp":"2025-01-15T15:47:23.228+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1581. {"@timestamp":"2025-01-15T15:47:48.233+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1582. {"@timestamp":"2025-01-15T15:48:13.238+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1583. {"@timestamp":"2025-01-15T15:48:38.242+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1584. {"@timestamp":"2025-01-15T15:49:03.247+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1585. {"@timestamp":"2025-01-15T15:49:28.251+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1586. {"@timestamp":"2025-01-15T15:49:53.256+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1587. {"@timestamp":"2025-01-15T15:50:18.261+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1588. {"@timestamp":"2025-01-15T15:50:43.265+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1589. {"@timestamp":"2025-01-15T15:51:08.270+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1590. {"@timestamp":"2025-01-15T15:51:33.275+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1591. {"@timestamp":"2025-01-15T15:51:58.280+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1592. {"@timestamp":"2025-01-15T15:52:23.284+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1593. {"@timestamp":"2025-01-15T15:52:48.288+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1594. {"@timestamp":"2025-01-15T15:53:13.293+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1595. {"@timestamp":"2025-01-15T15:53:38.297+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1596. {"@timestamp":"2025-01-15T15:54:03.300+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1597. {"@timestamp":"2025-01-15T15:54:28.305+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1598. {"@timestamp":"2025-01-15T15:54:53.309+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1599. {"@timestamp":"2025-01-15T15:55:18.314+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1600. {"@timestamp":"2025-01-15T15:55:43.318+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1601. {"@timestamp":"2025-01-15T15:56:08.323+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1602. {"@timestamp":"2025-01-15T15:56:33.330+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1603. {"@timestamp":"2025-01-15T15:56:58.335+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1604. {"@timestamp":"2025-01-15T15:57:23.339+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1605. {"@timestamp":"2025-01-15T15:57:48.341+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1606. {"@timestamp":"2025-01-15T15:58:13.350+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1607. {"@timestamp":"2025-01-15T15:58:38.356+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1608. {"@timestamp":"2025-01-15T15:59:03.361+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1609. {"@timestamp":"2025-01-15T15:59:28.365+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1610. {"@timestamp":"2025-01-15T15:59:53.370+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1611. {"@timestamp":"2025-01-15T16:00:18.373+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1612. {"@timestamp":"2025-01-15T16:00:43.377+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1613. {"@timestamp":"2025-01-15T16:01:08.381+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1614. {"@timestamp":"2025-01-15T16:01:33.384+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1615. {"@timestamp":"2025-01-15T16:01:58.390+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1616. {"@timestamp":"2025-01-15T16:02:23.394+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1617. {"@timestamp":"2025-01-15T16:02:48.400+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1618. {"@timestamp":"2025-01-15T16:03:13.405+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1619. {"@timestamp":"2025-01-15T16:03:38.408+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1620. {"@timestamp":"2025-01-15T16:04:03.413+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1621. {"@timestamp":"2025-01-15T16:04:28.418+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1622. {"@timestamp":"2025-01-15T16:04:53.423+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1623. {"@timestamp":"2025-01-15T16:05:18.428+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1624. {"@timestamp":"2025-01-15T16:05:43.432+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1625. {"@timestamp":"2025-01-15T16:06:08.436+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1626. {"@timestamp":"2025-01-15T16:06:33.442+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1627. {"@timestamp":"2025-01-15T16:06:58.446+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1628. {"@timestamp":"2025-01-15T16:07:23.451+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1629. {"@timestamp":"2025-01-15T16:07:48.457+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1630. {"@timestamp":"2025-01-15T16:08:13.465+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1631. {"@timestamp":"2025-01-15T16:08:38.473+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1632. {"@timestamp":"2025-01-15T16:09:03.480+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1633. {"@timestamp":"2025-01-15T16:09:28.489+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1634. {"@timestamp":"2025-01-15T16:09:53.498+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1635. {"@timestamp":"2025-01-15T16:10:18.507+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1636. {"@timestamp":"2025-01-15T16:10:43.516+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1637. {"@timestamp":"2025-01-15T16:11:08.522+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1638. {"@timestamp":"2025-01-15T16:11:33.531+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1639. {"@timestamp":"2025-01-15T16:11:58.539+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1640. {"@timestamp":"2025-01-15T16:12:23.548+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1641. {"@timestamp":"2025-01-15T16:12:48.555+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1642. {"@timestamp":"2025-01-15T16:13:13.625+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1643. {"@timestamp":"2025-01-15T16:13:38.632+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1644. {"@timestamp":"2025-01-15T16:14:03.636+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1645. {"@timestamp":"2025-01-15T16:29:53.610+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1646. {"@timestamp":"2025-01-15T16:30:18.587+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1647. {"@timestamp":"2025-01-15T16:30:43.589+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1648. {"@timestamp":"2025-01-15T16:36:02.451+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1649. {"@timestamp":"2025-01-15T16:36:27.456+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1650. {"@timestamp":"2025-01-15T16:36:52.461+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1651. {"@timestamp":"2025-01-15T16:37:17.465+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1652. {"@timestamp":"2025-01-15T16:37:42.469+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1653. {"@timestamp":"2025-01-15T16:38:07.475+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1654. {"@timestamp":"2025-01-15T16:38:32.480+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1655. {"@timestamp":"2025-01-15T16:38:57.484+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1656. {"@timestamp":"2025-01-15T16:39:22.489+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1657. {"@timestamp":"2025-01-15T16:39:47.493+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1658. {"@timestamp":"2025-01-15T16:40:12.497+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1659. {"@timestamp":"2025-01-15T16:40:37.502+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1660. {"@timestamp":"2025-01-15T16:41:02.507+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1661. {"@timestamp":"2025-01-15T16:41:27.512+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1662. {"@timestamp":"2025-01-15T16:41:52.517+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1663. {"@timestamp":"2025-01-15T16:42:17.522+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1664. {"@timestamp":"2025-01-15T16:42:42.527+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1665. {"@timestamp":"2025-01-15T16:43:07.531+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1666. {"@timestamp":"2025-01-15T16:43:32.536+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1667. {"@timestamp":"2025-01-15T16:43:57.541+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1668. {"@timestamp":"2025-01-15T16:44:22.546+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1669. {"@timestamp":"2025-01-15T16:44:47.551+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1670. {"@timestamp":"2025-01-15T16:45:12.556+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1671. {"@timestamp":"2025-01-15T16:45:37.560+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1672. {"@timestamp":"2025-01-15T16:46:02.565+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1673. {"@timestamp":"2025-01-15T16:46:27.570+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1674. {"@timestamp":"2025-01-15T16:46:52.575+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1675. {"@timestamp":"2025-01-15T16:47:17.580+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1676. {"@timestamp":"2025-01-15T16:47:42.584+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1677. {"@timestamp":"2025-01-15T16:48:07.589+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1678. {"@timestamp":"2025-01-15T16:48:32.593+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1679. {"@timestamp":"2025-01-15T16:48:57.598+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1680. {"@timestamp":"2025-01-15T16:49:22.603+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1681. {"@timestamp":"2025-01-15T16:49:47.610+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1682. {"@timestamp":"2025-01-15T16:50:12.617+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1683. {"@timestamp":"2025-01-15T16:50:37.626+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1684. {"@timestamp":"2025-01-15T16:51:02.632+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1685. {"@timestamp":"2025-01-15T16:51:27.639+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1686. {"@timestamp":"2025-01-15T16:51:52.641+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1687. {"@timestamp":"2025-01-15T16:52:17.648+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1688. {"@timestamp":"2025-01-15T16:52:42.656+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1689. {"@timestamp":"2025-01-15T16:53:07.665+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1690. {"@timestamp":"2025-01-15T16:53:32.671+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1691. {"@timestamp":"2025-01-15T16:53:57.677+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1692. {"@timestamp":"2025-01-15T16:54:22.684+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1693. {"@timestamp":"2025-01-15T16:54:47.712+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1694. {"@timestamp":"2025-01-15T16:55:12.743+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1695. {"@timestamp":"2025-01-15T16:55:37.754+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1696. {"@timestamp":"2025-01-15T16:56:02.762+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1697. {"@timestamp":"2025-01-15T16:56:27.767+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1698. {"@timestamp":"2025-01-15T16:56:52.772+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1699. {"@timestamp":"2025-01-15T16:57:17.776+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1700. {"@timestamp":"2025-01-15T16:57:42.782+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1701. {"@timestamp":"2025-01-15T16:58:07.787+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1702. {"@timestamp":"2025-01-15T16:58:32.793+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1703. {"@timestamp":"2025-01-15T16:58:57.797+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1704. {"@timestamp":"2025-01-15T16:59:22.802+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1705. {"@timestamp":"2025-01-15T16:59:47.807+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1706. {"@timestamp":"2025-01-15T17:00:12.812+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1707. {"@timestamp":"2025-01-15T17:00:37.818+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1708. {"@timestamp":"2025-01-15T17:01:02.823+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1709. {"@timestamp":"2025-01-15T17:01:27.826+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1710. {"@timestamp":"2025-01-15T17:01:52.831+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1711. {"@timestamp":"2025-01-15T17:02:17.836+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1712. {"@timestamp":"2025-01-15T17:02:42.841+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1713. {"@timestamp":"2025-01-15T17:03:07.846+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1714. {"@timestamp":"2025-01-15T17:03:32.851+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1715. {"@timestamp":"2025-01-15T17:03:57.857+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1716. {"@timestamp":"2025-01-15T17:04:22.862+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1717. {"@timestamp":"2025-01-15T17:04:47.866+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1718. {"@timestamp":"2025-01-15T17:05:12.871+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1719. {"@timestamp":"2025-01-15T17:05:37.876+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1720. {"@timestamp":"2025-01-15T17:06:02.882+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1721. {"@timestamp":"2025-01-15T17:06:27.886+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1722. {"@timestamp":"2025-01-15T17:06:52.891+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1723. {"@timestamp":"2025-01-15T17:07:17.895+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1724. {"@timestamp":"2025-01-15T17:07:42.901+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1725. {"@timestamp":"2025-01-15T17:08:07.906+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1726. {"@timestamp":"2025-01-15T17:08:32.911+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1727. {"@timestamp":"2025-01-15T17:08:57.915+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1728. {"@timestamp":"2025-01-15T17:09:22.917+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1729. {"@timestamp":"2025-01-15T17:09:47.921+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1730. {"@timestamp":"2025-01-15T17:10:12.927+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1731. {"@timestamp":"2025-01-15T17:10:37.932+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1732. {"@timestamp":"2025-01-15T17:11:02.937+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1733. {"@timestamp":"2025-01-15T17:11:27.942+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1734. {"@timestamp":"2025-01-15T17:11:52.947+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1735. {"@timestamp":"2025-01-15T17:12:17.952+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1736. {"@timestamp":"2025-01-15T17:12:42.955+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1737. {"@timestamp":"2025-01-15T17:13:07.959+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1738. {"@timestamp":"2025-01-15T17:13:32.964+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1739. {"@timestamp":"2025-01-15T17:13:57.969+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1740. {"@timestamp":"2025-01-15T17:14:22.975+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1741. {"@timestamp":"2025-01-15T17:14:47.980+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1742. {"@timestamp":"2025-01-15T17:15:12.985+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1743. {"@timestamp":"2025-01-15T17:15:37.989+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1744. {"@timestamp":"2025-01-15T17:16:02.996+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1745. {"@timestamp":"2025-01-15T17:16:28.006+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1746. {"@timestamp":"2025-01-15T17:16:53.014+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1747. {"@timestamp":"2025-01-15T17:17:18.022+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1748. {"@timestamp":"2025-01-15T17:17:43.030+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1749. {"@timestamp":"2025-01-15T17:18:08.038+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1750. {"@timestamp":"2025-01-15T17:18:33.046+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1751. {"@timestamp":"2025-01-15T17:18:58.055+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1752. {"@timestamp":"2025-01-15T17:19:23.061+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1753. {"@timestamp":"2025-01-15T17:19:48.067+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1754. {"@timestamp":"2025-01-15T17:20:13.075+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1755. {"@timestamp":"2025-01-15T17:20:38.083+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1756. {"@timestamp":"2025-01-15T17:21:03.173+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1757. {"@timestamp":"2025-01-15T17:21:28.177+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1758. {"@timestamp":"2025-01-15T17:36:55.424+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1759. {"@timestamp":"2025-01-15T17:37:20.434+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1760. {"@timestamp":"2025-01-15T17:37:45.443+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1761. {"@timestamp":"2025-01-15T17:53:35.548+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1762. {"@timestamp":"2025-01-15T17:54:00.558+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1763. {"@timestamp":"2025-01-15T18:09:45.103+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1764. {"@timestamp":"2025-01-15T18:25:08.102+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1765. {"@timestamp":"2025-01-15T18:25:33.110+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1766. {"@timestamp":"2025-01-15T18:25:58.119+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1767. {"@timestamp":"2025-01-15T18:26:23.124+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1768. {"@timestamp":"2025-01-15T18:26:48.132+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1769. {"@timestamp":"2025-01-15T18:27:13.142+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1770. {"@timestamp":"2025-01-15T18:27:38.149+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1771. {"@timestamp":"2025-01-15T18:28:03.158+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1772. {"@timestamp":"2025-01-15T18:28:28.166+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1773. {"@timestamp":"2025-01-15T18:28:53.175+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1774. {"@timestamp":"2025-01-15T18:29:18.182+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1775. {"@timestamp":"2025-01-15T18:29:43.190+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1776. {"@timestamp":"2025-01-15T18:30:08.199+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1777. {"@timestamp":"2025-01-15T18:30:33.207+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1778. {"@timestamp":"2025-01-15T18:30:58.215+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1779. {"@timestamp":"2025-01-15T18:31:23.222+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1780. {"@timestamp":"2025-01-15T18:31:48.230+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1781. {"@timestamp":"2025-01-15T18:32:13.239+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1782. {"@timestamp":"2025-01-15T18:32:38.248+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1783. {"@timestamp":"2025-01-15T18:33:03.257+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1784. {"@timestamp":"2025-01-15T18:33:28.265+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1785. {"@timestamp":"2025-01-15T18:33:53.274+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1786. {"@timestamp":"2025-01-15T18:34:18.280+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1787. {"@timestamp":"2025-01-15T18:34:43.285+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1788. {"@timestamp":"2025-01-15T18:35:08.294+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1789. {"@timestamp":"2025-01-15T18:35:33.302+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1790. {"@timestamp":"2025-01-15T18:35:58.311+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1791. {"@timestamp":"2025-01-15T18:36:23.317+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1792. {"@timestamp":"2025-01-15T18:36:48.320+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1793. {"@timestamp":"2025-01-15T18:37:13.328+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1794. {"@timestamp":"2025-01-15T18:37:38.337+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1795. {"@timestamp":"2025-01-15T18:38:03.340+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1796. {"@timestamp":"2025-01-15T18:38:28.349+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1797. {"@timestamp":"2025-01-15T18:38:53.355+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1798. {"@timestamp":"2025-01-15T18:39:18.362+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1799. {"@timestamp":"2025-01-15T18:39:43.368+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1800. {"@timestamp":"2025-01-15T18:40:08.375+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1801. {"@timestamp":"2025-01-15T18:40:33.381+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1802. {"@timestamp":"2025-01-15T18:40:58.385+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1803. {"@timestamp":"2025-01-15T18:41:23.390+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1804. {"@timestamp":"2025-01-15T18:41:48.399+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1805. {"@timestamp":"2025-01-15T18:42:13.406+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1806. {"@timestamp":"2025-01-15T18:42:38.414+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1807. {"@timestamp":"2025-01-15T18:43:03.422+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1808. {"@timestamp":"2025-01-15T18:43:28.430+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1809. {"@timestamp":"2025-01-15T18:43:53.438+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1810. {"@timestamp":"2025-01-15T18:44:18.444+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1811. {"@timestamp":"2025-01-15T18:44:43.450+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1812. {"@timestamp":"2025-01-15T18:45:08.457+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1813. {"@timestamp":"2025-01-15T18:45:33.464+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1814. {"@timestamp":"2025-01-15T18:45:58.473+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1815. {"@timestamp":"2025-01-15T18:46:23.482+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1816. {"@timestamp":"2025-01-15T18:46:48.489+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1817. {"@timestamp":"2025-01-15T18:47:13.495+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1818. {"@timestamp":"2025-01-15T18:47:38.502+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1819. {"@timestamp":"2025-01-15T18:48:03.509+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1820. {"@timestamp":"2025-01-15T18:48:28.518+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1821. {"@timestamp":"2025-01-15T18:48:53.526+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1822. {"@timestamp":"2025-01-15T18:49:18.534+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1823. {"@timestamp":"2025-01-15T18:49:43.542+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1824. {"@timestamp":"2025-01-15T18:50:08.547+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1825. {"@timestamp":"2025-01-15T18:50:33.551+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1826. {"@timestamp":"2025-01-15T18:50:58.560+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1827. {"@timestamp":"2025-01-15T18:51:23.568+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1828. {"@timestamp":"2025-01-15T18:51:48.576+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1829. {"@timestamp":"2025-01-15T18:52:13.584+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1830. {"@timestamp":"2025-01-15T18:52:38.588+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1831. {"@timestamp":"2025-01-15T18:53:03.596+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1832. {"@timestamp":"2025-01-15T18:53:28.603+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1833. {"@timestamp":"2025-01-15T18:53:53.612+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1834. {"@timestamp":"2025-01-15T18:54:18.620+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1835. {"@timestamp":"2025-01-15T18:54:43.627+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1836. {"@timestamp":"2025-01-15T18:55:08.637+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1837. {"@timestamp":"2025-01-15T18:55:33.644+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1838. {"@timestamp":"2025-01-15T18:55:58.652+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1839. {"@timestamp":"2025-01-15T18:56:23.661+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1840. {"@timestamp":"2025-01-15T18:56:48.670+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1841. {"@timestamp":"2025-01-15T18:57:13.676+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1842. {"@timestamp":"2025-01-15T18:57:38.682+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1843. {"@timestamp":"2025-01-15T18:58:03.690+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1844. {"@timestamp":"2025-01-15T18:58:28.697+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1845. {"@timestamp":"2025-01-15T18:58:53.705+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1846. {"@timestamp":"2025-01-15T18:59:18.712+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1847. {"@timestamp":"2025-01-15T18:59:43.720+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1848. {"@timestamp":"2025-01-15T19:00:08.724+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1849. {"@timestamp":"2025-01-15T19:00:33.731+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1850. {"@timestamp":"2025-01-15T19:00:58.740+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1851. {"@timestamp":"2025-01-15T19:01:23.746+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1852. {"@timestamp":"2025-01-15T19:01:48.754+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1853. {"@timestamp":"2025-01-15T19:02:13.759+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1854. {"@timestamp":"2025-01-15T19:02:38.766+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1855. {"@timestamp":"2025-01-15T19:03:03.775+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1856. {"@timestamp":"2025-01-15T19:03:28.780+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1857. {"@timestamp":"2025-01-15T19:03:53.783+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1858. {"@timestamp":"2025-01-15T19:04:18.791+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1859. {"@timestamp":"2025-01-15T19:04:43.800+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1860. {"@timestamp":"2025-01-15T19:05:08.804+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1861. {"@timestamp":"2025-01-15T19:05:33.809+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1862. {"@timestamp":"2025-01-15T19:05:58.816+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1863. {"@timestamp":"2025-01-15T19:06:23.821+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1864. {"@timestamp":"2025-01-15T19:06:48.826+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1865. {"@timestamp":"2025-01-15T19:07:13.831+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1866. {"@timestamp":"2025-01-15T19:07:38.836+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1867. {"@timestamp":"2025-01-15T19:08:03.841+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1868. {"@timestamp":"2025-01-15T19:08:28.846+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1869. {"@timestamp":"2025-01-15T19:08:53.852+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1870. {"@timestamp":"2025-01-15T19:09:18.857+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1871. {"@timestamp":"2025-01-15T19:09:43.863+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1872. {"@timestamp":"2025-01-15T19:10:08.868+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1873. {"@timestamp":"2025-01-15T19:10:33.873+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1874. {"@timestamp":"2025-01-15T19:10:58.878+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1875. {"@timestamp":"2025-01-15T19:11:23.882+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1876. {"@timestamp":"2025-01-15T19:11:48.887+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1877. {"@timestamp":"2025-01-15T19:12:13.891+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1878. {"@timestamp":"2025-01-15T19:12:38.896+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1879. {"@timestamp":"2025-01-15T19:13:03.900+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1880. {"@timestamp":"2025-01-15T19:13:28.905+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1881. {"@timestamp":"2025-01-15T19:13:53.911+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1882. {"@timestamp":"2025-01-15T19:14:18.916+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1883. {"@timestamp":"2025-01-15T19:14:43.921+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1884. {"@timestamp":"2025-01-15T19:15:08.927+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1885. {"@timestamp":"2025-01-15T19:15:33.931+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1886. {"@timestamp":"2025-01-15T19:15:58.936+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1887. {"@timestamp":"2025-01-15T19:16:23.943+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1888. {"@timestamp":"2025-01-15T19:16:48.947+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1889. {"@timestamp":"2025-01-15T19:17:13.952+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1890. {"@timestamp":"2025-01-15T19:17:38.957+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1891. {"@timestamp":"2025-01-15T19:18:03.962+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1892. {"@timestamp":"2025-01-15T19:18:28.967+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1893. {"@timestamp":"2025-01-15T19:18:53.971+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1894. {"@timestamp":"2025-01-15T19:19:18.974+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1895. {"@timestamp":"2025-01-15T19:19:43.979+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1896. {"@timestamp":"2025-01-15T19:20:08.997+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1897. {"@timestamp":"2025-01-15T19:20:34.014+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1898. {"@timestamp":"2025-01-15T19:20:59.022+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1899. {"@timestamp":"2025-01-15T19:21:24.028+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1900. {"@timestamp":"2025-01-15T19:21:49.032+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1901. {"@timestamp":"2025-01-15T19:22:14.036+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1902. {"@timestamp":"2025-01-15T19:22:39.038+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1903. {"@timestamp":"2025-01-15T19:23:04.041+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1904. {"@timestamp":"2025-01-15T19:23:29.045+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1905. {"@timestamp":"2025-01-15T19:23:54.048+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1906. {"@timestamp":"2025-01-15T19:24:19.051+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1907. {"@timestamp":"2025-01-15T19:24:44.054+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1908. {"@timestamp":"2025-01-15T19:25:09.059+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1909. {"@timestamp":"2025-01-15T19:25:34.062+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1910. {"@timestamp":"2025-01-15T19:25:59.066+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1911. {"@timestamp":"2025-01-15T19:26:24.071+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1912. {"@timestamp":"2025-01-15T19:26:49.074+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1913. {"@timestamp":"2025-01-15T19:27:14.078+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1914. {"@timestamp":"2025-01-15T19:27:39.082+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1915. {"@timestamp":"2025-01-15T19:28:04.086+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1916. {"@timestamp":"2025-01-15T19:28:29.090+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1917. {"@timestamp":"2025-01-15T19:28:54.094+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1918. {"@timestamp":"2025-01-15T19:29:19.100+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1919. {"@timestamp":"2025-01-15T19:29:44.105+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1920. {"@timestamp":"2025-01-15T19:30:09.110+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1921. {"@timestamp":"2025-01-15T19:30:34.115+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1922. {"@timestamp":"2025-01-15T19:30:59.119+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1923. {"@timestamp":"2025-01-15T19:31:24.124+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1924. {"@timestamp":"2025-01-15T19:31:49.129+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1925. {"@timestamp":"2025-01-15T19:32:14.134+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1926. {"@timestamp":"2025-01-15T19:32:39.139+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1927. {"@timestamp":"2025-01-15T19:33:04.144+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1928. {"@timestamp":"2025-01-15T19:33:29.149+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1929. {"@timestamp":"2025-01-15T19:33:54.155+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1930. {"@timestamp":"2025-01-15T19:34:19.160+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1931. {"@timestamp":"2025-01-15T19:34:44.166+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1932. {"@timestamp":"2025-01-15T19:35:09.078+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1933. {"@timestamp":"2025-01-15T19:35:34.082+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1934. {"@timestamp":"2025-01-15T19:35:59.086+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1935. {"@timestamp":"2025-01-15T19:36:24.090+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1936. {"@timestamp":"2025-01-15T19:36:49.094+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1937. {"@timestamp":"2025-01-15T19:37:14.098+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1938. {"@timestamp":"2025-01-15T19:37:39.101+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1939. {"@timestamp":"2025-01-15T19:38:04.105+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1940. {"@timestamp":"2025-01-15T19:38:29.110+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1941. {"@timestamp":"2025-01-15T19:38:54.114+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1942. {"@timestamp":"2025-01-15T19:39:19.119+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1943. {"@timestamp":"2025-01-15T19:39:44.123+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1944. {"@timestamp":"2025-01-15T19:40:09.128+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1945. {"@timestamp":"2025-01-15T19:40:34.132+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1946. {"@timestamp":"2025-01-15T19:40:59.137+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1947. {"@timestamp":"2025-01-15T19:41:24.141+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1948. {"@timestamp":"2025-01-15T19:41:49.145+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1949. {"@timestamp":"2025-01-15T19:42:14.150+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1950. {"@timestamp":"2025-01-15T19:42:39.154+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1951. {"@timestamp":"2025-01-15T19:43:04.162+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1952. {"@timestamp":"2025-01-15T19:43:29.165+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1953. {"@timestamp":"2025-01-15T19:43:54.166+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1954. {"@timestamp":"2025-01-15T19:44:19.167+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1955. {"@timestamp":"2025-01-15T19:44:44.170+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1956. {"@timestamp":"2025-01-15T19:45:09.174+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1957. {"@timestamp":"2025-01-15T19:45:34.178+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1958. {"@timestamp":"2025-01-15T19:45:59.182+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1959. {"@timestamp":"2025-01-15T19:46:24.185+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1960. {"@timestamp":"2025-01-15T19:46:49.188+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1961. {"@timestamp":"2025-01-15T19:47:14.193+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1962. {"@timestamp":"2025-01-15T19:47:39.198+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1963. {"@timestamp":"2025-01-15T19:48:04.202+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1964. {"@timestamp":"2025-01-15T19:48:29.205+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1965. {"@timestamp":"2025-01-15T19:48:54.211+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1966. {"@timestamp":"2025-01-15T19:49:19.216+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1967. {"@timestamp":"2025-01-15T19:49:44.221+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1968. {"@timestamp":"2025-01-15T19:50:09.293+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1969. {"@timestamp":"2025-01-15T19:50:34.297+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1970. {"@timestamp":"2025-01-15T19:50:59.303+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1971. {"@timestamp":"2025-01-15T19:51:24.309+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1972. {"@timestamp":"2025-01-15T19:51:49.314+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1973. {"@timestamp":"2025-01-15T19:52:14.316+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1974. {"@timestamp":"2025-01-15T19:52:39.321+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1975. {"@timestamp":"2025-01-15T19:53:04.326+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1976. {"@timestamp":"2025-01-15T19:53:29.330+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1977. {"@timestamp":"2025-01-15T19:53:54.336+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1978. {"@timestamp":"2025-01-15T19:54:19.340+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1979. {"@timestamp":"2025-01-15T19:54:44.345+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1980. {"@timestamp":"2025-01-15T19:55:09.350+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1981. {"@timestamp":"2025-01-15T19:55:34.354+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1982. {"@timestamp":"2025-01-15T19:55:59.359+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1983. {"@timestamp":"2025-01-15T19:56:24.365+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1984. {"@timestamp":"2025-01-15T19:56:49.369+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1985. {"@timestamp":"2025-01-15T19:57:14.373+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1986. {"@timestamp":"2025-01-15T19:57:39.379+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1987. {"@timestamp":"2025-01-15T19:58:04.383+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1988. {"@timestamp":"2025-01-15T19:58:29.387+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1989. {"@timestamp":"2025-01-15T19:58:54.392+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1990. {"@timestamp":"2025-01-15T19:59:19.396+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1991. {"@timestamp":"2025-01-15T19:59:44.401+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1992. {"@timestamp":"2025-01-15T20:00:09.407+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1993. {"@timestamp":"2025-01-15T20:00:34.411+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1994. {"@timestamp":"2025-01-15T20:00:59.417+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1995. {"@timestamp":"2025-01-15T20:01:24.422+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1996. {"@timestamp":"2025-01-15T20:01:49.427+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1997. {"@timestamp":"2025-01-15T20:02:14.433+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1998. {"@timestamp":"2025-01-15T20:02:39.438+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  1999. {"@timestamp":"2025-01-15T20:03:04.443+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2000. {"@timestamp":"2025-01-15T20:03:29.448+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2001. {"@timestamp":"2025-01-15T20:03:54.454+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2002. {"@timestamp":"2025-01-15T20:04:19.456+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2003. {"@timestamp":"2025-01-15T20:04:44.458+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2004. {"@timestamp":"2025-01-15T20:05:09.460+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2005. {"@timestamp":"2025-01-15T20:05:34.393+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2006. {"@timestamp":"2025-01-15T20:05:59.397+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2007. {"@timestamp":"2025-01-15T20:06:24.402+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2008. {"@timestamp":"2025-01-15T20:06:49.406+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2009. {"@timestamp":"2025-01-15T20:07:14.411+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2010. {"@timestamp":"2025-01-15T20:07:39.415+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2011. {"@timestamp":"2025-01-15T20:08:04.419+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2012. {"@timestamp":"2025-01-15T20:08:29.424+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2013. {"@timestamp":"2025-01-15T20:08:54.428+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2014. {"@timestamp":"2025-01-15T20:09:19.433+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2015. {"@timestamp":"2025-01-15T20:09:44.437+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2016. {"@timestamp":"2025-01-15T20:10:09.442+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2017. {"@timestamp":"2025-01-15T20:10:34.446+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2018. {"@timestamp":"2025-01-15T20:10:59.451+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2019. {"@timestamp":"2025-01-15T20:11:24.455+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2020. {"@timestamp":"2025-01-15T20:11:49.462+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2021. {"@timestamp":"2025-01-15T20:12:14.471+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2022. {"@timestamp":"2025-01-15T20:12:39.479+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2023. {"@timestamp":"2025-01-15T20:13:04.487+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2024. {"@timestamp":"2025-01-15T20:13:29.496+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2025. {"@timestamp":"2025-01-15T20:13:54.504+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2026. {"@timestamp":"2025-01-15T20:14:19.512+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2027. {"@timestamp":"2025-01-15T20:14:44.519+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2028. {"@timestamp":"2025-01-15T20:15:09.526+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2029. {"@timestamp":"2025-01-15T20:15:34.535+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2030. {"@timestamp":"2025-01-15T20:15:59.541+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2031. {"@timestamp":"2025-01-15T20:16:24.548+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2032. {"@timestamp":"2025-01-15T20:16:49.653+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2033. {"@timestamp":"2025-01-15T20:17:14.658+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2034. {"@timestamp":"2025-01-15T20:17:39.668+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2035. {"@timestamp":"2025-01-15T20:18:04.676+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2036. {"@timestamp":"2025-01-15T20:18:29.683+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2037. {"@timestamp":"2025-01-15T20:18:54.690+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2038. {"@timestamp":"2025-01-15T20:19:19.699+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2039. {"@timestamp":"2025-01-15T20:19:44.706+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2040. {"@timestamp":"2025-01-15T20:20:09.709+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2041. {"@timestamp":"2025-01-15T20:20:34.714+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2042. {"@timestamp":"2025-01-15T20:20:59.721+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2043. {"@timestamp":"2025-01-15T20:21:24.729+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2044. {"@timestamp":"2025-01-15T20:22:14.632+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2045. {"@timestamp":"2025-01-15T20:22:39.641+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2046. {"@timestamp":"2025-01-15T20:38:10.336+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2047. {"@timestamp":"2025-01-15T20:38:35.344+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2048. {"@timestamp":"2025-01-15T20:39:00.352+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2049. {"@timestamp":"2025-01-15T20:39:25.361+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2050. {"@timestamp":"2025-01-15T20:39:50.369+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2051. {"@timestamp":"2025-01-15T20:40:15.377+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2052. {"@timestamp":"2025-01-15T20:40:40.385+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2053. {"@timestamp":"2025-01-15T20:41:05.391+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2054. {"@timestamp":"2025-01-15T20:41:30.401+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2055. {"@timestamp":"2025-01-15T20:41:55.406+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2056. {"@timestamp":"2025-01-15T20:42:20.414+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2057. {"@timestamp":"2025-01-15T20:42:45.421+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2058. {"@timestamp":"2025-01-15T20:43:10.429+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2059. {"@timestamp":"2025-01-15T20:43:35.435+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2060. {"@timestamp":"2025-01-15T20:44:00.441+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2061. {"@timestamp":"2025-01-15T20:44:25.449+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2062. {"@timestamp":"2025-01-15T20:44:50.454+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2063. {"@timestamp":"2025-01-15T20:45:15.463+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2064. {"@timestamp":"2025-01-15T20:45:40.471+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2065. {"@timestamp":"2025-01-15T20:46:05.476+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2066. {"@timestamp":"2025-01-15T20:46:30.484+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2067. {"@timestamp":"2025-01-15T20:46:55.492+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2068. {"@timestamp":"2025-01-15T20:47:20.500+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2069. {"@timestamp":"2025-01-15T20:47:45.505+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2070. {"@timestamp":"2025-01-15T20:48:10.512+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2071. {"@timestamp":"2025-01-15T20:48:35.524+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2072. {"@timestamp":"2025-01-15T20:49:00.533+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2073. {"@timestamp":"2025-01-15T20:49:25.536+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2074. {"@timestamp":"2025-01-15T20:49:50.543+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2075. {"@timestamp":"2025-01-15T20:50:15.552+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2076. {"@timestamp":"2025-01-15T20:50:40.559+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2077. {"@timestamp":"2025-01-15T20:51:05.565+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2078. {"@timestamp":"2025-01-15T20:51:30.573+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2079. {"@timestamp":"2025-01-15T20:51:55.579+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2080. {"@timestamp":"2025-01-15T20:52:20.588+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2081. {"@timestamp":"2025-01-15T20:52:45.595+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2082. {"@timestamp":"2025-01-15T20:53:10.603+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2083. {"@timestamp":"2025-01-15T20:53:35.608+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2084. {"@timestamp":"2025-01-15T20:54:00.616+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2085. {"@timestamp":"2025-01-15T20:54:25.622+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2086. {"@timestamp":"2025-01-15T20:54:50.629+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2087. {"@timestamp":"2025-01-15T20:55:15.633+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2088. {"@timestamp":"2025-01-15T20:55:40.641+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2089. {"@timestamp":"2025-01-15T20:56:05.649+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2090. {"@timestamp":"2025-01-15T20:56:30.655+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2091. {"@timestamp":"2025-01-15T20:56:55.664+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2092. {"@timestamp":"2025-01-15T20:57:20.672+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2093. {"@timestamp":"2025-01-15T20:57:45.680+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2094. {"@timestamp":"2025-01-15T20:58:10.688+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2095. {"@timestamp":"2025-01-15T20:58:35.697+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2096. {"@timestamp":"2025-01-15T20:59:00.705+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2097. {"@timestamp":"2025-01-15T20:59:25.712+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2098. {"@timestamp":"2025-01-15T20:59:50.718+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2099. {"@timestamp":"2025-01-15T21:00:15.727+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2100. {"@timestamp":"2025-01-15T21:00:40.736+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2101. {"@timestamp":"2025-01-15T21:01:05.744+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2102. {"@timestamp":"2025-01-15T21:01:30.753+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2103. {"@timestamp":"2025-01-15T21:01:55.762+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2104. {"@timestamp":"2025-01-15T21:02:20.769+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2105. {"@timestamp":"2025-01-15T21:02:45.777+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2106. {"@timestamp":"2025-01-15T21:03:10.783+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2107. {"@timestamp":"2025-01-15T21:03:35.786+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2108. {"@timestamp":"2025-01-15T21:04:00.791+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2109. {"@timestamp":"2025-01-15T21:04:25.798+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2110. {"@timestamp":"2025-01-15T21:04:50.805+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2111. {"@timestamp":"2025-01-15T21:05:15.815+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2112. {"@timestamp":"2025-01-15T21:05:40.824+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2113. {"@timestamp":"2025-01-15T21:06:05.833+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2114. {"@timestamp":"2025-01-15T21:06:30.841+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2115. {"@timestamp":"2025-01-15T21:06:55.847+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2116. {"@timestamp":"2025-01-15T21:07:20.854+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2117. {"@timestamp":"2025-01-15T21:07:45.864+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2118. {"@timestamp":"2025-01-15T21:08:10.872+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2119. {"@timestamp":"2025-01-15T21:08:35.880+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2120. {"@timestamp":"2025-01-15T21:09:00.890+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2121. {"@timestamp":"2025-01-15T21:09:25.898+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2122. {"@timestamp":"2025-01-15T21:09:50.904+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2123. {"@timestamp":"2025-01-15T21:10:15.913+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2124. {"@timestamp":"2025-01-15T21:10:40.922+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2125. {"@timestamp":"2025-01-15T21:11:05.930+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2126. {"@timestamp":"2025-01-15T21:11:30.941+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2127. {"@timestamp":"2025-01-15T21:11:55.950+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2128. {"@timestamp":"2025-01-15T21:12:20.958+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2129. {"@timestamp":"2025-01-15T21:12:45.968+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2130. {"@timestamp":"2025-01-15T21:13:10.977+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2131. {"@timestamp":"2025-01-15T21:13:36.105+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2132. {"@timestamp":"2025-01-15T21:14:01.115+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2133. {"@timestamp":"2025-01-15T21:14:26.120+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2134. {"@timestamp":"2025-01-15T21:14:51.127+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2135. {"@timestamp":"2025-01-15T21:15:16.137+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2136. {"@timestamp":"2025-01-15T21:15:41.145+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2137. {"@timestamp":"2025-01-15T21:16:06.153+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2138. {"@timestamp":"2025-01-15T21:16:31.158+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2139. {"@timestamp":"2025-01-15T21:16:56.164+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2140. {"@timestamp":"2025-01-15T21:17:21.173+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2141. {"@timestamp":"2025-01-15T21:17:46.183+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2142. {"@timestamp":"2025-01-15T21:18:11.193+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2143. {"@timestamp":"2025-01-15T21:18:36.203+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2144. {"@timestamp":"2025-01-15T21:19:01.212+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2145. {"@timestamp":"2025-01-15T21:19:26.218+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2146. {"@timestamp":"2025-01-15T21:19:51.226+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2147. {"@timestamp":"2025-01-15T21:20:16.236+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2148. {"@timestamp":"2025-01-15T21:20:41.241+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2149. {"@timestamp":"2025-01-15T21:21:06.251+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2150. {"@timestamp":"2025-01-15T21:21:31.260+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2151. {"@timestamp":"2025-01-15T21:21:56.268+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2152. {"@timestamp":"2025-01-15T21:22:21.278+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2153. {"@timestamp":"2025-01-15T21:22:46.287+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2154. {"@timestamp":"2025-01-15T21:23:11.294+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2155. {"@timestamp":"2025-01-15T21:23:36.305+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2156. {"@timestamp":"2025-01-15T21:24:01.316+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2157. {"@timestamp":"2025-01-15T21:24:26.324+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2158. {"@timestamp":"2025-01-15T21:24:51.332+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2159. {"@timestamp":"2025-01-15T21:25:16.342+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2160. {"@timestamp":"2025-01-15T21:25:41.350+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2161. {"@timestamp":"2025-01-15T21:26:06.359+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2162. {"@timestamp":"2025-01-15T21:26:31.366+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2163. {"@timestamp":"2025-01-15T21:26:56.375+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2164. {"@timestamp":"2025-01-15T21:27:21.381+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2165. {"@timestamp":"2025-01-15T21:27:46.389+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2166. {"@timestamp":"2025-01-15T21:28:11.398+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2167. {"@timestamp":"2025-01-15T21:28:36.408+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2168. {"@timestamp":"2025-01-15T21:29:01.418+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2169. {"@timestamp":"2025-01-15T21:29:26.423+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2170. {"@timestamp":"2025-01-15T21:29:51.427+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2171. {"@timestamp":"2025-01-15T21:30:16.433+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2172. {"@timestamp":"2025-01-15T21:30:41.440+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2173. {"@timestamp":"2025-01-15T21:31:06.449+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2174. {"@timestamp":"2025-01-15T21:31:31.458+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2175. {"@timestamp":"2025-01-15T21:31:56.467+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2176. {"@timestamp":"2025-01-15T21:32:21.458+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2177. {"@timestamp":"2025-01-15T21:32:46.454+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2178. {"@timestamp":"2025-01-15T21:33:11.461+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2179. {"@timestamp":"2025-01-15T21:33:36.467+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2180. {"@timestamp":"2025-01-15T21:34:01.471+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2181. {"@timestamp":"2025-01-15T21:34:26.480+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2182. {"@timestamp":"2025-01-15T21:34:51.490+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2183. {"@timestamp":"2025-01-15T21:35:16.497+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2184. {"@timestamp":"2025-01-15T21:35:41.504+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2185. {"@timestamp":"2025-01-15T21:36:06.512+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2186. {"@timestamp":"2025-01-15T21:36:31.518+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2187. {"@timestamp":"2025-01-15T21:36:56.527+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2188. {"@timestamp":"2025-01-15T21:37:21.535+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2189. {"@timestamp":"2025-01-15T21:37:46.545+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2190. {"@timestamp":"2025-01-15T21:38:11.553+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2191. {"@timestamp":"2025-01-15T21:54:01.759+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2192. {"@timestamp":"2025-01-15T21:54:26.773+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2193. {"@timestamp":"2025-01-15T21:54:51.784+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2194. {"@timestamp":"2025-01-15T21:55:16.792+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2195. {"@timestamp":"2025-01-15T21:55:41.803+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2196. {"@timestamp":"2025-01-15T21:56:06.809+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2197. {"@timestamp":"2025-01-15T21:56:31.817+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2198. {"@timestamp":"2025-01-15T21:56:56.826+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2199. {"@timestamp":"2025-01-15T21:57:21.841+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2200. {"@timestamp":"2025-01-15T21:57:46.849+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2201. {"@timestamp":"2025-01-15T21:58:11.856+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2202. {"@timestamp":"2025-01-15T21:58:36.863+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2203. {"@timestamp":"2025-01-15T21:59:01.872+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2204. {"@timestamp":"2025-01-15T21:59:26.881+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2205. {"@timestamp":"2025-01-15T21:59:51.888+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2206. {"@timestamp":"2025-01-15T22:00:16.896+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2207. {"@timestamp":"2025-01-15T22:00:41.904+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2208. {"@timestamp":"2025-01-15T22:01:06.911+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2209. {"@timestamp":"2025-01-15T22:01:31.920+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2210. {"@timestamp":"2025-01-15T22:01:56.927+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2211. {"@timestamp":"2025-01-15T22:02:21.936+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2212. {"@timestamp":"2025-01-15T22:02:46.944+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2213. {"@timestamp":"2025-01-15T22:03:11.954+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2214. {"@timestamp":"2025-01-15T22:03:36.960+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2215. {"@timestamp":"2025-01-15T22:04:01.969+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2216. {"@timestamp":"2025-01-15T22:04:26.979+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2217. {"@timestamp":"2025-01-15T22:04:51.987+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2218. {"@timestamp":"2025-01-15T22:05:16.996+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2219. {"@timestamp":"2025-01-15T22:05:42.005+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2220. {"@timestamp":"2025-01-15T22:06:07.015+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2221. {"@timestamp":"2025-01-15T22:06:32.024+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2222. {"@timestamp":"2025-01-15T22:06:57.030+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2223. {"@timestamp":"2025-01-15T22:07:22.033+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2224. {"@timestamp":"2025-01-15T22:07:47.040+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2225. {"@timestamp":"2025-01-15T22:08:12.049+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2226. {"@timestamp":"2025-01-15T22:08:37.056+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2227. {"@timestamp":"2025-01-15T22:09:02.062+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2228. {"@timestamp":"2025-01-15T22:09:27.073+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2229. {"@timestamp":"2025-01-15T22:09:52.079+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2230. {"@timestamp":"2025-01-15T22:10:17.087+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2231. {"@timestamp":"2025-01-15T22:10:42.095+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2232. {"@timestamp":"2025-01-15T22:11:07.104+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2233. {"@timestamp":"2025-01-15T22:11:32.112+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2234. {"@timestamp":"2025-01-15T22:11:57.118+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2235. {"@timestamp":"2025-01-15T22:12:22.125+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2236. {"@timestamp":"2025-01-15T22:12:47.134+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2237. {"@timestamp":"2025-01-15T22:13:12.143+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2238. {"@timestamp":"2025-01-15T22:13:37.151+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2239. {"@timestamp":"2025-01-15T22:14:02.158+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2240. {"@timestamp":"2025-01-15T22:14:27.167+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2241. {"@timestamp":"2025-01-15T22:14:52.176+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2242. {"@timestamp":"2025-01-15T22:15:17.185+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2243. {"@timestamp":"2025-01-15T22:15:42.195+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2244. {"@timestamp":"2025-01-15T22:16:07.203+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2245. {"@timestamp":"2025-01-15T22:16:32.210+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2246. {"@timestamp":"2025-01-15T22:16:57.218+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2247. {"@timestamp":"2025-01-15T22:17:22.226+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2248. {"@timestamp":"2025-01-15T22:17:47.233+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2249. {"@timestamp":"2025-01-15T22:18:12.241+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2250. {"@timestamp":"2025-01-15T22:18:37.250+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2251. {"@timestamp":"2025-01-15T22:19:02.259+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2252. {"@timestamp":"2025-01-15T22:19:27.267+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2253. {"@timestamp":"2025-01-15T22:19:52.277+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2254. {"@timestamp":"2025-01-15T22:20:17.287+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2255. {"@timestamp":"2025-01-15T22:20:42.295+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2256. {"@timestamp":"2025-01-15T22:21:07.300+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2257. {"@timestamp":"2025-01-15T22:21:32.305+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2258. {"@timestamp":"2025-01-15T22:21:57.314+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2259. {"@timestamp":"2025-01-15T22:22:22.319+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2260. {"@timestamp":"2025-01-15T22:22:47.327+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2261. {"@timestamp":"2025-01-15T22:23:12.335+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2262. {"@timestamp":"2025-01-15T22:23:37.344+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2263. {"@timestamp":"2025-01-15T22:24:02.351+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2264. {"@timestamp":"2025-01-15T22:24:27.358+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2265. {"@timestamp":"2025-01-15T22:24:52.367+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2266. {"@timestamp":"2025-01-15T22:25:17.377+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2267. {"@timestamp":"2025-01-15T22:25:42.386+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2268. {"@timestamp":"2025-01-15T22:26:07.392+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2269. {"@timestamp":"2025-01-15T22:26:32.398+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2270. {"@timestamp":"2025-01-15T22:26:57.408+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2271. {"@timestamp":"2025-01-15T22:27:22.418+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2272. {"@timestamp":"2025-01-15T22:27:47.427+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2273. {"@timestamp":"2025-01-15T22:28:12.435+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2274. {"@timestamp":"2025-01-15T22:28:37.445+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2275. {"@timestamp":"2025-01-15T22:29:02.453+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2276. {"@timestamp":"2025-01-15T22:29:27.461+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2277. {"@timestamp":"2025-01-15T22:29:52.470+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2278. {"@timestamp":"2025-01-15T22:30:17.476+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2279. {"@timestamp":"2025-01-15T22:30:42.486+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2280. {"@timestamp":"2025-01-15T22:31:07.495+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2281. {"@timestamp":"2025-01-15T22:31:32.503+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2282. {"@timestamp":"2025-01-15T22:31:57.511+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2283. {"@timestamp":"2025-01-15T22:32:22.520+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2284. {"@timestamp":"2025-01-15T22:32:47.526+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2285. {"@timestamp":"2025-01-15T22:33:12.535+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2286. {"@timestamp":"2025-01-15T22:33:37.544+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2287. {"@timestamp":"2025-01-15T22:34:02.552+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2288. {"@timestamp":"2025-01-15T22:34:27.559+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2289. {"@timestamp":"2025-01-15T22:34:52.564+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2290. {"@timestamp":"2025-01-15T22:35:17.571+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2291. {"@timestamp":"2025-01-15T22:35:42.579+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2292. {"@timestamp":"2025-01-15T22:36:07.587+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2293. {"@timestamp":"2025-01-15T22:36:32.594+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2294. {"@timestamp":"2025-01-15T22:36:57.602+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2295. {"@timestamp":"2025-01-15T22:37:22.610+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2296. {"@timestamp":"2025-01-15T22:37:47.618+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2297. {"@timestamp":"2025-01-15T22:38:12.624+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2298. {"@timestamp":"2025-01-15T22:38:37.631+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2299. {"@timestamp":"2025-01-15T22:39:02.639+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2300. {"@timestamp":"2025-01-15T22:39:27.647+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2301. {"@timestamp":"2025-01-15T22:39:52.652+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2302. {"@timestamp":"2025-01-15T22:40:17.659+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2303. {"@timestamp":"2025-01-15T22:40:42.667+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2304. {"@timestamp":"2025-01-15T22:41:07.675+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2305. {"@timestamp":"2025-01-15T22:41:32.685+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2306. {"@timestamp":"2025-01-15T22:41:57.696+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2307. {"@timestamp":"2025-01-15T22:42:22.704+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2308. {"@timestamp":"2025-01-15T22:42:47.712+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2309. {"@timestamp":"2025-01-15T22:43:12.720+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2310. {"@timestamp":"2025-01-15T22:43:37.727+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2311. {"@timestamp":"2025-01-15T22:44:02.735+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2312. {"@timestamp":"2025-01-15T22:44:27.743+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2313. {"@timestamp":"2025-01-15T22:44:52.752+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2314. {"@timestamp":"2025-01-15T22:45:17.762+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2315. {"@timestamp":"2025-01-15T22:45:42.769+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2316. {"@timestamp":"2025-01-15T22:46:07.777+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2317. {"@timestamp":"2025-01-15T22:46:32.786+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2318. {"@timestamp":"2025-01-15T22:46:57.794+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2319. {"@timestamp":"2025-01-15T22:47:22.803+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2320. {"@timestamp":"2025-01-15T22:47:47.812+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2321. {"@timestamp":"2025-01-15T22:48:12.819+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2322. {"@timestamp":"2025-01-15T22:48:37.826+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2323. {"@timestamp":"2025-01-15T22:49:02.832+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2324. {"@timestamp":"2025-01-15T22:49:27.840+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2325. {"@timestamp":"2025-01-15T22:49:52.849+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2326. {"@timestamp":"2025-01-15T22:50:17.856+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2327. {"@timestamp":"2025-01-15T22:50:42.866+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2328. {"@timestamp":"2025-01-15T22:51:07.873+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2329. {"@timestamp":"2025-01-15T22:51:32.881+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2330. {"@timestamp":"2025-01-15T22:51:57.889+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2331. {"@timestamp":"2025-01-15T22:52:22.899+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2332. {"@timestamp":"2025-01-15T22:52:47.904+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2333. {"@timestamp":"2025-01-15T22:53:12.915+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2334. {"@timestamp":"2025-01-15T22:53:37.923+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2335. {"@timestamp":"2025-01-15T22:54:02.931+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2336. {"@timestamp":"2025-01-15T22:54:27.940+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2337. {"@timestamp":"2025-01-15T22:54:52.945+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2338. {"@timestamp":"2025-01-15T22:55:17.954+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2339. {"@timestamp":"2025-01-15T22:55:42.964+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2340. {"@timestamp":"2025-01-15T23:06:18.438+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2341. {"@timestamp":"2025-01-15T23:06:43.433+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2342. {"@timestamp":"2025-01-15T23:07:08.438+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2343. {"@timestamp":"2025-01-15T23:07:33.443+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2344. {"@timestamp":"2025-01-15T23:07:58.449+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2345. {"@timestamp":"2025-01-15T23:08:23.455+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2346. {"@timestamp":"2025-01-15T23:08:48.460+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2347. {"@timestamp":"2025-01-15T23:09:13.466+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2348. {"@timestamp":"2025-01-15T23:09:38.479+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2349. {"@timestamp":"2025-01-15T23:10:03.485+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2350. {"@timestamp":"2025-01-15T23:10:28.490+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2351. {"@timestamp":"2025-01-15T23:10:53.495+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2352. {"@timestamp":"2025-01-15T23:11:18.502+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2353. {"@timestamp":"2025-01-15T23:11:43.506+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2354. {"@timestamp":"2025-01-15T23:12:08.511+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2355. {"@timestamp":"2025-01-15T23:12:33.517+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2356. {"@timestamp":"2025-01-15T23:12:58.523+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2357. {"@timestamp":"2025-01-15T23:13:23.528+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2358. {"@timestamp":"2025-01-15T23:13:48.535+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2359. {"@timestamp":"2025-01-15T23:14:13.541+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2360. {"@timestamp":"2025-01-15T23:14:38.545+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: i/o timeout\"","level":"error"}
  2361. {"@timestamp":"2025-01-15T23:14:53.548+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  2362. {"@timestamp":"2025-01-15T23:15:18.552+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  2363. {"@timestamp":"2025-01-15T23:15:43.556+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  2364. {"@timestamp":"2025-01-15T23:16:08.561+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  2365. {"@timestamp":"2025-01-15T23:16:33.565+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  2366. {"@timestamp":"2025-01-15T23:16:58.570+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  2367. {"@timestamp":"2025-01-15T23:17:23.577+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  2368. {"@timestamp":"2025-01-15T23:17:48.583+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  2369. {"@timestamp":"2025-01-15T23:18:13.589+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  2370. {"@timestamp":"2025-01-15T23:18:38.595+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  2371. {"@timestamp":"2025-01-15T23:19:03.601+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  2372. {"@timestamp":"2025-01-15T23:19:28.607+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  2373. {"@timestamp":"2025-01-15T23:19:53.613+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  2374. {"@timestamp":"2025-01-15T23:20:18.619+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  2375. {"@timestamp":"2025-01-15T23:20:43.626+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  2376. {"@timestamp":"2025-01-15T23:21:08.631+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  2377. {"@timestamp":"2025-01-15T23:21:33.637+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  2378. {"@timestamp":"2025-01-15T23:21:58.642+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  2379. {"@timestamp":"2025-01-15T23:22:23.571+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  2380. {"@timestamp":"2025-01-15T23:22:48.576+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  2381. {"@timestamp":"2025-01-15T23:23:13.582+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  2382. {"@timestamp":"2025-01-15T23:23:38.588+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  2383. {"@timestamp":"2025-01-15T23:24:03.591+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  2384. {"@timestamp":"2025-01-15T23:24:28.595+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  2385. {"@timestamp":"2025-01-15T23:24:53.601+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  2386. {"@timestamp":"2025-01-15T23:25:18.607+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  2387. {"@timestamp":"2025-01-15T23:25:43.611+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  2388. {"@timestamp":"2025-01-15T23:26:08.617+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  2389. {"@timestamp":"2025-01-15T23:26:33.622+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  2390. {"@timestamp":"2025-01-15T23:26:58.628+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  2391. {"@timestamp":"2025-01-15T23:27:23.632+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  2392. {"@timestamp":"2025-01-15T23:27:48.637+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  2393. {"@timestamp":"2025-01-15T23:28:13.641+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  2394. {"@timestamp":"2025-01-15T23:28:38.647+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  2395. {"@timestamp":"2025-01-15T23:29:03.652+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  2396. {"@timestamp":"2025-01-15T23:29:28.658+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  2397. {"@timestamp":"2025-01-15T23:29:53.664+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  2398. {"@timestamp":"2025-01-15T23:30:18.670+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  2399. {"@timestamp":"2025-01-15T23:30:43.675+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  2400. {"@timestamp":"2025-01-15T23:31:08.681+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  2401. {"@timestamp":"2025-01-15T23:31:33.687+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  2402. {"@timestamp":"2025-01-15T23:31:58.692+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  2403. {"@timestamp":"2025-01-15T23:32:23.698+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  2404. {"@timestamp":"2025-01-15T23:32:48.704+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  2405. {"@timestamp":"2025-01-15T23:33:13.709+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  2406. {"@timestamp":"2025-01-15T23:33:38.715+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  2407. {"@timestamp":"2025-01-15T23:34:03.721+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  2408. {"@timestamp":"2025-01-15T23:34:28.729+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  2409. {"@timestamp":"2025-01-15T23:34:53.731+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  2410. {"@timestamp":"2025-01-15T23:35:18.734+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  2411. {"@timestamp":"2025-01-15T23:35:43.738+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  2412. {"@timestamp":"2025-01-15T23:36:08.742+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  2413. {"@timestamp":"2025-01-15T23:36:33.748+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  2414. {"@timestamp":"2025-01-15T23:36:58.753+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  2415. {"@timestamp":"2025-01-15T23:37:23.758+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  2416. {"@timestamp":"2025-01-15T23:37:48.763+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  2417. {"@timestamp":"2025-01-15T23:38:13.768+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  2418. {"@timestamp":"2025-01-15T23:38:38.774+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  2419. {"@timestamp":"2025-01-15T23:39:03.780+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  2420. {"@timestamp":"2025-01-15T23:39:28.784+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  2421. {"@timestamp":"2025-01-15T23:39:53.789+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  2422. {"@timestamp":"2025-01-15T23:40:18.794+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  2423. {"@timestamp":"2025-01-15T23:40:43.800+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  2424. {"@timestamp":"2025-01-15T23:41:08.807+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  2425. {"@timestamp":"2025-01-15T23:41:33.812+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  2426. {"@timestamp":"2025-01-15T23:41:58.817+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  2427. {"@timestamp":"2025-01-15T23:42:23.823+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  2428. {"@timestamp":"2025-01-15T23:42:48.829+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  2429. {"@timestamp":"2025-01-15T23:43:13.836+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  2430. {"@timestamp":"2025-01-15T23:43:38.842+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  2431. {"@timestamp":"2025-01-15T23:44:03.848+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  2432. {"@timestamp":"2025-01-15T23:44:28.853+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  2433. {"@timestamp":"2025-01-15T23:44:53.858+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  2434. {"@timestamp":"2025-01-15T23:45:18.864+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  2435. {"@timestamp":"2025-01-15T23:45:43.869+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  2436. {"@timestamp":"2025-01-15T23:46:08.874+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  2437. {"@timestamp":"2025-01-15T23:46:33.880+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  2438. {"@timestamp":"2025-01-15T23:46:58.886+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  2439. {"@timestamp":"2025-01-15T23:47:23.891+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  2440. {"@timestamp":"2025-01-15T23:47:48.897+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  2441. {"@timestamp":"2025-01-15T23:48:13.902+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  2442. {"@timestamp":"2025-01-15T23:48:38.907+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  2443. {"@timestamp":"2025-01-15T23:49:03.913+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  2444. {"@timestamp":"2025-01-15T23:49:28.920+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  2445. {"@timestamp":"2025-01-15T23:49:53.926+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  2446. {"@timestamp":"2025-01-15T23:50:18.931+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  2447. {"@timestamp":"2025-01-15T23:50:43.936+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  2448. {"@timestamp":"2025-01-15T23:51:08.943+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  2449. {"@timestamp":"2025-01-15T23:51:33.947+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  2450. {"@timestamp":"2025-01-15T23:51:58.950+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  2451. {"@timestamp":"2025-01-15T23:52:23.955+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  2452. {"@timestamp":"2025-01-15T23:52:48.961+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  2453. {"@timestamp":"2025-01-15T23:53:13.968+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  2454. {"@timestamp":"2025-01-15T23:53:38.972+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  2455. {"@timestamp":"2025-01-15T23:54:03.977+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  2456. {"@timestamp":"2025-01-15T23:54:28.982+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  2457. {"@timestamp":"2025-01-15T23:54:53.987+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  2458. {"@timestamp":"2025-01-15T23:55:18.990+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  2459. {"@timestamp":"2025-01-15T23:55:43.994+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  2460. {"@timestamp":"2025-01-15T23:56:08.999+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  2461. {"@timestamp":"2025-01-15T23:56:34.004+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  2462. {"@timestamp":"2025-01-15T23:56:59.009+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  2463. {"@timestamp":"2025-01-15T23:57:24.014+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  2464. {"@timestamp":"2025-01-15T23:57:49.018+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  2465. {"@timestamp":"2025-01-15T23:58:14.022+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  2466. {"@timestamp":"2025-01-15T23:58:39.028+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  2467. {"@timestamp":"2025-01-15T23:59:04.034+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  2468. {"@timestamp":"2025-01-15T23:59:29.038+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}
  2469. {"@timestamp":"2025-01-15T23:59:54.044+08:00","caller":"kq/queue.go:272","content":"Error on reading message, \"failed to dial: failed to open connection to 192.168.2.11:9092: dial tcp 192.168.2.11:9092: connect: host is down\"","level":"error"}