123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469 |
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
- {"@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"}
|