out.log 152 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268
  1. -test.shuffle 1761727910995605572
  2. DEBU 2025-10-29 11:51:50.996 +03 MSK kernelWg.GetKernelWg(): run
  3. DEBU 2025-10-29 11:51:50.996 +03 MSK kernelKeeper.GetKernelKeeper(): first run
  4. DEBU 2025-10-29 11:51:50.996 +03 MSK kernelWg.Add(): stream='kernel_keeper'
  5. DEBU 2025-10-29 11:51:50.996 +03 MSK kStoreKv.open()
  6. DEBU 2025-10-29 11:51:50.996 +03 MSK kernelKeeper.run()
  7. badger 2025/10/29 11:51:51 INFO: All 0 tables opened in 0s
  8. badger 2025/10/29 11:51:51 INFO: Discard stats nextEmptySlot: 0
  9. badger 2025/10/29 11:51:51 INFO: Set nextTxnTs to 0
  10. DEBU 2025-10-29 11:51:51.012 +03 MSK kernelWg.Add(): stream='kstore_kv'
  11. DEBU 2025-10-29 11:51:51.012 +03 MSK LocalCtx.Set(): key='kernStoreKV'
  12. DEBU 2025-10-29 11:51:51.012 +03 MSK kStoreKv.Delete(): key='test_builders'
  13. DEBU 2025-10-29 11:51:51.012 +03 MSK LocalCtx.Set(): key='monolitName'
  14. DEBU 2025-10-29 11:51:51.012 +03 MSK kernelWg.Add(): stream='bus_base'
  15. DEBU 2025-10-29 11:51:51.012 +03 MSK LocalCtx.Set(): key='kernBusBase'
  16. DEBU 2025-10-29 11:51:51.012 +03 MSK kBusHttp.GetKernelBusHttp(): new
  17. DEBU 2025-10-29 11:51:51.012 +03 MSK LocalCtx.Set(): key='kernBus'
  18. DEBU 2025-10-29 11:51:51.012 +03 MSK kServHttp.GetKernelServHttp(): first run
  19. DEBU 2025-10-29 11:51:51.012 +03 MSK LocalCtx.KBusBase.run()
  20. DEBU 2025-10-29 11:51:51.012 +03 MSK LocalCtx.Get(): key='monolitName'
  21. DEBU 2025-10-29 11:51:51.012 +03 MSK LocalCtx.Get(): key='monolitName'
  22. DEBU 2025-10-29 11:51:51.012 +03 MSK LocalCtx.Get(): key='monolitName'
  23. DEBU 2025-10-29 11:51:51.122 +03 MSK kernelWg.Add(): stream='kernel_server_http'
  24. DEBU 2025-10-29 11:51:51.122 +03 MSK LocalCtx.Set(): key='fiberApp'
  25. DEBU 2025-10-29 11:51:51.122 +03 MSK LocalCtx.Set(): key='kServHttp'
  26. DEBU 2025-10-29 11:51:51.122 +03 MSK LocalCtx.Set(): key='isLocal'
  27. DEBU 2025-10-29 11:51:51.123 +03 MSK LocalCtx.Get(): key='isLocal'
  28. DEBU 2025-10-29 11:51:51.123 +03 MSK LocalCtx.Get(): key='isLocal'
  29. DEBU 2025-10-29 11:51:51.123 +03 MSK LocalCtx.Set(): key='monolitName'
  30. DEBU 2025-10-29 11:51:51.123 +03 MSK LocalCtx.Set(): key='monolit'
  31. DEBU 2025-10-29 11:51:51.123 +03 MSK LocalCtx.Set(): key='monolitName'
  32. DEBU 2025-10-29 11:51:51.123 +03 MSK LocalCtx.Set(): key='isLocal'
  33. DEBU 2025-10-29 11:51:51.124 +03 MSK LocalCtx.Get(): key='isLocal'
  34. DEBU 2025-10-29 11:51:51.124 +03 MSK ClientBusHttp.NewClientBusHttp()
  35. DEBU 2025-10-29 11:51:51.124 +03 MSK LocalCtx.KBusBase.Publish(): topic='test_mod_live'
  36. DEBU 2025-10-29 11:51:51.124 +03 MSK kServHttp.GetKernelServHttp()
  37. DEBU 2025-10-29 11:51:51.124 +03 MSK LocalCtx.Set(): key='wui_IHN6IX4VNUMZVJ4YOZE6QSMIEG'
  38. DEBU 2025-10-29 11:51:51.124 +03 MSK LocalCtx.Set(): key='wui_PW6JZGEVPW6LHKITSKT4OBQIR4'
  39. DEBU 2025-10-29 11:51:51.124 +03 MSK LocalCtx.KBusBase.Publish(): topic='kServHttp_live'
  40. DEBU 2025-10-29 11:51:51.125 +03 MSK LocalCtx.Get(): key='fiberApp'
  41. DEBU 2025-10-29 11:51:51.125 +03 MSK LocalCtx.Get(): key='fiberApp'
  42. DEBU 2025-10-29 11:51:51.125 +03 MSK LocalCtx.Get(): key='fiberApp'
  43. DEBU 2025-10-29 11:51:51.125 +03 MSK kServHttp.GetKernelServHttp()
  44. DEBU 2025-10-29 11:51:51.125 +03 MSK LocalCtx.Get(): key='fiberApp'
  45. DEBU 2025-10-29 11:51:51.125 +03 MSK kServHttp.GetKernelServHttp()
  46. DEBU 2025-10-29 11:51:51.125 +03 MSK LocalCtx.Get(): key='fiberApp'
  47. DEBU 2025-10-29 11:51:51.125 +03 MSK kServHttp.GetKernelServHttp()
  48. DEBU 2025-10-29 11:51:51.125 +03 MSK LocalCtx.Get(): key='fiberApp'
  49. DEBU 2025-10-29 11:51:51.125 +03 MSK LocalCtx.KBusBase.Publish(): topic='kCtx_live'
  50. DEBU 2025-10-29 11:51:51.125 +03 MSK LocalCtx.Get(): key='fiberApp'
  51. DEBU 2025-10-29 11:51:51.125 +03 MSK kServHttp.GetKernelServHttp()
  52. DEBU 2025-10-29 11:51:51.125 +03 MSK LocalCtx.KBusBase.Publish(): topic='kKeeper_live'
  53. DEBU 2025-10-29 11:51:51.125 +03 MSK kServHttp.Run(): url='http://localhost:18311/'
  54. DEBU 2025-10-29 11:51:51.125 +03 MSK LocalCtx.kCtx.Cancel()
  55. DEBU 2025-10-29 11:51:51.125 +03 MSK LocalCtx.KBusBase.Publish(): topic='wui_live'
  56. DEBU 2025-10-29 11:51:51.125 +03 MSK kernelKeeper.run(): cancel app context, err=
  57. context canceled
  58. DEBU 2025-10-29 11:51:51.125 +03 MSK kernelWg.Done(): stream(kernel_keeper) done
  59. DEBU 2025-10-29 11:51:51.125 +03 MSK LocalCtx.kCtx.Done()
  60. DEBU 2025-10-29 11:51:51.125 +03 MSK kernelKeeper.run(): end
  61. DEBU 2025-10-29 11:51:51.125 +03 MSK LocalCtx.kCtx.Done()
  62. DEBU 2025-10-29 11:51:51.125 +03 MSK kernelWg.Done(): stream(bus_base) done
  63. DEBU 2025-10-29 11:51:51.125 +03 MSK LocalCtx.KBusBase.close(): done
  64. DEBU 2025-10-29 11:51:51.125 +03 MSK LocalCtx.kCtx.Done()
  65. ┌───────────────────────────────────────────────────┐
  66. │ unknown monolit │
  67. │ Fiber v2.52.9 │
  68. │ http://127.0.0.1:18311 │
  69. │ (bound on host 0.0.0.0 and port 18311) │
  70. │ │
  71. │ Handlers ............ 25 Processes ........... 1 │
  72. │ Prefork ....... Disabled PID ........... 1031091 │
  73. └───────────────────────────────────────────────────┘
  74. method | path | name | handlers
  75. ------ | ---- | ---- | --------
  76. OPTIONS | / | | github.com/gofiber/fiber/v2/middleware/compress.New.func3
  77. GET | / | | github.com/gofiber/fiber/v2/middleware/compress.New.func3
  78. PUT | / | | github.com/gofiber/fiber/v2/middleware/compress.New.func3
  79. CONNECT | / | | github.com/gofiber/fiber/v2/middleware/compress.New.func3
  80. HEAD | / | | github.com/gofiber/fiber/v2/middleware/compress.New.func3
  81. TRACE | / | | github.com/gofiber/fiber/v2/middleware/compress.New.func3
  82. DELETE | / | | github.com/gofiber/fiber/v2/middleware/compress.New.func3
  83. POST | / | | github.com/gofiber/fiber/v2/middleware/compress.New.func3
  84. PATCH | / | | github.com/gofiber/fiber/v2/middleware/compress.New.func3
  85. POST | /api_time | | gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_serv_http/http_api.(*HttpApi).postTime-fm gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_serv_http/http_api.(*HttpApi).postTime-fm gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_serv_http/http_api.(*HttpApi).postTime-fm gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_serv_http/http_api.(*HttpApi).postTime-fm
  86. POST | /bus/pub | | gitp78su.ipnodns.ru/svi/kern/v3/krn/kbus/kbus_http.(*kBusHttp).postPublish-fm
  87. POST | /bus/request | | gitp78su.ipnodns.ru/svi/kern/v3/krn/kbus/kbus_http.(*kBusHttp).postSendRequest-fm
  88. POST | /bus/sub | | gitp78su.ipnodns.ru/svi/kern/v3/krn/kbus/kbus_http.(*kBusHttp).postSub-fm
  89. POST | /bus/unsub | | gitp78su.ipnodns.ru/svi/kern/v3/krn/kbus/kbus_http.(*kBusHttp).postUnsub-fm
  90. POST | /module/:id | | gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_serv_http/page_module.(*PageModule).postModule-fm
  91. POST | /module_ctx/:id | | gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_serv_http/page_module.(*PageModule).postModuleCtx-fm
  92. POST | /module_log/:id | | gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_serv_http/page_module.(*PageModule).postModuleLog-fm
  93. POST | /module_state/:id | | gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_serv_http/page_module.(*PageModule).postModuleState-fm
  94. POST | /module_svg_day/svg_day_:id.svg | | gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_serv_http/page_module.(*PageModule).postSvgDay-fm
  95. POST | /module_svg_min/svg_min_:id.svg | | gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_serv_http/page_module.(*PageModule).postSvgMin-fm
  96. POST | /module_svg_sec/svg_sec_:id.svg | | gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_serv_http/page_module.(*PageModule).postSvgSec-fm
  97. HEAD | /monitor | | github.com/gofiber/fiber/v2/middleware/monitor.New.func2
  98. GET | /monitor | | github.com/gofiber/fiber/v2/middleware/monitor.New.func2
  99. HEAD | /monolit | | gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_serv_http/page_monolit.(*PageMonolit).getMonolit-fm
  100. GET | /monolit | | gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_serv_http/page_monolit.(*PageMonolit).getMonolit-fm
  101. POST | /monolit_ctx | | gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_serv_http/page_monolit.(*PageMonolit).postMonolitCtx-fm
  102. POST | /monolit_log | | gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_serv_http/page_monolit.(*PageMonolit).postMonolitLog-fm
  103. POST | /monolit_state | | gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_serv_http/page_monolit.(*PageMonolit).postMonolitState-fm
  104. POST | /static | | github.com/gofiber/fiber/v2/middleware/filesystem.New.func1
  105. DELETE | /static | | github.com/gofiber/fiber/v2/middleware/filesystem.New.func1
  106. PUT | /static | | github.com/gofiber/fiber/v2/middleware/filesystem.New.func1
  107. CONNECT | /static | | github.com/gofiber/fiber/v2/middleware/filesystem.New.func1
  108. OPTIONS | /static | | github.com/gofiber/fiber/v2/middleware/filesystem.New.func1
  109. HEAD | /static | | github.com/gofiber/fiber/v2/middleware/filesystem.New.func1
  110. TRACE | /static | | github.com/gofiber/fiber/v2/middleware/filesystem.New.func1
  111. GET | /static | | github.com/gofiber/fiber/v2/middleware/filesystem.New.func1
  112. PATCH | /static | | github.com/gofiber/fiber/v2/middleware/filesystem.New.func1
  113. POST | /wui/click/:id | | gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_wui.GetModuleWui.HTTPHandlerFunc.HTTPHandler.func1
  114. coverage: 100.0% of statements
  115. panic: test timed out after 30s
  116. running tests:
  117. TestBuilders (30s)
  118. goroutine 147 [running]:
  119. testing.(*M).startAlarm.func1()
  120. /home/user/coding/go/src/testing/testing.go:2682 +0x605
  121. created by time.goFunc
  122. /home/user/coding/go/src/time/sleep.go:215 +0x45
  123. goroutine 1 [chan receive]:
  124. testing.(*T).Run(0xc000250380, {0x12a96be, 0xc}, 0x1682250)
  125. /home/user/coding/go/src/testing/testing.go:2005 +0x9fe
  126. testing.runTests.func1(0xc000250380)
  127. /home/user/coding/go/src/testing/testing.go:2477 +0x86
  128. testing.tRunner(0xc000250380, 0xc000059ae0)
  129. /home/user/coding/go/src/testing/testing.go:1934 +0x21d
  130. testing.runTests(0xc0000127f8, {0x1e1b980, 0x1, 0x1}, {0x2?, 0x4ba965?, 0x1e404a0?})
  131. /home/user/coding/go/src/testing/testing.go:2475 +0x96d
  132. testing.(*M).Run(0xc0000d7680)
  133. /home/user/coding/go/src/testing/testing.go:2337 +0xed5
  134. main.main()
  135. _testmain.go:55 +0x165
  136. goroutine 66 [select]:
  137. github.com/dgraph-io/badger/v4.(*levelsController).runCompactor(0xc0001bc150, 0x0, 0xc0002aef00)
  138. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/dgraph-io/badger/v4/levels.go:507 +0x4ac
  139. created by github.com/dgraph-io/badger/v4.(*levelsController).startCompact in goroutine 8
  140. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/dgraph-io/badger/v4/levels.go:348 +0x7e
  141. goroutine 8 [sleep]:
  142. time.Sleep(0xf4240)
  143. /home/user/coding/go/src/runtime/time.go:363 +0x165
  144. gitp78su.ipnodns.ru/svi/kern/v3/kc/helpers.SleepMs(...)
  145. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/kc/helpers/helpers.go:64
  146. gitp78su.ipnodns.ru/svi/kern/v3/krn/kctx/kwg.(*kernelWg).Wait(0xc000230af0)
  147. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/krn/kctx/kwg/kwg.go:93 +0x30
  148. gitp78su.ipnodns.ru/svi/kern/v3.(*tester).new(0xc000299ec0)
  149. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/kern_test.go:162 +0xfbc
  150. gitp78su.ipnodns.ru/svi/kern/v3.TestBuilders(0xc000250540)
  151. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/kern_test.go:32 +0x16f
  152. testing.tRunner(0xc000250540, 0x1682250)
  153. /home/user/coding/go/src/testing/testing.go:1934 +0x21d
  154. created by testing.(*T).Run in goroutine 1
  155. /home/user/coding/go/src/testing/testing.go:1997 +0x9d3
  156. goroutine 9 [sleep]:
  157. time.Sleep(0xf4240)
  158. /home/user/coding/go/src/runtime/time.go:363 +0x165
  159. gitp78su.ipnodns.ru/svi/kern/v3/kc/helpers.SleepMs(...)
  160. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/kc/helpers/helpers.go:64
  161. gitp78su.ipnodns.ru/svi/kern/v3/krn/kctx/kwg.(*kernelWg).close(0xc000230af0)
  162. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/krn/kctx/kwg/kwg.go:126 +0xa5
  163. created by gitp78su.ipnodns.ru/svi/kern/v3/krn/kctx/kwg.GetKernelWg in goroutine 8
  164. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/krn/kctx/kwg/kwg.go:48 +0x47d
  165. goroutine 132 [chan receive]:
  166. github.com/valyala/fasthttp/stackless.funcWorker(...)
  167. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
  168. created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 21
  169. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
  170. goroutine 19 [syscall]:
  171. os/signal.signal_recv()
  172. /home/user/coding/go/src/runtime/sigqueue.go:152 +0x29
  173. os/signal.loop()
  174. /home/user/coding/go/src/os/signal/signal_unix.go:23 +0x1d
  175. created by os/signal.Notify.func1.1 in goroutine 10
  176. /home/user/coding/go/src/os/signal/signal.go:152 +0x47
  177. goroutine 11 [select]:
  178. github.com/dgraph-io/badger/v4/y.(*WaterMark).process(0xc00028a930, 0xc00028a900)
  179. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/dgraph-io/badger/v4/y/watermark.go:203 +0x406
  180. created by github.com/dgraph-io/badger/v4/y.(*WaterMark).Init in goroutine 8
  181. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/dgraph-io/badger/v4/y/watermark.go:61 +0x125
  182. goroutine 12 [select]:
  183. github.com/dgraph-io/badger/v4/y.(*WaterMark).process(0xc00028a960, 0xc00028a900)
  184. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/dgraph-io/badger/v4/y/watermark.go:203 +0x406
  185. created by github.com/dgraph-io/badger/v4/y.(*WaterMark).Init in goroutine 8
  186. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/dgraph-io/badger/v4/y/watermark.go:61 +0x125
  187. goroutine 13 [select]:
  188. github.com/dgraph-io/ristretto/v2/z.(*AllocatorPool).freeupAllocators(0xc000012a50)
  189. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/dgraph-io/ristretto/v2/z/allocator.go:372 +0x23f
  190. created by github.com/dgraph-io/ristretto/v2/z.NewAllocatorPool in goroutine 8
  191. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/dgraph-io/ristretto/v2/z/allocator.go:311 +0x17a
  192. goroutine 14 [select]:
  193. github.com/dgraph-io/ristretto/v2.(*defaultPolicy[...]).processItems(0x0)
  194. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/dgraph-io/ristretto/v2/policy.go:61 +0x105
  195. created by github.com/dgraph-io/ristretto/v2.newDefaultPolicy[...] in goroutine 8
  196. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/dgraph-io/ristretto/v2/policy.go:45 +0x35d
  197. goroutine 35 [select]:
  198. github.com/dgraph-io/ristretto/v2.(*Cache[...]).processItems(0x17bce60)
  199. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/dgraph-io/ristretto/v2/cache.go:530 +0x289
  200. created by github.com/dgraph-io/ristretto/v2.NewCache[...] in goroutine 8
  201. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/dgraph-io/ristretto/v2/cache.go:263 +0x120b
  202. goroutine 36 [select]:
  203. github.com/dgraph-io/badger/v4.(*DB).monitorCache(0xc00023cd88, 0xc0002aed20)
  204. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/dgraph-io/badger/v4/db.go:461 +0x2a5
  205. created by github.com/dgraph-io/badger/v4.Open in goroutine 8
  206. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/dgraph-io/badger/v4/db.go:303 +0x147d
  207. goroutine 37 [select]:
  208. github.com/dgraph-io/badger/v4.(*DB).updateSize(0xc00023cd88, 0xc0002aeea0)
  209. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/dgraph-io/badger/v4/db.go:1193 +0x24c
  210. created by github.com/dgraph-io/badger/v4.Open in goroutine 8
  211. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/dgraph-io/badger/v4/db.go:323 +0x18d3
  212. goroutine 67 [select]:
  213. github.com/dgraph-io/badger/v4.(*levelsController).runCompactor(0xc0001bc150, 0x1, 0xc0002aef00)
  214. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/dgraph-io/badger/v4/levels.go:507 +0x4ac
  215. created by github.com/dgraph-io/badger/v4.(*levelsController).startCompact in goroutine 8
  216. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/dgraph-io/badger/v4/levels.go:348 +0x7e
  217. goroutine 68 [select]:
  218. github.com/dgraph-io/badger/v4.(*levelsController).runCompactor(0xc0001bc150, 0x2, 0xc0002aef00)
  219. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/dgraph-io/badger/v4/levels.go:507 +0x4ac
  220. created by github.com/dgraph-io/badger/v4.(*levelsController).startCompact in goroutine 8
  221. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/dgraph-io/badger/v4/levels.go:348 +0x7e
  222. goroutine 69 [select]:
  223. github.com/dgraph-io/badger/v4.(*levelsController).runCompactor(0xc0001bc150, 0x3, 0xc0002aef00)
  224. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/dgraph-io/badger/v4/levels.go:507 +0x4ac
  225. created by github.com/dgraph-io/badger/v4.(*levelsController).startCompact in goroutine 8
  226. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/dgraph-io/badger/v4/levels.go:348 +0x7e
  227. goroutine 70 [chan receive]:
  228. github.com/dgraph-io/badger/v4.(*DB).flushMemtable(0xc00023cd88, 0xc0002aef30)
  229. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/dgraph-io/badger/v4/db.go:1100 +0xf2
  230. github.com/dgraph-io/badger/v4.Open.func5()
  231. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/dgraph-io/badger/v4/db.go:349 +0x70
  232. created by github.com/dgraph-io/badger/v4.Open in goroutine 8
  233. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/dgraph-io/badger/v4/db.go:348 +0x1e0b
  234. goroutine 71 [select]:
  235. github.com/dgraph-io/badger/v4.(*vlogThreshold).listenForValueThresholdUpdate(0xc0000c3400)
  236. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/dgraph-io/badger/v4/value.go:1166 +0x245
  237. created by github.com/dgraph-io/badger/v4.Open in goroutine 8
  238. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/dgraph-io/badger/v4/db.go:372 +0x29f5
  239. goroutine 72 [select]:
  240. github.com/dgraph-io/badger/v4.(*DB).doWrites(0xc00023cd88, 0xc0002aef90)
  241. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/dgraph-io/badger/v4/db.go:928 +0x397
  242. created by github.com/dgraph-io/badger/v4.Open in goroutine 8
  243. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/dgraph-io/badger/v4/db.go:379 +0x2ceb
  244. goroutine 73 [chan receive]:
  245. github.com/dgraph-io/badger/v4.(*valueLog).waitOnGC(0xc00023cf98, 0xc0002aefc0)
  246. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/dgraph-io/badger/v4/value.go:1069 +0xac
  247. created by github.com/dgraph-io/badger/v4.Open in goroutine 8
  248. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/dgraph-io/badger/v4/db.go:383 +0x2edd
  249. goroutine 74 [select]:
  250. github.com/dgraph-io/badger/v4.(*publisher).listenForUpdates(0xc00028aa20, 0xc0002aeff0)
  251. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/dgraph-io/badger/v4/publisher.go:62 +0x205
  252. created by github.com/dgraph-io/badger/v4.Open in goroutine 8
  253. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/dgraph-io/badger/v4/db.go:387 +0x309d
  254. goroutine 75 [chan receive]:
  255. gitp78su.ipnodns.ru/svi/kern/v3/krn/kstore_kv.(*kStoreKv).close(0xc00005e980)
  256. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/krn/kstore_kv/kstore_kv.go:224 +0x1d9
  257. created by gitp78su.ipnodns.ru/svi/kern/v3/krn/kstore_kv.(*kStoreKv).open in goroutine 8
  258. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/krn/kstore_kv/kstore_kv.go:178 +0x63e
  259. goroutine 131 [chan receive]:
  260. github.com/valyala/fasthttp/stackless.funcWorker(...)
  261. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
  262. created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 21
  263. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
  264. goroutine 85 [sleep]:
  265. time.Sleep(0xb2d05e00)
  266. /home/user/coding/go/src/runtime/time.go:363 +0x165
  267. github.com/gofiber/fiber/v2/middleware/monitor.New.func1.1()
  268. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/gofiber/fiber/v2/middleware/monitor/monitor.go:68 +0x4b
  269. created by github.com/gofiber/fiber/v2/middleware/monitor.New.func1 in goroutine 8
  270. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/gofiber/fiber/v2/middleware/monitor/monitor.go:66 +0x178
  271. goroutine 86 [sleep]:
  272. time.Sleep(0xdf8475800)
  273. /home/user/coding/go/src/runtime/time.go:363 +0x165
  274. gitp78su.ipnodns.ru/svi/kern/v3/krn/kmodule/mod_stat.(*ModStat).eventMinute(0xc006103280)
  275. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/krn/kmodule/mod_stat/mod_stat.go:50 +0x65
  276. created by gitp78su.ipnodns.ru/svi/kern/v3/krn/kmodule/mod_stat.NewModStat in goroutine 8
  277. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/krn/kmodule/mod_stat/mod_stat.go:42 +0x5ab
  278. goroutine 88 [sleep]:
  279. time.Sleep(0xdf8475800)
  280. /home/user/coding/go/src/runtime/time.go:363 +0x165
  281. gitp78su.ipnodns.ru/svi/kern/v3/krn/kmodule/mod_stat.(*ModStat).eventMinute(0xc006103380)
  282. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/krn/kmodule/mod_stat/mod_stat.go:50 +0x65
  283. created by gitp78su.ipnodns.ru/svi/kern/v3/krn/kmodule/mod_stat.NewModStat in goroutine 8
  284. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/krn/kmodule/mod_stat/mod_stat.go:42 +0x5ab
  285. goroutine 90 [sleep]:
  286. time.Sleep(0xdf8475800)
  287. /home/user/coding/go/src/runtime/time.go:363 +0x165
  288. gitp78su.ipnodns.ru/svi/kern/v3/krn/kmodule/mod_stat.(*ModStat).eventMinute(0xc006103580)
  289. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/krn/kmodule/mod_stat/mod_stat.go:50 +0x65
  290. created by gitp78su.ipnodns.ru/svi/kern/v3/krn/kmodule/mod_stat.NewModStat in goroutine 8
  291. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/krn/kmodule/mod_stat/mod_stat.go:42 +0x5ab
  292. goroutine 92 [sleep]:
  293. time.Sleep(0xdf8475800)
  294. /home/user/coding/go/src/runtime/time.go:363 +0x165
  295. gitp78su.ipnodns.ru/svi/kern/v3/krn/kmodule/mod_stat.(*ModStat).eventMinute(0xc006103700)
  296. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/krn/kmodule/mod_stat/mod_stat.go:50 +0x65
  297. created by gitp78su.ipnodns.ru/svi/kern/v3/krn/kmodule/mod_stat.NewModStat in goroutine 8
  298. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/krn/kmodule/mod_stat/mod_stat.go:42 +0x5ab
  299. goroutine 94 [sleep]:
  300. time.Sleep(0xdf8475800)
  301. /home/user/coding/go/src/runtime/time.go:363 +0x165
  302. gitp78su.ipnodns.ru/svi/kern/v3/krn/kmodule/mod_stat.(*ModStat).eventMinute(0xc006103840)
  303. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/krn/kmodule/mod_stat/mod_stat.go:50 +0x65
  304. created by gitp78su.ipnodns.ru/svi/kern/v3/krn/kmodule/mod_stat.NewModStat in goroutine 8
  305. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/krn/kmodule/mod_stat/mod_stat.go:42 +0x5ab
  306. goroutine 130 [chan receive]:
  307. github.com/valyala/fasthttp/stackless.funcWorker(...)
  308. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
  309. created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 21
  310. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
  311. goroutine 78 [IO wait]:
  312. internal/poll.runtime_pollWait(0x76947a768400, 0x72)
  313. /home/user/coding/go/src/runtime/netpoll.go:351 +0x85
  314. internal/poll.(*pollDesc).wait(0xc00005e220, 0x72, 0x0)
  315. /home/user/coding/go/src/internal/poll/fd_poll_runtime.go:84 +0xb1
  316. internal/poll.(*pollDesc).waitRead(...)
  317. /home/user/coding/go/src/internal/poll/fd_poll_runtime.go:89
  318. internal/poll.(*FD).Accept(0xc00005e200)
  319. /home/user/coding/go/src/internal/poll/fd_unix.go:613 +0x4ea
  320. net.(*netFD).accept(0xc00005e200)
  321. /home/user/coding/go/src/net/fd_unix.go:161 +0x45
  322. net.(*TCPListener).accept(0xc0000c2880)
  323. /home/user/coding/go/src/net/tcpsock_posix.go:159 +0x4e
  324. net.(*TCPListener).Accept(0xc0000c2880)
  325. /home/user/coding/go/src/net/tcpsock.go:380 +0x65
  326. github.com/valyala/fasthttp.acceptConn(0xc000237208, {0x17ad840, 0xc0000c2880}, 0xc00638dd68)
  327. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/server.go:1990 +0x62
  328. github.com/valyala/fasthttp.(*Server).Serve(0xc000237208, {0x17ad840, 0xc0000c2880})
  329. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/server.go:1878 +0x7ce
  330. github.com/gofiber/fiber/v2.(*App).Listen(0xc00022e508, {0xc0002c3afa, 0x6})
  331. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/gofiber/fiber/v2/listen.go:93 +0x2b3
  332. gitp78su.ipnodns.ru/svi/kern/v3/krn/kserv_http.(*kServHttp).Run.func1()
  333. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/krn/kserv_http/kserv_http.go:131 +0xfd
  334. created by gitp78su.ipnodns.ru/svi/kern/v3/krn/kserv_http.(*kServHttp).Run in goroutine 96
  335. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/krn/kserv_http/kserv_http.go:134 +0x3a5
  336. goroutine 133 [chan receive]:
  337. github.com/valyala/fasthttp/stackless.funcWorker(...)
  338. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
  339. created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 21
  340. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
  341. goroutine 79 [chan receive]:
  342. gitp78su.ipnodns.ru/svi/kern/v3/krn/kserv_http.(*kServHttp).fnChErr(0xc00011c3f0, 0xc0001bc380)
  343. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/krn/kserv_http/kserv_http.go:160 +0x3b
  344. created by gitp78su.ipnodns.ru/svi/kern/v3/krn/kserv_http.(*kServHttp).Run in goroutine 96
  345. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/krn/kserv_http/kserv_http.go:135 +0x44d
  346. goroutine 20 [sleep]:
  347. time.Sleep(0x4c4b40)
  348. /home/user/coding/go/src/runtime/time.go:363 +0x165
  349. gitp78su.ipnodns.ru/svi/kern/v3/krn/kstore_kv.(*kStoreKv).wait(0xc00005e980, 0xc00639a000)
  350. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/krn/kstore_kv/kstore_kv.go:206 +0x2f
  351. created by gitp78su.ipnodns.ru/svi/kern/v3/krn/kstore_kv.(*kStoreKv).close in goroutine 75
  352. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/krn/kstore_kv/kstore_kv.go:223 +0x1cd
  353. goroutine 80 [sleep]:
  354. time.Sleep(0x2540be400)
  355. /home/user/coding/go/src/runtime/time.go:363 +0x165
  356. github.com/valyala/fasthttp.(*workerPool).Start.func2()
  357. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/workerpool.go:68 +0x47
  358. created by github.com/valyala/fasthttp.(*workerPool).Start in goroutine 78
  359. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/workerpool.go:60 +0x19a
  360. goroutine 134 [chan receive]:
  361. github.com/valyala/fasthttp/stackless.funcWorker(...)
  362. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
  363. created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 21
  364. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
  365. goroutine 135 [chan receive]:
  366. github.com/valyala/fasthttp/stackless.funcWorker(...)
  367. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
  368. created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 21
  369. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
  370. goroutine 136 [chan receive]:
  371. github.com/valyala/fasthttp/stackless.funcWorker(...)
  372. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
  373. created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 21
  374. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
  375. goroutine 137 [chan receive]:
  376. github.com/valyala/fasthttp/stackless.funcWorker(...)
  377. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
  378. created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 21
  379. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
  380. goroutine 138 [chan receive]:
  381. github.com/valyala/fasthttp/stackless.funcWorker(...)
  382. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
  383. created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 21
  384. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
  385. goroutine 139 [chan receive]:
  386. github.com/valyala/fasthttp/stackless.funcWorker(...)
  387. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
  388. created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 21
  389. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
  390. goroutine 140 [chan receive]:
  391. github.com/valyala/fasthttp/stackless.funcWorker(...)
  392. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
  393. created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 21
  394. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
  395. goroutine 141 [chan receive]:
  396. github.com/valyala/fasthttp/stackless.funcWorker(...)
  397. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
  398. created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 21
  399. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
  400. goroutine 142 [chan receive]:
  401. github.com/valyala/fasthttp/stackless.funcWorker(...)
  402. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
  403. created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 21
  404. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
  405. goroutine 143 [chan receive]:
  406. github.com/valyala/fasthttp/stackless.funcWorker(...)
  407. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
  408. created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 21
  409. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
  410. goroutine 144 [chan receive]:
  411. github.com/valyala/fasthttp/stackless.funcWorker(...)
  412. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
  413. created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 21
  414. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
  415. goroutine 145 [chan receive]:
  416. github.com/valyala/fasthttp/stackless.funcWorker(...)
  417. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
  418. created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 21
  419. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
  420. goroutine 146 [sleep]:
  421. time.Sleep(0x3b9aca00)
  422. /home/user/coding/go/src/runtime/time.go:363 +0x165
  423. github.com/valyala/fasthttp.updateServerDate.func1()
  424. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/header.go:2309 +0x25
  425. created by github.com/valyala/fasthttp.updateServerDate in goroutine 21
  426. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/header.go:2307 +0x29
  427. FAIL gitp78su.ipnodns.ru/svi/kern/v3 30.045s
  428. ok gitp78su.ipnodns.ru/svi/kern/v3/cmd/demo 3.024s coverage: 100.0% of statements
  429. ok gitp78su.ipnodns.ru/svi/kern/v3/kc/helpers 1.021s coverage: 92.0% of statements
  430. ok gitp78su.ipnodns.ru/svi/kern/v3/kc/local_ctx 1.017s coverage: 100.0% of statements
  431. ok gitp78su.ipnodns.ru/svi/kern/v3/kc/local_ctx/ctx_value 1.020s coverage: 100.0% of statements
  432. ok gitp78su.ipnodns.ru/svi/kern/v3/kc/local_ctx/lst_sort 1.017s coverage: 100.0% of statements
  433. ok gitp78su.ipnodns.ru/svi/kern/v3/kc/log_buf 1.022s coverage: 100.0% of statements
  434. ok gitp78su.ipnodns.ru/svi/kern/v3/kc/log_buf/log_bus 1.017s coverage: 100.0% of statements
  435. ok gitp78su.ipnodns.ru/svi/kern/v3/kc/log_buf/log_bus/log_topic 1.022s coverage: 100.0% of statements
  436. ok gitp78su.ipnodns.ru/svi/kern/v3/kc/log_buf/log_msg 1.021s coverage: 100.0% of statements
  437. ok gitp78su.ipnodns.ru/svi/kern/v3/kc/safe_bool 1.018s coverage: 100.0% of statements
  438. ok gitp78su.ipnodns.ru/svi/kern/v3/kc/safe_bool_react 1.020s coverage: 100.0% of statements
  439. ok gitp78su.ipnodns.ru/svi/kern/v3/kc/safe_int 1.018s coverage: 100.0% of statements
  440. ok gitp78su.ipnodns.ru/svi/kern/v3/kc/safe_string 1.021s coverage: 100.0% of statements
  441. ok gitp78su.ipnodns.ru/svi/kern/v3/krn/kalias 1.017s coverage: [no statements]
  442. ok gitp78su.ipnodns.ru/svi/kern/v3/krn/kbus/dict_sub_hook 1.021s coverage: 100.0% of statements
  443. ok gitp78su.ipnodns.ru/svi/kern/v3/krn/kbus/dict_topic_serve 1.015s coverage: 100.0% of statements
  444. ok gitp78su.ipnodns.ru/svi/kern/v3/krn/kbus/dict_topic_sub 1.332s coverage: 100.0% of statements
  445. ok gitp78su.ipnodns.ru/svi/kern/v3/krn/kbus/kbus_base 1.018s coverage: 100.0% of statements
  446. ok gitp78su.ipnodns.ru/svi/kern/v3/krn/kbus/kbus_http 1.348s coverage: 100.0% of statements
  447. -test.shuffle 1761727912359164955
  448. DEBU 2025-10-29 11:51:52.359 +03 MSK kernelWg.GetKernelWg(): run
  449. DEBU 2025-10-29 11:51:52.359 +03 MSK kernelKeeper.GetKernelKeeper(): first run
  450. DEBU 2025-10-29 11:51:52.359 +03 MSK kernelWg.Add(): stream='kernel_keeper'
  451. DEBU 2025-10-29 11:51:52.359 +03 MSK kernelWg.Add(): stream='bus_base'
  452. DEBU 2025-10-29 11:51:52.359 +03 MSK LocalCtx.Set(): key='kernBusBase'
  453. DEBU 2025-10-29 11:51:52.359 +03 MSK ClientBusHttp.NewClientBusHttp()
  454. DEBU 2025-10-29 11:51:52.359 +03 MSK kBusHttp.GetKernelBusHttp(): new
  455. DEBU 2025-10-29 11:51:52.359 +03 MSK LocalCtx.Set(): key='kernBus'
  456. DEBU 2025-10-29 11:51:52.359 +03 MSK kServHttp.GetKernelServHttp(): first run
  457. DEBU 2025-10-29 11:51:52.359 +03 MSK LocalCtx.Get(): key='monolitName'
  458. DEBU 2025-10-29 11:51:52.359 +03 MSK LocalCtx.KBusBase.run()
  459. DEBU 2025-10-29 11:51:52.359 +03 MSK kernelKeeper.run()
  460. DEBU 2025-10-29 11:51:52.359 +03 MSK ClientBusHttp.NewClientBusHttp()
  461. DEBU 2025-10-29 11:51:52.359 +03 MSK LocalCtx.Set(): key='monolitName'
  462. DEBU 2025-10-29 11:51:52.359 +03 MSK ClientBusHttp.NewClientBusHttp()
  463. DEBU 2025-10-29 11:51:52.359 +03 MSK kServHttp.GetKernelServHttp(): first run
  464. DEBU 2025-10-29 11:51:52.359 +03 MSK LocalCtx.Get(): key='monolitName'
  465. DEBU 2025-10-29 11:51:52.359 +03 MSK LocalCtx.Get(): key='monolitName'
  466. DEBU 2025-10-29 11:51:52.359 +03 MSK LocalCtx.Get(): key='monolitName'
  467. DEBU 2025-10-29 11:51:52.469 +03 MSK kernelWg.Add(): stream='kernel_server_http'
  468. DEBU 2025-10-29 11:51:52.469 +03 MSK LocalCtx.Set(): key='fiberApp'
  469. DEBU 2025-10-29 11:51:52.469 +03 MSK LocalCtx.Set(): key='kServHttp'
  470. DEBU 2025-10-29 11:51:52.469 +03 MSK kServHttp.Run(): url='http://localhost:18350/'
  471. ┌───────────────────────────────────────────────────┐
  472. │ test_monolit │
  473. │ Fiber v2.52.9 │
  474. │ http://127.0.0.1:18350 │
  475. │ (bound on host 0.0.0.0 and port 18350) │
  476. │ │
  477. │ Handlers ............. 4 Processes ........... 1 │
  478. │ Prefork ....... Disabled PID ........... 1031539 │
  479. └───────────────────────────────────────────────────┘
  480. method | path | name | handlers
  481. ------ | ---- | ---- | --------
  482. DELETE | / | | github.com/gofiber/fiber/v2/middleware/compress.New.func3
  483. PATCH | / | | github.com/gofiber/fiber/v2/middleware/compress.New.func3
  484. TRACE | / | | github.com/gofiber/fiber/v2/middleware/compress.New.func3
  485. HEAD | / | | github.com/gofiber/fiber/v2/middleware/compress.New.func3
  486. OPTIONS | / | | github.com/gofiber/fiber/v2/middleware/compress.New.func3
  487. GET | / | | github.com/gofiber/fiber/v2/middleware/compress.New.func3
  488. POST | / | | github.com/gofiber/fiber/v2/middleware/compress.New.func3
  489. CONNECT | / | | github.com/gofiber/fiber/v2/middleware/compress.New.func3
  490. PUT | / | | github.com/gofiber/fiber/v2/middleware/compress.New.func3
  491. HEAD | /monitor | | github.com/gofiber/fiber/v2/middleware/monitor.New.func2
  492. GET | /monitor | | github.com/gofiber/fiber/v2/middleware/monitor.New.func2
  493. PUT | /static | | github.com/gofiber/fiber/v2/middleware/filesystem.New.func1
  494. DELETE | /static | | github.com/gofiber/fiber/v2/middleware/filesystem.New.func1
  495. POST | /static | | github.com/gofiber/fiber/v2/middleware/filesystem.New.func1
  496. CONNECT | /static | | github.com/gofiber/fiber/v2/middleware/filesystem.New.func1
  497. HEAD | /static | | github.com/gofiber/fiber/v2/middleware/filesystem.New.func1
  498. OPTIONS | /static | | github.com/gofiber/fiber/v2/middleware/filesystem.New.func1
  499. TRACE | /static | | github.com/gofiber/fiber/v2/middleware/filesystem.New.func1
  500. GET | /static | | github.com/gofiber/fiber/v2/middleware/filesystem.New.func1
  501. PATCH | /static | | github.com/gofiber/fiber/v2/middleware/filesystem.New.func1
  502. ERRO 2025-10-29 11:51:52.486 +03 MSK ClientBusHttp.Unsubscribe(): in make request, err=
  503. ClientBusHttp.makePost(): url="http://localhost:18350/bus/unsub", status="404 Not Found"
  504. ERRO 2025-10-29 11:51:52.486 +03 MSK ClientBusHttp.Unsubscribe(): in make request, err=
  505. ClientBusHttp.makePost(): after request, err=
  506. Post "tra-ta-ta/bus/unsub": unsupported protocol scheme ""
  507. --- FAIL: TestClientBusHttp (0.13s)
  508. client_bus_http_test.go:342: new
  509. client_bus_http_test.go:388: newBad1
  510. client_bus_http_test.go:377: newBad2
  511. client_bus_http_test.go:349: newGood1
  512. client_bus_http_test.go:296: unsub
  513. client_bus_http_test.go:331: unsubBad1
  514. client_bus_http_test.go:320: unsubBad2
  515. client_bus_http_test.go:304: unsubBad3
  516. client_bus_http_test.go:221: sub
  517. client_bus_http_test.go:285: subBad1
  518. client_bus_http_test.go:266: subBad2
  519. client_bus_http_test.go:230: subBad3
  520. client_bus_http_test.go:244: subBad3(): err=ClientBusHttp.Subscribe(): in make request, err=
  521. ClientBusHttp.makePost(): url="http://localhost:18350/bus/sub", status="404 Not Found"
  522. FAIL
  523. coverage: 42.2% of statements
  524. FAIL gitp78su.ipnodns.ru/svi/kern/v3/krn/kbus/kbus_http/client_bus_http 0.145s
  525. ok gitp78su.ipnodns.ru/svi/kern/v3/krn/kbus/kbus_local 1.015s coverage: 100.0% of statements
  526. ok gitp78su.ipnodns.ru/svi/kern/v3/krn/kbus/kbus_local/client_bus_local 1.015s coverage: 100.0% of statements
  527. ok gitp78su.ipnodns.ru/svi/kern/v3/krn/kbus/kbus_msg/msg_pub 1.014s coverage: 100.0% of statements
  528. ok gitp78su.ipnodns.ru/svi/kern/v3/krn/kbus/kbus_msg/msg_serve 1.013s coverage: 100.0% of statements
  529. ok gitp78su.ipnodns.ru/svi/kern/v3/krn/kbus/kbus_msg/msg_sub 1.014s coverage: 100.0% of statements
  530. ok gitp78su.ipnodns.ru/svi/kern/v3/krn/kbus/kbus_msg/msg_unsub 1.014s coverage: 100.0% of statements
  531. ok gitp78su.ipnodns.ru/svi/kern/v3/krn/kctx 1.014s coverage: 100.0% of statements
  532. ok gitp78su.ipnodns.ru/svi/kern/v3/krn/kctx/kernel_keeper 1.037s coverage: 100.0% of statements
  533. ok gitp78su.ipnodns.ru/svi/kern/v3/krn/kctx/kwg 1.027s coverage: 100.0% of statements
  534. ok gitp78su.ipnodns.ru/svi/kern/v3/krn/kmodule 1.513s coverage: 100.0% of statements
  535. ok gitp78su.ipnodns.ru/svi/kern/v3/krn/kmodule/mod_stat 1.116s coverage: 100.0% of statements
  536. ok gitp78su.ipnodns.ru/svi/kern/v3/krn/kmodule/mod_stat/mod_stat_day 1.015s coverage: 100.0% of statements
  537. ok gitp78su.ipnodns.ru/svi/kern/v3/krn/kmodule/mod_stat/mod_stat_minute 1.014s coverage: 100.0% of statements
  538. ok gitp78su.ipnodns.ru/svi/kern/v3/krn/kmodule/mod_stat/mod_stat_sec 1.014s coverage: 100.0% of statements
  539. ok gitp78su.ipnodns.ru/svi/kern/v3/krn/kmonolit 1.017s coverage: 100.0% of statements
  540. ok gitp78su.ipnodns.ru/svi/kern/v3/krn/kserv_http 1.181s coverage: 100.0% of statements
  541. ok gitp78su.ipnodns.ru/svi/kern/v3/krn/kstore_kv 3.070s coverage: 100.0% of statements
  542. ok gitp78su.ipnodns.ru/svi/kern/v3/krn/ktypes 1.015s coverage: 100.0% of statements
  543. -test.shuffle 1761727913800671302
  544. DEBU 2025-10-29 11:51:53.800 +03 MSK kernelWg.GetKernelWg(): run
  545. DEBU 2025-10-29 11:51:53.801 +03 MSK kernelKeeper.GetKernelKeeper(): first run
  546. DEBU 2025-10-29 11:51:53.801 +03 MSK kernelWg.Add(): stream='kernel_keeper'
  547. DEBU 2025-10-29 11:51:53.801 +03 MSK LocalCtx.Set(): key='monolitName'
  548. DEBU 2025-10-29 11:51:53.801 +03 MSK kernelKeeper.run()
  549. DEBU 2025-10-29 11:51:53.801 +03 MSK kernelWg.Add(): stream='bus_base'
  550. DEBU 2025-10-29 11:51:53.801 +03 MSK LocalCtx.Set(): key='kernBusBase'
  551. DEBU 2025-10-29 11:51:53.801 +03 MSK kServHttp.GetKernelServHttp(): first run
  552. DEBU 2025-10-29 11:51:53.801 +03 MSK LocalCtx.Get(): key='monolitName'
  553. DEBU 2025-10-29 11:51:53.801 +03 MSK LocalCtx.Get(): key='monolitName'
  554. DEBU 2025-10-29 11:51:53.801 +03 MSK LocalCtx.KBusBase.run()
  555. DEBU 2025-10-29 11:51:53.801 +03 MSK LocalCtx.Get(): key='monolitName'
  556. DEBU 2025-10-29 11:51:53.801 +03 MSK LocalCtx.KBusBase.Publish(): topic='kCtx_live'
  557. DEBU 2025-10-29 11:51:53.918 +03 MSK kernelWg.Add(): stream='kernel_server_http'
  558. DEBU 2025-10-29 11:51:53.918 +03 MSK LocalCtx.Set(): key='fiberApp'
  559. DEBU 2025-10-29 11:51:53.918 +03 MSK LocalCtx.Set(): key='kServHttp'
  560. DEBU 2025-10-29 11:51:53.918 +03 MSK LocalCtx.Set(): key='wui_FXPY23JFLCTWSEMY7CZ57467FS'
  561. DEBU 2025-10-29 11:51:53.918 +03 MSK LocalCtx.Set(): key='wui_GQB2NOZ36CAZGQSX5MTAIIOBAM'
  562. DEBU 2025-10-29 11:51:53.918 +03 MSK LocalCtx.Get(): key='fiberApp'
  563. DEBU 2025-10-29 11:51:53.918 +03 MSK LocalCtx.Get(): key='fiberApp'
  564. DEBU 2025-10-29 11:51:53.918 +03 MSK LocalCtx.Get(): key='fiberApp'
  565. INFO 2025-10-29 11:51:53.918 +03 MSK LocalCtx.ModuleKernelCtx.Run(): module=kCtx, is run
  566. DEBU 2025-10-29 11:51:53.918 +03 MSK kServHttp.Run(): url='http://localhost:18328/'
  567. ┌───────────────────────────────────────────────────┐
  568. │ test_monolit │
  569. │ Fiber v2.52.9 │
  570. │ http://127.0.0.1:18328 │
  571. │ (bound on host 0.0.0.0 and port 18328) │
  572. │ │
  573. │ Handlers ............ 17 Processes ........... 1 │
  574. │ Prefork ....... Disabled PID ........... 1032005 │
  575. └───────────────────────────────────────────────────┘
  576. method | path | name | handlers
  577. ------ | ---- | ---- | --------
  578. PATCH | / | | github.com/gofiber/fiber/v2/middleware/compress.New.func3
  579. TRACE | / | | github.com/gofiber/fiber/v2/middleware/compress.New.func3
  580. OPTIONS | / | | github.com/gofiber/fiber/v2/middleware/compress.New.func3
  581. HEAD | / | | github.com/gofiber/fiber/v2/middleware/compress.New.func3
  582. CONNECT | /DEBU 2025-10-29 11:51:53.920 +03 MSK LocalCtx.kCtx.Done()
  583. DEBU 2025-10-29 11:51:53.920 +03 MSK kernelKeeper.run(): cancel app context, err=
  584. context canceled
  585. DEBU 2025-10-29 11:51:53.920 +03 MSK LocalCtx.kCtx.Cancel()
  586. DEBU 2025-10-29 11:51:53.920 +03 MSK kernelWg.Done(): stream(kernel_keeper) done
  587. DEBU 2025-10-29 11:51:53.920 +03 MSK LocalCtx.kCtx.Done()
  588. DEBU 2025-10-29 11:51:53.920 +03 MSK kernelKeeper.run(): end
  589. | | github.com/gofiber/fiber/v2/middleware/compress.New.func3
  590. DELETE | / | | DEBU 2025-10-29 11:51:53.920 +03 MSK kernelWg.Done(): stream(bus_base) done
  591. github.com/gofiber/fiber/v2/middleware/compress.New.func3
  592. PUT | /DEBU 2025-10-29 11:51:53.920 +03 MSK LocalCtx.KBusBase.close(): done
  593. | | github.com/gofiber/fiber/v2/middleware/compress.New.func3
  594. POST | / | | github.com/gofiber/fiber/v2/middleware/compress.New.func3
  595. GET | / | | github.com/gofiber/fiber/v2/middleware/compress.New.func3
  596. POST | /api_time | | gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_serv_http/http_api.(*HttpApi).postTime-fm
  597. POST | /module/:id | | gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_serv_http/page_module.(*PageModule).postModule-fm
  598. POST | /module_ctx/:id | | gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_serv_http/page_module.(*PageModule).postModuleCtx-fm
  599. POST | /module_log/:id | | gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_serv_http/page_module.(*PageModule).postModuleLog-fm
  600. POST | /module_state/:id | | gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_serv_http/page_module.(*PageModule).postModuleState-fm
  601. POST | /module_svg_day/svg_day_:id.svg | | gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_serv_http/page_module.(*PageModule).postSvgDay-fm
  602. POST | /module_svg_min/svg_min_:id.svg | | gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_serv_http/page_module.(*PageModule).postSvgMin-fm
  603. POST | /module_svg_sec/svg_sec_:id.svg | | gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_serv_http/page_module.(*PageModule).postSvgSec-fm
  604. HEAD | /monitor | | github.com/gofiber/fiber/v2/middleware/monitor.New.func2
  605. GET | /monitor | | github.com/gofiber/fiber/v2/middleware/monitor.New.func2
  606. GET | /monolit | | gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_serv_http/page_monolit.(*PageMonolit).getMonolit-fm
  607. HEAD | /monolit | | gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_serv_http/page_monolit.(*PageMonolit).getMonolit-fm
  608. POST | /monolit_ctx | | gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_serv_http/page_monolit.(*PageMonolit).postMonolitCtx-fm
  609. POST | /monolit_log | | gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_serv_http/page_monolit.(*PageMonolit).postMonolitLog-fm
  610. POST | /monolit_state | | gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_serv_http/page_monolit.(*PageMonolit).postMonolitState-fm
  611. POST | /static | | github.com/gofiber/fiber/v2/middleware/filesystem.New.func1
  612. DELETE | /static | | github.com/gofiber/fiber/v2/middleware/filesystem.New.func1
  613. HEAD | /static | | github.com/gofiber/fiber/v2/middleware/filesystem.New.func1
  614. CONNECT | /static | | github.com/gofiber/fiber/v2/middleware/filesystem.New.func1
  615. OPTIONS | /static | | github.com/gofiber/fiber/v2/middleware/filesystem.New.func1
  616. PUT | /static | | github.com/gofiber/fiber/v2/middleware/filesystem.New.func1
  617. TRACE | /static | | github.com/gofiber/fiber/v2/middleware/filesystem.New.func1
  618. GET | /static | | github.com/gofiber/fiber/v2/middleware/filesystem.New.func1
  619. PATCH | /static | | github.com/gofiber/fiber/v2/middleware/filesystem.New.func1
  620. coverage: 100.0% of statements
  621. panic: test timed out after 30s
  622. running tests:
  623. TestModKernelCtx (30s)
  624. goroutine 65 [running]:
  625. testing.(*M).startAlarm.func1()
  626. /home/user/coding/go/src/testing/testing.go:2682 +0x605
  627. created by time.goFunc
  628. /home/user/coding/go/src/time/sleep.go:215 +0x45
  629. goroutine 1 [chan receive]:
  630. testing.(*T).Run(0xc000102fc0, {0xc43120, 0x10}, 0x1007300)
  631. /home/user/coding/go/src/testing/testing.go:2005 +0x9fe
  632. testing.runTests.func1(0xc000102fc0)
  633. /home/user/coding/go/src/testing/testing.go:2477 +0x86
  634. testing.tRunner(0xc000102fc0, 0xc000047ae0)
  635. /home/user/coding/go/src/testing/testing.go:1934 +0x21d
  636. testing.runTests(0xc000126660, {0x1485f90, 0x1, 0x1}, {0x2?, 0x4b6125?, 0x149d3a0?})
  637. /home/user/coding/go/src/testing/testing.go:2475 +0x96d
  638. testing.(*M).Run(0xc000124780)
  639. /home/user/coding/go/src/testing/testing.go:2337 +0xed5
  640. main.main()
  641. _testmain.go:55 +0x165
  642. goroutine 23 [sleep]:
  643. time.Sleep(0xf4240)
  644. /home/user/coding/go/src/runtime/time.go:363 +0x165
  645. gitp78su.ipnodns.ru/svi/kern/v3/kc/helpers.SleepMs(...)
  646. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/kc/helpers/helpers.go:64
  647. gitp78su.ipnodns.ru/svi/kern/v3/krn/kctx/kwg.(*kernelWg).Wait(0xc0001926e0)
  648. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/krn/kctx/kwg/kwg.go:93 +0x30
  649. gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_kctx.(*tester).done(0xc000343ea0)
  650. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_kctx/mod_kctx_test.go:50 +0xc4
  651. gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_kctx.TestModKernelCtx(0xc000103180)
  652. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_kctx/mod_kctx_test.go:43 +0x272
  653. testing.tRunner(0xc000103180, 0x1007300)
  654. /home/user/coding/go/src/testing/testing.go:1934 +0x21d
  655. created by testing.(*T).Run in goroutine 1
  656. /home/user/coding/go/src/testing/testing.go:1997 +0x9d3
  657. goroutine 24 [sleep]:
  658. time.Sleep(0xf4240)
  659. /home/user/coding/go/src/runtime/time.go:363 +0x165
  660. gitp78su.ipnodns.ru/svi/kern/v3/kc/helpers.SleepMs(...)
  661. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/kc/helpers/helpers.go:64
  662. gitp78su.ipnodns.ru/svi/kern/v3/krn/kctx/kwg.(*kernelWg).close(0xc0001926e0)
  663. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/krn/kctx/kwg/kwg.go:126 +0xa5
  664. created by gitp78su.ipnodns.ru/svi/kern/v3/krn/kctx/kwg.GetKernelWg in goroutine 23
  665. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/krn/kctx/kwg/kwg.go:48 +0x47d
  666. goroutine 62 [sleep]:
  667. time.Sleep(0x2540be400)
  668. /home/user/coding/go/src/runtime/time.go:363 +0x165
  669. github.com/valyala/fasthttp.(*workerPool).Start.func2()
  670. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/workerpool.go:68 +0x47
  671. created by github.com/valyala/fasthttp.(*workerPool).Start in goroutine 9
  672. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/workerpool.go:60 +0x19a
  673. goroutine 5 [sleep]:
  674. time.Sleep(0xb2d05e00)
  675. /home/user/coding/go/src/runtime/time.go:363 +0x165
  676. github.com/gofiber/fiber/v2/middleware/monitor.New.func1.1()
  677. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/gofiber/fiber/v2/middleware/monitor/monitor.go:68 +0x4b
  678. created by github.com/gofiber/fiber/v2/middleware/monitor.New.func1 in goroutine 23
  679. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/gofiber/fiber/v2/middleware/monitor/monitor.go:66 +0x178
  680. goroutine 28 [sleep]:
  681. time.Sleep(0xdf8475800)
  682. /home/user/coding/go/src/runtime/time.go:363 +0x165
  683. gitp78su.ipnodns.ru/svi/kern/v3/krn/kmodule/mod_stat.(*ModStat).eventMinute(0xc000115100)
  684. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/krn/kmodule/mod_stat/mod_stat.go:50 +0x65
  685. created by gitp78su.ipnodns.ru/svi/kern/v3/krn/kmodule/mod_stat.NewModStat in goroutine 23
  686. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/krn/kmodule/mod_stat/mod_stat.go:42 +0x5ab
  687. goroutine 34 [syscall]:
  688. os/signal.signal_recv()
  689. /home/user/coding/go/src/runtime/sigqueue.go:152 +0x29
  690. os/signal.loop()
  691. /home/user/coding/go/src/os/signal/signal_unix.go:23 +0x1d
  692. created by os/signal.Notify.func1.1 in goroutine 25
  693. /home/user/coding/go/src/os/signal/signal.go:152 +0x47
  694. goroutine 9 [IO wait]:
  695. internal/poll.runtime_pollWait(0x707fd8f39e00, 0x72)
  696. /home/user/coding/go/src/runtime/netpoll.go:351 +0x85
  697. internal/poll.(*pollDesc).wait(0xc000196020, 0x72, 0x0)
  698. /home/user/coding/go/src/internal/poll/fd_poll_runtime.go:84 +0xb1
  699. internal/poll.(*pollDesc).waitRead(...)
  700. /home/user/coding/go/src/internal/poll/fd_poll_runtime.go:89
  701. internal/poll.(*FD).Accept(0xc000196000)
  702. /home/user/coding/go/src/internal/poll/fd_unix.go:613 +0x4ea
  703. net.(*netFD).accept(0xc000196000)
  704. /home/user/coding/go/src/net/fd_unix.go:161 +0x45
  705. net.(*TCPListener).accept(0xc00039a000)
  706. /home/user/coding/go/src/net/tcpsock_posix.go:159 +0x4e
  707. net.(*TCPListener).Accept(0xc00039a000)
  708. /home/user/coding/go/src/net/tcpsock.go:380 +0x65
  709. github.com/valyala/fasthttp.acceptConn(0xc00017a6c8, {0x10b17d0, 0xc00039a000}, 0xc000147d68)
  710. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/server.go:1990 +0x62
  711. github.com/valyala/fasthttp.(*Server).Serve(0xc00017a6c8, {0x10b17d0, 0xc00039a000})
  712. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/server.go:1878 +0x7ce
  713. github.com/gofiber/fiber/v2.(*App).Listen(0xc000178508, {0xc0003c200a, 0x6})
  714. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/gofiber/fiber/v2/listen.go:93 +0x2b3
  715. gitp78su.ipnodns.ru/svi/kern/v3/krn/kserv_http.(*kServHttp).Run.func1()
  716. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/krn/kserv_http/kserv_http.go:131 +0xfd
  717. created by gitp78su.ipnodns.ru/svi/kern/v3/krn/kserv_http.(*kServHttp).Run in goroutine 7
  718. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/krn/kserv_http/kserv_http.go:134 +0x3a5
  719. goroutine 10 [chan receive]:
  720. gitp78su.ipnodns.ru/svi/kern/v3/krn/kserv_http.(*kServHttp).fnChErr(0xc000170e70, 0xc00032e540)
  721. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/krn/kserv_http/kserv_http.go:160 +0x3b
  722. created by gitp78su.ipnodns.ru/svi/kern/v3/krn/kserv_http.(*kServHttp).Run in goroutine 7
  723. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/krn/kserv_http/kserv_http.go:135 +0x44d
  724. goroutine 98 [chan receive]:
  725. github.com/valyala/fasthttp/stackless.funcWorker(...)
  726. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
  727. created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 82
  728. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
  729. goroutine 99 [chan receive]:
  730. github.com/valyala/fasthttp/stackless.funcWorker(...)
  731. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
  732. created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 82
  733. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
  734. goroutine 100 [chan receive]:
  735. github.com/valyala/fasthttp/stackless.funcWorker(...)
  736. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
  737. created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 82
  738. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
  739. goroutine 101 [chan receive]:
  740. github.com/valyala/fasthttp/stackless.funcWorker(...)
  741. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
  742. created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 82
  743. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
  744. goroutine 102 [chan receive]:
  745. github.com/valyala/fasthttp/stackless.funcWorker(...)
  746. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
  747. created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 82
  748. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
  749. goroutine 103 [chan receive]:
  750. github.com/valyala/fasthttp/stackless.funcWorker(...)
  751. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
  752. created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 82
  753. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
  754. goroutine 104 [chan receive]:
  755. github.com/valyala/fasthttp/stackless.funcWorker(...)
  756. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
  757. created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 82
  758. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
  759. goroutine 105 [chan receive]:
  760. github.com/valyala/fasthttp/stackless.funcWorker(...)
  761. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
  762. created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 82
  763. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
  764. goroutine 106 [chan receive]:
  765. github.com/valyala/fasthttp/stackless.funcWorker(...)
  766. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
  767. created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 82
  768. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
  769. goroutine 107 [chan receive]:
  770. github.com/valyala/fasthttp/stackless.funcWorker(...)
  771. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
  772. created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 82
  773. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
  774. goroutine 108 [chan receive]:
  775. github.com/valyala/fasthttp/stackless.funcWorker(...)
  776. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
  777. created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 82
  778. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
  779. goroutine 109 [chan receive]:
  780. github.com/valyala/fasthttp/stackless.funcWorker(...)
  781. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
  782. created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 82
  783. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
  784. goroutine 110 [chan receive]:
  785. github.com/valyala/fasthttp/stackless.funcWorker(...)
  786. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
  787. created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 82
  788. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
  789. goroutine 111 [chan receive]:
  790. github.com/valyala/fasthttp/stackless.funcWorker(...)
  791. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
  792. created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 82
  793. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
  794. goroutine 112 [chan receive]:
  795. github.com/valyala/fasthttp/stackless.funcWorker(...)
  796. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
  797. created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 82
  798. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
  799. goroutine 113 [chan receive]:
  800. github.com/valyala/fasthttp/stackless.funcWorker(...)
  801. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
  802. created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 82
  803. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
  804. goroutine 83 [sleep]:
  805. time.Sleep(0x3b9aca00)
  806. /home/user/coding/go/src/runtime/time.go:363 +0x165
  807. github.com/valyala/fasthttp.updateServerDate.func1()
  808. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/header.go:2309 +0x25
  809. created by github.com/valyala/fasthttp.updateServerDate in goroutine 82
  810. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/header.go:2307 +0x29
  811. FAIL gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_kctx 30.017s
  812. -test.shuffle 1761727913800598544
  813. DEBU 2025-10-29 11:51:53.800 +03 MSK kernelWg.GetKernelWg(): run
  814. DEBU 2025-10-29 11:51:53.800 +03 MSK kernelKeeper.GetKernelKeeper(): first run
  815. DEBU 2025-10-29 11:51:53.800 +03 MSK kernelWg.Add(): stream='kernel_keeper'
  816. DEBU 2025-10-29 11:51:53.801 +03 MSK LocalCtx.Set(): key='monolitName'
  817. DEBU 2025-10-29 11:51:53.801 +03 MSK kernelKeeper.run()
  818. DEBU 2025-10-29 11:51:53.801 +03 MSK kernelWg.Add(): stream='bus_base'
  819. DEBU 2025-10-29 11:51:53.801 +03 MSK LocalCtx.Set(): key='kernBusBase'
  820. DEBU 2025-10-29 11:51:53.801 +03 MSK kServHttp.GetKernelServHttp(): first run
  821. DEBU 2025-10-29 11:51:53.801 +03 MSK LocalCtx.Get(): key='monolitName'
  822. DEBU 2025-10-29 11:51:53.801 +03 MSK LocalCtx.Get(): key='monolitName'
  823. DEBU 2025-10-29 11:51:53.801 +03 MSK LocalCtx.Get(): key='monolitName'
  824. DEBU 2025-10-29 11:51:53.801 +03 MSK LocalCtx.KBusBase.run()
  825. DEBU 2025-10-29 11:51:53.801 +03 MSK LocalCtx.KBusBase.Publish(): topic='kKeeper_live'
  826. DEBU 2025-10-29 11:51:53.918 +03 MSK kernelWg.Add(): stream='kernel_server_http'
  827. DEBU 2025-10-29 11:51:53.918 +03 MSK LocalCtx.Set(): key='fiberApp'
  828. DEBU 2025-10-29 11:51:53.918 +03 MSK LocalCtx.Set(): key='kServHttp'
  829. DEBU 2025-10-29 11:51:53.918 +03 MSK LocalCtx.Set(): key='wui_YBCVGHUKIVWIFB6W57PYC5KUFC'
  830. DEBU 2025-10-29 11:51:53.918 +03 MSK LocalCtx.Set(): key='wui_JGNH64M3H6ZCPSM3JN56QW2VBW'
  831. DEBU 2025-10-29 11:51:53.918 +03 MSK LocalCtx.Get(): key='fiberApp'
  832. DEBU 2025-10-29 11:51:53.918 +03 MSK LocalCtx.Get(): key='fiberApp'
  833. DEBU 2025-10-29 11:51:53.918 +03 MSK LocalCtx.Get(): key='fiberApp'
  834. INFO 2025-10-29 11:51:53.918 +03 MSK kernelKeeper.ModuleKernelCtx.Run(): module=kKeeper, is run
  835. DEBU 2025-10-29 11:51:53.918 +03 MSK kServHttp.Run(): url='http://localhost:18320/'
  836. ┌───────────────────────────────────────────────────┐
  837. │ test_monolit │
  838. │ Fiber v2.52.9 │
  839. │ http://127.0.0.1:18320 │
  840. │ (bound on host 0.0.0.0 and port 18320) │
  841. │ │
  842. │ Handlers ............ 17 Processes ........... 1 │
  843. │ Prefork ....... Disabled PID ........... 1032006 │
  844. └───────────────────────────────────────────────────┘
  845. method | path | name | handlers
  846. ------ | ---- | ---- | --------
  847. PATCH | / | | github.com/gofiber/fiber/v2/middleware/compress.New.func3
  848. TRACE | / | | github.com/gofiber/fiber/v2/middleware/compress.New.func3
  849. OPTIONS | / | | github.com/gofiber/fiber/v2/middleware/compress.New.func3
  850. HEAD | / | | DEBU 2025-10-29 11:51:53.920 +03 MSK LocalCtx.kCtx.Cancel()
  851. github.com/gofiber/fiber/v2/middleware/compress.New.func3
  852. CONNECT | / | DEBU 2025-10-29 11:51:53.920 +03 MSK LocalCtx.kCtx.Done()
  853. DEBU 2025-10-29 11:51:53.920 +03 MSK kernelKeeper.run(): cancel app context, err=
  854. context canceled
  855. | github.com/gofiber/fiber/v2/middleware/compress.New.func3
  856. DELETE | / DEBU 2025-10-29 11:51:53.920 +03 MSK kernelWg.Done(): stream(kernel_keeper) done
  857. | DEBU 2025-10-29 11:51:53.920 +03 MSK kernelKeeper.run(): end
  858. | github.com/gofiber/fiber/v2/middleware/compress.New.func3
  859. PUT | / | | github.com/gofiber/fiber/v2/middleware/compress.New.func3
  860. POST | / | | github.com/gofiber/fiber/v2/middleware/compress.New.func3
  861. DEBU 2025-10-29 11:51:53.920 +03 MSK LocalCtx.kCtx.Done()
  862. DEBU 2025-10-29 11:51:53.920 +03 MSK kernelWg.Done(): stream(bus_base) done
  863. GET | / | | github.com/gofiber/fiber/v2/middleware/compress.New.func3
  864. POST | /api_time | | gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_serv_http/http_api.(*HttpApi).postTime-fm
  865. POST | /module/:id DEBU 2025-10-29 11:51:53.920 +03 MSK LocalCtx.KBusBase.close(): done
  866. | | gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_serv_http/page_module.(*PageModule).postModule-fm
  867. POST | /module_ctx/:id | | gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_serv_http/page_module.(*PageModule).postModuleCtx-fm
  868. POST | /module_log/:id | | gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_serv_http/page_module.(*PageModule).postModuleLog-fm
  869. POST | /module_state/:id | | gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_serv_http/page_module.(*PageModule).postModuleState-fm
  870. POST | /module_svg_day/svg_day_:id.svg | | gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_serv_http/page_module.(*PageModule).postSvgDay-fm
  871. POST | /module_svg_min/svg_min_:id.svg | | gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_serv_http/page_module.(*PageModule).postSvgMin-fm
  872. POST | /module_svg_sec/svg_sec_:id.svg | | gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_serv_http/page_module.(*PageModule).postSvgSec-fm
  873. HEAD | /monitor | | github.com/gofiber/fiber/v2/middleware/monitor.New.func2
  874. GET | /monitor | | github.com/gofiber/fiber/v2/middleware/monitor.New.func2
  875. GET | /monolit | | gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_serv_http/page_monolit.(*PageMonolit).getMonolit-fm
  876. HEAD | /monolit | | gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_serv_http/page_monolit.(*PageMonolit).getMonolit-fm
  877. POST | /monolit_ctx | | gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_serv_http/page_monolit.(*PageMonolit).postMonolitCtx-fm
  878. POST | /monolit_log | | gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_serv_http/page_monolit.(*PageMonolit).postMonolitLog-fm
  879. POST | /monolit_state | | gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_serv_http/page_monolit.(*PageMonolit).postMonolitState-fm
  880. POST | /static | | github.com/gofiber/fiber/v2/middleware/filesystem.New.func1
  881. DELETE | /static | | github.com/gofiber/fiber/v2/middleware/filesystem.New.func1
  882. HEAD | /static | | github.com/gofiber/fiber/v2/middleware/filesystem.New.func1
  883. CONNECT | /static | | github.com/gofiber/fiber/v2/middleware/filesystem.New.func1
  884. OPTIONS | /static | | github.com/gofiber/fiber/v2/middleware/filesystem.New.func1
  885. PUT | /static | | github.com/gofiber/fiber/v2/middleware/filesystem.New.func1
  886. TRACE | /static | | github.com/gofiber/fiber/v2/middleware/filesystem.New.func1
  887. GET | /static | | github.com/gofiber/fiber/v2/middleware/filesystem.New.func1
  888. PATCH | /static | | github.com/gofiber/fiber/v2/middleware/filesystem.New.func1
  889. coverage: 100.0% of statements
  890. panic: test timed out after 30s
  891. running tests:
  892. TestModKeeper (30s)
  893. goroutine 114 [running]:
  894. testing.(*M).startAlarm.func1()
  895. /home/user/coding/go/src/testing/testing.go:2682 +0x605
  896. created by time.goFunc
  897. /home/user/coding/go/src/time/sleep.go:215 +0x45
  898. goroutine 1 [chan receive]:
  899. testing.(*T).Run(0xc00023a380, {0xc413aa, 0xd}, 0x1007300)
  900. /home/user/coding/go/src/testing/testing.go:2005 +0x9fe
  901. testing.runTests.func1(0xc00023a380)
  902. /home/user/coding/go/src/testing/testing.go:2477 +0x86
  903. testing.tRunner(0xc00023a380, 0xc000047ae0)
  904. /home/user/coding/go/src/testing/testing.go:1934 +0x21d
  905. testing.runTests(0xc000012678, {0x1485f90, 0x1, 0x1}, {0x2?, 0x4b6125?, 0x149d3a0?})
  906. /home/user/coding/go/src/testing/testing.go:2475 +0x96d
  907. testing.(*M).Run(0xc0000c4640)
  908. /home/user/coding/go/src/testing/testing.go:2337 +0xed5
  909. main.main()
  910. _testmain.go:55 +0x165
  911. goroutine 8 [sleep]:
  912. time.Sleep(0xf4240)
  913. /home/user/coding/go/src/runtime/time.go:363 +0x165
  914. gitp78su.ipnodns.ru/svi/kern/v3/kc/helpers.SleepMs(...)
  915. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/kc/helpers/helpers.go:64
  916. gitp78su.ipnodns.ru/svi/kern/v3/krn/kctx/kwg.(*kernelWg).Wait(0xc0002206e0)
  917. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/krn/kctx/kwg/kwg.go:93 +0x30
  918. gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_keeper.(*tester).done(0xc00038fea0)
  919. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_keeper/mod_keeper_test.go:50 +0xc4
  920. gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_keeper.TestModKeeper(0xc00023a540)
  921. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_keeper/mod_keeper_test.go:43 +0x272
  922. testing.tRunner(0xc00023a540, 0x1007300)
  923. /home/user/coding/go/src/testing/testing.go:1934 +0x21d
  924. created by testing.(*T).Run in goroutine 1
  925. /home/user/coding/go/src/testing/testing.go:1997 +0x9d3
  926. goroutine 9 [sleep]:
  927. time.Sleep(0xf4240)
  928. /home/user/coding/go/src/runtime/time.go:363 +0x165
  929. gitp78su.ipnodns.ru/svi/kern/v3/kc/helpers.SleepMs(...)
  930. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/kc/helpers/helpers.go:64
  931. gitp78su.ipnodns.ru/svi/kern/v3/krn/kctx/kwg.(*kernelWg).close(0xc0002206e0)
  932. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/krn/kctx/kwg/kwg.go:126 +0xa5
  933. created by gitp78su.ipnodns.ru/svi/kern/v3/krn/kctx/kwg.GetKernelWg in goroutine 8
  934. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/krn/kctx/kwg/kwg.go:48 +0x47d
  935. goroutine 82 [sleep]:
  936. time.Sleep(0x2540be400)
  937. /home/user/coding/go/src/runtime/time.go:363 +0x165
  938. github.com/valyala/fasthttp.(*workerPool).Start.func2()
  939. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/workerpool.go:68 +0x47
  940. created by github.com/valyala/fasthttp.(*workerPool).Start in goroutine 39
  941. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/workerpool.go:60 +0x19a
  942. goroutine 35 [sleep]:
  943. time.Sleep(0xb2d05e00)
  944. /home/user/coding/go/src/runtime/time.go:363 +0x165
  945. github.com/gofiber/fiber/v2/middleware/monitor.New.func1.1()
  946. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/gofiber/fiber/v2/middleware/monitor/monitor.go:68 +0x4b
  947. created by github.com/gofiber/fiber/v2/middleware/monitor.New.func1 in goroutine 8
  948. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/gofiber/fiber/v2/middleware/monitor/monitor.go:66 +0x178
  949. goroutine 13 [sleep]:
  950. time.Sleep(0xdf8475800)
  951. /home/user/coding/go/src/runtime/time.go:363 +0x165
  952. gitp78su.ipnodns.ru/svi/kern/v3/krn/kmodule/mod_stat.(*ModStat).eventMinute(0xc0000b1100)
  953. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/krn/kmodule/mod_stat/mod_stat.go:50 +0x65
  954. created by gitp78su.ipnodns.ru/svi/kern/v3/krn/kmodule/mod_stat.NewModStat in goroutine 8
  955. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/krn/kmodule/mod_stat/mod_stat.go:42 +0x5ab
  956. goroutine 50 [syscall]:
  957. os/signal.signal_recv()
  958. /home/user/coding/go/src/runtime/sigqueue.go:152 +0x29
  959. os/signal.loop()
  960. /home/user/coding/go/src/os/signal/signal_unix.go:23 +0x1d
  961. created by os/signal.Notify.func1.1 in goroutine 10
  962. /home/user/coding/go/src/os/signal/signal.go:152 +0x47
  963. goroutine 39 [IO wait]:
  964. internal/poll.runtime_pollWait(0x7fdd4e7b8800, 0x72)
  965. /home/user/coding/go/src/runtime/netpoll.go:351 +0x85
  966. internal/poll.(*pollDesc).wait(0xc00004d620, 0x72, 0x0)
  967. /home/user/coding/go/src/internal/poll/fd_poll_runtime.go:84 +0xb1
  968. internal/poll.(*pollDesc).waitRead(...)
  969. /home/user/coding/go/src/internal/poll/fd_poll_runtime.go:89
  970. internal/poll.(*FD).Accept(0xc00004d600)
  971. /home/user/coding/go/src/internal/poll/fd_unix.go:613 +0x4ea
  972. net.(*netFD).accept(0xc00004d600)
  973. /home/user/coding/go/src/net/fd_unix.go:161 +0x45
  974. net.(*TCPListener).accept(0xc00032c300)
  975. /home/user/coding/go/src/net/tcpsock_posix.go:159 +0x4e
  976. net.(*TCPListener).Accept(0xc00032c300)
  977. /home/user/coding/go/src/net/tcpsock.go:380 +0x65
  978. github.com/valyala/fasthttp.acceptConn(0xc00021c6c8, {0x10b17d0, 0xc00032c300}, 0xc0000dfd68)
  979. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/server.go:1990 +0x62
  980. github.com/valyala/fasthttp.(*Server).Serve(0xc00021c6c8, {0x10b17d0, 0xc00032c300})
  981. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/server.go:1878 +0x7ce
  982. github.com/gofiber/fiber/v2.(*App).Listen(0xc00021a508, {0xc0004317fa, 0x6})
  983. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/gofiber/fiber/v2/listen.go:93 +0x2b3
  984. gitp78su.ipnodns.ru/svi/kern/v3/krn/kserv_http.(*kServHttp).Run.func1()
  985. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/krn/kserv_http/kserv_http.go:131 +0xfd
  986. created by gitp78su.ipnodns.ru/svi/kern/v3/krn/kserv_http.(*kServHttp).Run in goroutine 37
  987. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/krn/kserv_http/kserv_http.go:134 +0x3a5
  988. goroutine 40 [chan receive]:
  989. gitp78su.ipnodns.ru/svi/kern/v3/krn/kserv_http.(*kServHttp).fnChErr(0xc0000fee70, 0xc00033c540)
  990. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/krn/kserv_http/kserv_http.go:160 +0x3b
  991. created by gitp78su.ipnodns.ru/svi/kern/v3/krn/kserv_http.(*kServHttp).Run in goroutine 37
  992. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/krn/kserv_http/kserv_http.go:135 +0x44d
  993. goroutine 81 [chan receive]:
  994. github.com/valyala/fasthttp/stackless.funcWorker(...)
  995. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
  996. created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 80
  997. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
  998. goroutine 98 [chan receive]:
  999. github.com/valyala/fasthttp/stackless.funcWorker(...)
  1000. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
  1001. created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 80
  1002. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
  1003. goroutine 99 [chan receive]:
  1004. github.com/valyala/fasthttp/stackless.funcWorker(...)
  1005. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
  1006. created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 80
  1007. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
  1008. goroutine 100 [chan receive]:
  1009. github.com/valyala/fasthttp/stackless.funcWorker(...)
  1010. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
  1011. created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 80
  1012. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
  1013. goroutine 101 [chan receive]:
  1014. github.com/valyala/fasthttp/stackless.funcWorker(...)
  1015. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
  1016. created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 80
  1017. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
  1018. goroutine 102 [chan receive]:
  1019. github.com/valyala/fasthttp/stackless.funcWorker(...)
  1020. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
  1021. created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 80
  1022. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
  1023. goroutine 103 [chan receive]:
  1024. github.com/valyala/fasthttp/stackless.funcWorker(...)
  1025. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
  1026. created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 80
  1027. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
  1028. goroutine 104 [chan receive]:
  1029. github.com/valyala/fasthttp/stackless.funcWorker(...)
  1030. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
  1031. created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 80
  1032. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
  1033. goroutine 105 [chan receive]:
  1034. github.com/valyala/fasthttp/stackless.funcWorker(...)
  1035. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
  1036. created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 80
  1037. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
  1038. goroutine 106 [chan receive]:
  1039. github.com/valyala/fasthttp/stackless.funcWorker(...)
  1040. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
  1041. created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 80
  1042. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
  1043. goroutine 107 [chan receive]:
  1044. github.com/valyala/fasthttp/stackless.funcWorker(...)
  1045. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
  1046. created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 80
  1047. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
  1048. goroutine 108 [chan receive]:
  1049. github.com/valyala/fasthttp/stackless.funcWorker(...)
  1050. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
  1051. created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 80
  1052. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
  1053. goroutine 109 [chan receive]:
  1054. github.com/valyala/fasthttp/stackless.funcWorker(...)
  1055. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
  1056. created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 80
  1057. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
  1058. goroutine 110 [chan receive]:
  1059. github.com/valyala/fasthttp/stackless.funcWorker(...)
  1060. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
  1061. created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 80
  1062. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
  1063. goroutine 111 [chan receive]:
  1064. github.com/valyala/fasthttp/stackless.funcWorker(...)
  1065. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
  1066. created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 80
  1067. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
  1068. goroutine 112 [chan receive]:
  1069. github.com/valyala/fasthttp/stackless.funcWorker(...)
  1070. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
  1071. created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 80
  1072. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
  1073. goroutine 113 [sleep]:
  1074. time.Sleep(0x3b9aca00)
  1075. /home/user/coding/go/src/runtime/time.go:363 +0x165
  1076. github.com/valyala/fasthttp.updateServerDate.func1()
  1077. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/header.go:2309 +0x25
  1078. created by github.com/valyala/fasthttp.updateServerDate in goroutine 80
  1079. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/header.go:2307 +0x29
  1080. FAIL gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_keeper 30.017s
  1081. ok gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_serv_http 1.152s coverage: 100.0% of statements
  1082. ok gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_serv_http/btn_modules 1.012s coverage: 100.0% of statements
  1083. ok gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_serv_http/btn_monolit 1.011s coverage: 100.0% of statements
  1084. -test.shuffle 1761727914263141513
  1085. DEBU 2025-10-29 11:51:54.263 +03 MSK kernelWg.GetKernelWg(): run
  1086. DEBU 2025-10-29 11:51:54.263 +03 MSK kernelKeeper.GetKernelKeeper(): first run
  1087. DEBU 2025-10-29 11:51:54.263 +03 MSK kernelWg.Add(): stream='kernel_keeper'
  1088. DEBU 2025-10-29 11:51:54.263 +03 MSK kernelKeeper.run()
  1089. DEBU 2025-10-29 11:51:54.263 +03 MSK LocalCtx.Set(): key='isLocal'
  1090. DEBU 2025-10-29 11:51:54.263 +03 MSK LocalCtx.Get(): key='isLocal'
  1091. DEBU 2025-10-29 11:51:54.263 +03 MSK LocalCtx.Set(): key='monolitName'
  1092. DEBU 2025-10-29 11:51:54.263 +03 MSK LocalCtx.Set(): key='monolit'
  1093. DEBU 2025-10-29 11:51:54.263 +03 MSK LocalCtx.Set(): key='monolitName'
  1094. DEBU 2025-10-29 11:51:54.263 +03 MSK kServHttp.GetKernelServHttp(): first run
  1095. DEBU 2025-10-29 11:51:54.263 +03 MSK LocalCtx.Get(): key='monolitName'
  1096. DEBU 2025-10-29 11:51:54.263 +03 MSK LocalCtx.Get(): key='monolitName'
  1097. DEBU 2025-10-29 11:51:54.263 +03 MSK LocalCtx.Get(): key='monolitName'
  1098. DEBU 2025-10-29 11:51:54.376 +03 MSK kernelWg.Add(): stream='kernel_server_http'
  1099. DEBU 2025-10-29 11:51:54.376 +03 MSK LocalCtx.Set(): key='fiberApp'
  1100. DEBU 2025-10-29 11:51:54.376 +03 MSK LocalCtx.Set(): key='kServHttp'
  1101. DEBU 2025-10-29 11:51:54.376 +03 MSK LocalCtx.Get(): key='fiberApp'
  1102. DEBU 2025-10-29 11:51:54.376 +03 MSK kServHttp.Run(): url='http://localhost:18312/'
  1103. DEBU 2025-10-29 11:51:54.376 +03 MSK LocalCtx.kCtx.Cancel()
  1104. DEBU 2025-10-29 11:51:54.376 +03 MSK kernelKeeper.run(): cancel app context, err=
  1105. context canceled
  1106. DEBU 2025-10-29 11:51:54.376 +03 MSK kernelWg.Done(): stream(kernel_keeper) done
  1107. DEBU 2025-10-29 11:51:54.376 +03 MSK kernelKeeper.run(): end
  1108. DEBU 2025-10-29 11:51:54.376 +03 MSK LocalCtx.kCtx.Done()
  1109. ┌───────────────────────────────────────────────────┐
  1110. │ test_monolit │
  1111. │ Fiber v2.52.9 │
  1112. │ http://127.0.0.1:18312 │
  1113. │ (bound on host 0.0.0.0 and port 18312) │
  1114. │ │
  1115. │ Handlers ............. 5 Processes ........... 1 │
  1116. │ Prefork ....... Disabled PID ........... 1032174 │
  1117. └───────────────────────────────────────────────────┘
  1118. method | path | name | handlers
  1119. ------ | ---- | ---- | --------
  1120. DELETE | / | | github.com/gofiber/fiber/v2/middleware/compress.New.func3
  1121. PATCH | / | | github.com/gofiber/fiber/v2/middleware/compress.New.func3
  1122. TRACE | / | | github.com/gofiber/fiber/v2/middleware/compress.New.func3
  1123. HEAD | / | | github.com/gofiber/fiber/v2/middleware/compress.New.func3
  1124. OPTIONS | / | | github.com/gofiber/fiber/v2/middleware/compress.New.func3
  1125. GET | / | | github.com/gofiber/fiber/v2/middleware/compress.New.func3
  1126. POST | / | | github.com/gofiber/fiber/v2/middleware/compress.New.func3
  1127. CONNECT | / | | github.com/gofiber/fiber/v2/middleware/compress.New.func3
  1128. PUT | / | | github.com/gofiber/fiber/v2/middleware/compress.New.func3
  1129. POST | /api_time | | gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_serv_http/http_api.(*HttpApi).postTime-fm
  1130. HEAD | /monitor | | github.com/gofiber/fiber/v2/middleware/monitor.New.func2
  1131. GET | /monitor | | github.com/gofiber/fiber/v2/middleware/monitor.New.func2
  1132. PUT | /static | | github.com/gofiber/fiber/v2/middleware/filesystem.New.func1
  1133. DELETE | /static | | github.com/gofiber/fiber/v2/middleware/filesystem.New.func1
  1134. POST | /static | | github.com/gofiber/fiber/v2/middleware/filesystem.New.func1
  1135. CONNECT | /static | | github.com/gofiber/fiber/v2/middleware/filesystem.New.func1
  1136. HEAD | /static | | github.com/gofiber/fiber/v2/middleware/filesystem.New.func1
  1137. OPTIONS | /static | | github.com/gofiber/fiber/v2/middleware/filesystem.New.func1
  1138. TRACE | /static | | github.com/gofiber/fiber/v2/middleware/filesystem.New.func1
  1139. GET | /static | | github.com/gofiber/fiber/v2/middleware/filesystem.New.func1
  1140. PATCH | /static | | github.com/gofiber/fiber/v2/middleware/filesystem.New.func1
  1141. coverage: 100.0% of statements
  1142. panic: test timed out after 30s
  1143. running tests:
  1144. TestPageMonolit (30s)
  1145. goroutine 60 [running]:
  1146. testing.(*M).startAlarm.func1()
  1147. /home/user/coding/go/src/testing/testing.go:2682 +0x605
  1148. created by time.goFunc
  1149. /home/user/coding/go/src/time/sleep.go:215 +0x45
  1150. goroutine 1 [chan receive]:
  1151. testing.(*T).Run(0xc00023a380, {0xc29644, 0xf}, 0xfeaf30)
  1152. /home/user/coding/go/src/testing/testing.go:2005 +0x9fe
  1153. testing.runTests.func1(0xc00023a380)
  1154. /home/user/coding/go/src/testing/testing.go:2477 +0x86
  1155. testing.tRunner(0xc00023a380, 0xc000047ae0)
  1156. /home/user/coding/go/src/testing/testing.go:1934 +0x21d
  1157. testing.runTests(0xc000012678, {0x145af20, 0x1, 0x1}, {0x2?, 0x4b6125?, 0x14722c0?})
  1158. /home/user/coding/go/src/testing/testing.go:2475 +0x96d
  1159. testing.(*M).Run(0xc0000c4780)
  1160. /home/user/coding/go/src/testing/testing.go:2337 +0xed5
  1161. main.main()
  1162. _testmain.go:55 +0x165
  1163. goroutine 8 [sleep]:
  1164. time.Sleep(0xf4240)
  1165. /home/user/coding/go/src/runtime/time.go:363 +0x165
  1166. gitp78su.ipnodns.ru/svi/kern/v3/kc/helpers.SleepMs(...)
  1167. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/kc/helpers/helpers.go:64
  1168. gitp78su.ipnodns.ru/svi/kern/v3/krn/kctx/kwg.(*kernelWg).Wait(0xc0002206e0)
  1169. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/krn/kctx/kwg/kwg.go:93 +0x30
  1170. gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_serv_http/http_api.(*tester).done(0xc000277ea0)
  1171. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_serv_http/http_api/http_api_test.go:53 +0xc4
  1172. gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_serv_http/http_api.TestPageMonolit(0xc00023a540)
  1173. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_serv_http/http_api/http_api_test.go:29 +0xb9
  1174. testing.tRunner(0xc00023a540, 0xfeaf30)
  1175. /home/user/coding/go/src/testing/testing.go:1934 +0x21d
  1176. created by testing.(*T).Run in goroutine 1
  1177. /home/user/coding/go/src/testing/testing.go:1997 +0x9d3
  1178. goroutine 9 [sleep]:
  1179. time.Sleep(0xf4240)
  1180. /home/user/coding/go/src/runtime/time.go:363 +0x165
  1181. gitp78su.ipnodns.ru/svi/kern/v3/kc/helpers.SleepMs(...)
  1182. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/kc/helpers/helpers.go:64
  1183. gitp78su.ipnodns.ru/svi/kern/v3/krn/kctx/kwg.(*kernelWg).close(0xc0002206e0)
  1184. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/krn/kctx/kwg/kwg.go:126 +0xa5
  1185. created by gitp78su.ipnodns.ru/svi/kern/v3/krn/kctx/kwg.GetKernelWg in goroutine 8
  1186. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/krn/kctx/kwg/kwg.go:48 +0x47d
  1187. goroutine 34 [syscall]:
  1188. os/signal.signal_recv()
  1189. /home/user/coding/go/src/runtime/sigqueue.go:152 +0x29
  1190. os/signal.loop()
  1191. /home/user/coding/go/src/os/signal/signal_unix.go:23 +0x1d
  1192. created by os/signal.Notify.func1.1 in goroutine 10
  1193. /home/user/coding/go/src/os/signal/signal.go:152 +0x47
  1194. goroutine 35 [sleep]:
  1195. time.Sleep(0xb2d05e00)
  1196. /home/user/coding/go/src/runtime/time.go:363 +0x165
  1197. github.com/gofiber/fiber/v2/middleware/monitor.New.func1.1()
  1198. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/gofiber/fiber/v2/middleware/monitor/monitor.go:68 +0x4b
  1199. created by github.com/gofiber/fiber/v2/middleware/monitor.New.func1 in goroutine 8
  1200. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/gofiber/fiber/v2/middleware/monitor/monitor.go:66 +0x178
  1201. goroutine 67 [IO wait]:
  1202. internal/poll.runtime_pollWait(0x7bfa57578800, 0x72)
  1203. /home/user/coding/go/src/runtime/netpoll.go:351 +0x85
  1204. internal/poll.(*pollDesc).wait(0xc00004c0a0, 0x72, 0x0)
  1205. /home/user/coding/go/src/internal/poll/fd_poll_runtime.go:84 +0xb1
  1206. internal/poll.(*pollDesc).waitRead(...)
  1207. /home/user/coding/go/src/internal/poll/fd_poll_runtime.go:89
  1208. internal/poll.(*FD).Accept(0xc00004c080)
  1209. /home/user/coding/go/src/internal/poll/fd_unix.go:613 +0x4ea
  1210. net.(*netFD).accept(0xc00004c080)
  1211. /home/user/coding/go/src/net/fd_unix.go:161 +0x45
  1212. net.(*TCPListener).accept(0xc0004e4040)
  1213. /home/user/coding/go/src/net/tcpsock_posix.go:159 +0x4e
  1214. net.(*TCPListener).Accept(0xc0004e4040)
  1215. /home/user/coding/go/src/net/tcpsock.go:380 +0x65
  1216. github.com/valyala/fasthttp.acceptConn(0xc00021c6c8, {0x1093a10, 0xc0004e4040}, 0xc0000dfd68)
  1217. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/server.go:1990 +0x62
  1218. github.com/valyala/fasthttp.(*Server).Serve(0xc00021c6c8, {0x1093a10, 0xc0004e4040})
  1219. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/server.go:1878 +0x7ce
  1220. github.com/gofiber/fiber/v2.(*App).Listen(0xc00021a508, {0xc0003e002a, 0x6})
  1221. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/gofiber/fiber/v2/listen.go:93 +0x2b3
  1222. gitp78su.ipnodns.ru/svi/kern/v3/krn/kserv_http.(*kServHttp).Run.func1()
  1223. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/krn/kserv_http/kserv_http.go:131 +0xfd
  1224. created by gitp78su.ipnodns.ru/svi/kern/v3/krn/kserv_http.(*kServHttp).Run in goroutine 36
  1225. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/krn/kserv_http/kserv_http.go:134 +0x3a5
  1226. goroutine 68 [chan receive]:
  1227. gitp78su.ipnodns.ru/svi/kern/v3/krn/kserv_http.(*kServHttp).fnChErr(0xc0000feee0, 0xc0004d6000)
  1228. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/krn/kserv_http/kserv_http.go:160 +0x3b
  1229. created by gitp78su.ipnodns.ru/svi/kern/v3/krn/kserv_http.(*kServHttp).Run in goroutine 36
  1230. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/krn/kserv_http/kserv_http.go:135 +0x44d
  1231. goroutine 38 [sleep]:
  1232. time.Sleep(0x3b9aca00)
  1233. /home/user/coding/go/src/runtime/time.go:363 +0x165
  1234. github.com/valyala/fasthttp.updateServerDate.func1()
  1235. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/header.go:2309 +0x25
  1236. created by github.com/valyala/fasthttp.updateServerDate in goroutine 37
  1237. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/header.go:2307 +0x29
  1238. goroutine 69 [sleep]:
  1239. time.Sleep(0x2540be400)
  1240. /home/user/coding/go/src/runtime/time.go:363 +0x165
  1241. github.com/valyala/fasthttp.(*workerPool).Start.func2()
  1242. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/workerpool.go:68 +0x47
  1243. created by github.com/valyala/fasthttp.(*workerPool).Start in goroutine 67
  1244. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/workerpool.go:60 +0x19a
  1245. goroutine 71 [chan receive]:
  1246. github.com/valyala/fasthttp/stackless.funcWorker(...)
  1247. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
  1248. created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 70
  1249. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
  1250. goroutine 72 [chan receive]:
  1251. github.com/valyala/fasthttp/stackless.funcWorker(...)
  1252. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
  1253. created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 70
  1254. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
  1255. goroutine 73 [chan receive]:
  1256. github.com/valyala/fasthttp/stackless.funcWorker(...)
  1257. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
  1258. created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 70
  1259. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
  1260. goroutine 74 [chan receive]:
  1261. github.com/valyala/fasthttp/stackless.funcWorker(...)
  1262. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
  1263. created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 70
  1264. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
  1265. goroutine 75 [chan receive]:
  1266. github.com/valyala/fasthttp/stackless.funcWorker(...)
  1267. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
  1268. created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 70
  1269. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
  1270. goroutine 76 [chan receive]:
  1271. github.com/valyala/fasthttp/stackless.funcWorker(...)
  1272. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
  1273. created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 70
  1274. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
  1275. goroutine 77 [chan receive]:
  1276. github.com/valyala/fasthttp/stackless.funcWorker(...)
  1277. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
  1278. created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 70
  1279. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
  1280. goroutine 78 [chan receive]:
  1281. github.com/valyala/fasthttp/stackless.funcWorker(...)
  1282. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
  1283. created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 70
  1284. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
  1285. goroutine 79 [chan receive]:
  1286. github.com/valyala/fasthttp/stackless.funcWorker(...)
  1287. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
  1288. created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 70
  1289. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
  1290. goroutine 80 [chan receive]:
  1291. github.com/valyala/fasthttp/stackless.funcWorker(...)
  1292. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
  1293. created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 70
  1294. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
  1295. goroutine 81 [chan receive]:
  1296. github.com/valyala/fasthttp/stackless.funcWorker(...)
  1297. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
  1298. created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 70
  1299. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
  1300. goroutine 98 [chan receive]:
  1301. github.com/valyala/fasthttp/stackless.funcWorker(...)
  1302. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
  1303. created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 70
  1304. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
  1305. goroutine 99 [chan receive]:
  1306. github.com/valyala/fasthttp/stackless.funcWorker(...)
  1307. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
  1308. created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 70
  1309. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
  1310. goroutine 100 [chan receive]:
  1311. github.com/valyala/fasthttp/stackless.funcWorker(...)
  1312. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
  1313. created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 70
  1314. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
  1315. goroutine 101 [chan receive]:
  1316. github.com/valyala/fasthttp/stackless.funcWorker(...)
  1317. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
  1318. created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 70
  1319. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
  1320. goroutine 102 [chan receive]:
  1321. github.com/valyala/fasthttp/stackless.funcWorker(...)
  1322. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
  1323. created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 70
  1324. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
  1325. FAIL gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_serv_http/http_api 30.017s
  1326. ok gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_serv_http/page_module 1.425s coverage: 100.0% of statements
  1327. -test.shuffle 1761727914842554258
  1328. DEBU 2025-10-29 11:51:54.842 +03 MSK kernelWg.GetKernelWg(): run
  1329. DEBU 2025-10-29 11:51:54.842 +03 MSK kernelKeeper.GetKernelKeeper(): first run
  1330. DEBU 2025-10-29 11:51:54.842 +03 MSK kernelWg.Add(): stream='kernel_keeper'
  1331. DEBU 2025-10-29 11:51:54.842 +03 MSK LocalCtx.Set(): key='isLocal'
  1332. DEBU 2025-10-29 11:51:54.842 +03 MSK kernelKeeper.run()
  1333. DEBU 2025-10-29 11:51:54.844 +03 MSK LocalCtx.Get(): key='isLocal'
  1334. DEBU 2025-10-29 11:51:54.844 +03 MSK LocalCtx.Get(): key='isLocal'
  1335. DEBU 2025-10-29 11:51:54.844 +03 MSK LocalCtx.Set(): key='monolitName'
  1336. DEBU 2025-10-29 11:51:54.844 +03 MSK LocalCtx.Set(): key='monolit'
  1337. DEBU 2025-10-29 11:51:54.844 +03 MSK LocalCtx.Set(): key='monolitName'
  1338. DEBU 2025-10-29 11:51:54.844 +03 MSK kServHttp.GetKernelServHttp(): first run
  1339. DEBU 2025-10-29 11:51:54.844 +03 MSK LocalCtx.Get(): key='monolitName'
  1340. DEBU 2025-10-29 11:51:54.844 +03 MSK LocalCtx.Get(): key='monolitName'
  1341. DEBU 2025-10-29 11:51:54.844 +03 MSK LocalCtx.Get(): key='monolitName'
  1342. DEBU 2025-10-29 11:51:54.964 +03 MSK kernelWg.Add(): stream='kernel_server_http'
  1343. DEBU 2025-10-29 11:51:54.964 +03 MSK LocalCtx.Set(): key='fiberApp'
  1344. DEBU 2025-10-29 11:51:54.964 +03 MSK LocalCtx.Set(): key='kServHttp'
  1345. DEBU 2025-10-29 11:51:54.965 +03 MSK LocalCtx.Set(): key='wui_TLYN7Y5SL3JZBCMDLJNOBW5MAT'
  1346. DEBU 2025-10-29 11:51:54.965 +03 MSK LocalCtx.Set(): key='wui_TJNVYFGUV7BR7ZKNYYMGND2OIM'
  1347. DEBU 2025-10-29 11:51:54.965 +03 MSK LocalCtx.Get(): key='fiberApp'
  1348. DEBU 2025-10-29 11:51:54.965 +03 MSK kServHttp.Run(): url='http://localhost:18310/'
  1349. DEBU 2025-10-29 11:51:54.965 +03 MSK LocalCtx.Get(): key='monolit'
  1350. DEBU 2025-10-29 11:51:54.965 +03 MSK LocalCtx.Get(): key='monolit'
  1351. ┌───────────────────────────────────────────────────┐
  1352. │ test_monolit │
  1353. │ Fiber v2.52.9 │
  1354. │ http://127.0.0.1:18310 │
  1355. │ (bound on host 0.0.0.0 and port 18310) │
  1356. │ │
  1357. │ Handlers ............. 9 Processes ........... 1 │
  1358. │ Prefork ....... Disabled PID ........... 1032398 │
  1359. DEBU 2025-10-29 11:51:54.965 +03 MSK LocalCtx.Get(): key='monolit'
  1360. └───────────────────────────────────────────────────┘
  1361. DEBU 2025-10-29 11:51:54.966 +03 MSK LocalCtx.Get(): key='monolit'
  1362. DEBU 2025-10-29 11:51:54.966 +03 MSK LocalCtx.test msg
  1363. DEBU 2025-10-29 11:51:54.966 +03 MSK LocalCtx.Get(): key='monolit'
  1364. method | path | name | handlers
  1365. ------ | ---- | ---- | --------
  1366. OPTIONS | / | | github.com/gofiber/fiber/v2/middleware/compress.New.func3
  1367. PATCH | / | | github.com/gofiber/fiber/v2/middleware/compress.New.func3
  1368. PUT | / | | github.com/gofiber/fiber/v2/middleware/compress.New.func3
  1369. GET | / | | github.com/gofiber/fiber/v2/middleware/compress.New.func3
  1370. HEAD | / | | github.com/gofiber/fiber/v2/middleware/compress.New.func3
  1371. TRACE | / | | github.com/gofiber/fiber/v2/middleware/compress.New.func3
  1372. DELETE | / | | github.com/gofiber/fiber/v2/middleware/compress.New.func3
  1373. CONNECT | / | DEBU 2025-10-29 11:51:54.966 +03 MSK kernelKeeper.run(): cancel app context, err=
  1374. context canceled
  1375. | github.com/gofiber/fiber/v2/middleware/compress.New.func3 DEBU 2025-10-29 11:51:54.966 +03 MSK LocalCtx.kCtx.Done()
  1376. POSTDEBU 2025-10-29 11:51:54.966 +03 MSK LocalCtx.kCtx.Cancel()
  1377. | / | | github.com/gofiber/fiber/v2/middleware/compress.New.func3
  1378. HEAD | /monitor | | github.com/gofiber/fiber/v2/middleware/monitor.New.func2 DEBU 2025-10-29 11:51:54.966 +03 MSK kernelWg.Done(): stream(kernel_keeper) done
  1379. DEBU 2025-10-29 11:51:54.967 +03 MSK kernelKeeper.run(): end
  1380. GET | /monitor | | github.com/gofiber/fiber/v2/middleware/monitor.New.func2
  1381. HEAD | /monolit | | gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_serv_http/page_monolit.(*PageMonolit).getMonolit-fm
  1382. GET | /monolit | | gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_serv_http/page_monolit.(*PageMonolit).getMonolit-fm
  1383. POST | /monolit_ctx | | gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_serv_http/page_monolit.(*PageMonolit).postMonolitCtx-fm
  1384. POST | /monolit_log | | gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_serv_http/page_monolit.(*PageMonolit).postMonolitLog-fm
  1385. POST | /monolit_state | | gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_serv_http/page_monolit.(*PageMonolit).postMonolitState-fm
  1386. PUT | /static | | github.com/gofiber/fiber/v2/middleware/filesystem.New.func1
  1387. DELETE | /static | | github.com/gofiber/fiber/v2/middleware/filesystem.New.func1
  1388. CONNECT | /static | | github.com/gofiber/fiber/v2/middleware/filesystem.New.func1
  1389. POST | /static | | github.com/gofiber/fiber/v2/middleware/filesystem.New.func1
  1390. OPTIONS | /static | | github.com/gofiber/fiber/v2/middleware/filesystem.New.func1
  1391. HEAD | /static | | github.com/gofiber/fiber/v2/middleware/filesystem.New.func1
  1392. TRACE | /static | | github.com/gofiber/fiber/v2/middleware/filesystem.New.func1
  1393. GET | /static | | github.com/gofiber/fiber/v2/middleware/filesystem.New.func1
  1394. PATCH | /static | | github.com/gofiber/fiber/v2/middleware/filesystem.New.func1
  1395. coverage: 100.0% of statements
  1396. panic: test timed out after 30s
  1397. running tests:
  1398. TestPageMonolit (30s)
  1399. goroutine 91 [running]:
  1400. testing.(*M).startAlarm.func1()
  1401. /home/user/coding/go/src/testing/testing.go:2682 +0x605
  1402. created by time.goFunc
  1403. /home/user/coding/go/src/time/sleep.go:215 +0x45
  1404. goroutine 1 [chan receive]:
  1405. testing.(*T).Run(0xc000102c40, {0xc3541e, 0xf}, 0xff8f10)
  1406. /home/user/coding/go/src/testing/testing.go:2005 +0x9fe
  1407. testing.runTests.func1(0xc000102c40)
  1408. /home/user/coding/go/src/testing/testing.go:2477 +0x86
  1409. testing.tRunner(0xc000102c40, 0xc000047ae0)
  1410. /home/user/coding/go/src/testing/testing.go:1934 +0x21d
  1411. testing.runTests(0xc000120660, {0x146ffa0, 0x1, 0x1}, {0x2?, 0x4b6125?, 0x1487440?})
  1412. /home/user/coding/go/src/testing/testing.go:2475 +0x96d
  1413. testing.(*M).Run(0xc00011e5a0)
  1414. /home/user/coding/go/src/testing/testing.go:2337 +0xed5
  1415. main.main()
  1416. _testmain.go:55 +0x165
  1417. goroutine 5 [sleep]:
  1418. time.Sleep(0xb2d05e00)
  1419. /home/user/coding/go/src/runtime/time.go:363 +0x165
  1420. github.com/gofiber/fiber/v2/middleware/monitor.New.func1.1()
  1421. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/gofiber/fiber/v2/middleware/monitor/monitor.go:68 +0x4b
  1422. created by github.com/gofiber/fiber/v2/middleware/monitor.New.func1 in goroutine 21
  1423. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/gofiber/fiber/v2/middleware/monitor/monitor.go:66 +0x178
  1424. goroutine 21 [sleep]:
  1425. time.Sleep(0xf4240)
  1426. /home/user/coding/go/src/runtime/time.go:363 +0x165
  1427. gitp78su.ipnodns.ru/svi/kern/v3/kc/helpers.SleepMs(...)
  1428. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/kc/helpers/helpers.go:64
  1429. gitp78su.ipnodns.ru/svi/kern/v3/krn/kctx/kwg.(*kernelWg).Wait(0xc0002126e0)
  1430. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/krn/kctx/kwg/kwg.go:93 +0x30
  1431. gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_serv_http/page_monolit.(*tester).done(0xc000595e98)
  1432. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_serv_http/page_monolit/page_monolit_test.go:112 +0x12d
  1433. gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_serv_http/page_monolit.TestPageMonolit(0xc000102e00)
  1434. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_serv_http/page_monolit/page_monolit_test.go:33 +0xd9
  1435. testing.tRunner(0xc000102e00, 0xff8f10)
  1436. /home/user/coding/go/src/testing/testing.go:1934 +0x21d
  1437. created by testing.(*T).Run in goroutine 1
  1438. /home/user/coding/go/src/testing/testing.go:1997 +0x9d3
  1439. goroutine 22 [sleep]:
  1440. time.Sleep(0xf4240)
  1441. /home/user/coding/go/src/runtime/time.go:363 +0x165
  1442. gitp78su.ipnodns.ru/svi/kern/v3/kc/helpers.SleepMs(...)
  1443. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/kc/helpers/helpers.go:64
  1444. gitp78su.ipnodns.ru/svi/kern/v3/krn/kctx/kwg.(*kernelWg).close(0xc0002126e0)
  1445. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/krn/kctx/kwg/kwg.go:126 +0xa5
  1446. created by gitp78su.ipnodns.ru/svi/kern/v3/krn/kctx/kwg.GetKernelWg in goroutine 21
  1447. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/krn/kctx/kwg/kwg.go:48 +0x47d
  1448. goroutine 8 [sleep]:
  1449. time.Sleep(0x2540be400)
  1450. /home/user/coding/go/src/runtime/time.go:363 +0x165
  1451. github.com/valyala/fasthttp.(*workerPool).Start.func2()
  1452. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/workerpool.go:68 +0x47
  1453. created by github.com/valyala/fasthttp.(*workerPool).Start in goroutine 68
  1454. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/workerpool.go:60 +0x19a
  1455. goroutine 35 [syscall]:
  1456. os/signal.signal_recv()
  1457. /home/user/coding/go/src/runtime/sigqueue.go:152 +0x29
  1458. os/signal.loop()
  1459. /home/user/coding/go/src/os/signal/signal_unix.go:23 +0x1d
  1460. created by os/signal.Notify.func1.1 in goroutine 23
  1461. /home/user/coding/go/src/os/signal/signal.go:152 +0x47
  1462. goroutine 68 [IO wait]:
  1463. internal/poll.runtime_pollWait(0x7982eff99e00, 0x72)
  1464. /home/user/coding/go/src/runtime/netpoll.go:351 +0x85
  1465. internal/poll.(*pollDesc).wait(0xc000216020, 0x72, 0x0)
  1466. /home/user/coding/go/src/internal/poll/fd_poll_runtime.go:84 +0xb1
  1467. internal/poll.(*pollDesc).waitRead(...)
  1468. /home/user/coding/go/src/internal/poll/fd_poll_runtime.go:89
  1469. internal/poll.(*FD).Accept(0xc000216000)
  1470. /home/user/coding/go/src/internal/poll/fd_unix.go:613 +0x4ea
  1471. net.(*netFD).accept(0xc000216000)
  1472. /home/user/coding/go/src/net/fd_unix.go:161 +0x45
  1473. net.(*TCPListener).accept(0xc0005ae000)
  1474. /home/user/coding/go/src/net/tcpsock_posix.go:159 +0x4e
  1475. net.(*TCPListener).Accept(0xc0005ae000)
  1476. /home/user/coding/go/src/net/tcpsock.go:380 +0x65
  1477. github.com/valyala/fasthttp.acceptConn(0xc0002bc008, {0x10a21f0, 0xc0005ae000}, 0xc000599d68)
  1478. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/server.go:1990 +0x62
  1479. github.com/valyala/fasthttp.(*Server).Serve(0xc0002bc008, {0x10a21f0, 0xc0005ae000})
  1480. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/server.go:1878 +0x7ce
  1481. github.com/gofiber/fiber/v2.(*App).Listen(0xc0002b6008, {0xc00046000a, 0x6})
  1482. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/gofiber/fiber/v2/listen.go:93 +0x2b3
  1483. gitp78su.ipnodns.ru/svi/kern/v3/krn/kserv_http.(*kServHttp).Run.func1()
  1484. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/krn/kserv_http/kserv_http.go:131 +0xfd
  1485. created by gitp78su.ipnodns.ru/svi/kern/v3/krn/kserv_http.(*kServHttp).Run in goroutine 6
  1486. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/krn/kserv_http/kserv_http.go:134 +0x3a5
  1487. goroutine 69 [chan receive]:
  1488. gitp78su.ipnodns.ru/svi/kern/v3/krn/kserv_http.(*kServHttp).fnChErr(0xc0002aa310, 0xc000170070)
  1489. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/krn/kserv_http/kserv_http.go:160 +0x3b
  1490. created by gitp78su.ipnodns.ru/svi/kern/v3/krn/kserv_http.(*kServHttp).Run in goroutine 6
  1491. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/krn/kserv_http/kserv_http.go:135 +0x44d
  1492. goroutine 39 [sleep]:
  1493. time.Sleep(0x3b9aca00)
  1494. /home/user/coding/go/src/runtime/time.go:363 +0x165
  1495. github.com/valyala/fasthttp.updateServerDate.func1()
  1496. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/header.go:2309 +0x25
  1497. created by github.com/valyala/fasthttp.updateServerDate in goroutine 7
  1498. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/header.go:2307 +0x29
  1499. goroutine 43 [chan receive]:
  1500. github.com/valyala/fasthttp/stackless.funcWorker(...)
  1501. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
  1502. created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 42
  1503. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
  1504. goroutine 44 [chan receive]:
  1505. github.com/valyala/fasthttp/stackless.funcWorker(...)
  1506. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
  1507. created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 42
  1508. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
  1509. goroutine 45 [chan receive]:
  1510. github.com/valyala/fasthttp/stackless.funcWorker(...)
  1511. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
  1512. created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 42
  1513. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
  1514. goroutine 46 [chan receive]:
  1515. github.com/valyala/fasthttp/stackless.funcWorker(...)
  1516. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
  1517. created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 42
  1518. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
  1519. goroutine 47 [chan receive]:
  1520. github.com/valyala/fasthttp/stackless.funcWorker(...)
  1521. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
  1522. created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 42
  1523. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
  1524. goroutine 48 [chan receive]:
  1525. github.com/valyala/fasthttp/stackless.funcWorker(...)
  1526. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
  1527. created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 42
  1528. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
  1529. goroutine 49 [chan receive]:
  1530. github.com/valyala/fasthttp/stackless.funcWorker(...)
  1531. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
  1532. created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 42
  1533. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
  1534. goroutine 82 [chan receive]:
  1535. github.com/valyala/fasthttp/stackless.funcWorker(...)
  1536. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
  1537. created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 42
  1538. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
  1539. goroutine 83 [chan receive]:
  1540. github.com/valyala/fasthttp/stackless.funcWorker(...)
  1541. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
  1542. created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 42
  1543. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
  1544. goroutine 84 [chan receive]:
  1545. github.com/valyala/fasthttp/stackless.funcWorker(...)
  1546. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
  1547. created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 42
  1548. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
  1549. goroutine 85 [chan receive]:
  1550. github.com/valyala/fasthttp/stackless.funcWorker(...)
  1551. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
  1552. created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 42
  1553. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
  1554. goroutine 86 [chan receive]:
  1555. github.com/valyala/fasthttp/stackless.funcWorker(...)
  1556. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
  1557. created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 42
  1558. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
  1559. goroutine 87 [chan receive]:
  1560. github.com/valyala/fasthttp/stackless.funcWorker(...)
  1561. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
  1562. created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 42
  1563. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
  1564. goroutine 88 [chan receive]:
  1565. github.com/valyala/fasthttp/stackless.funcWorker(...)
  1566. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
  1567. created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 42
  1568. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
  1569. goroutine 89 [chan receive]:
  1570. github.com/valyala/fasthttp/stackless.funcWorker(...)
  1571. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
  1572. created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 42
  1573. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
  1574. goroutine 90 [chan receive]:
  1575. github.com/valyala/fasthttp/stackless.funcWorker(...)
  1576. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
  1577. created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 42
  1578. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
  1579. FAIL gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_serv_http/page_monolit 30.018s
  1580. -test.shuffle 1761727914842679877
  1581. DEBU 2025-10-29 11:51:54.842 +03 MSK kernelWg.GetKernelWg(): run
  1582. DEBU 2025-10-29 11:51:54.843 +03 MSK kernelKeeper.GetKernelKeeper(): first run
  1583. DEBU 2025-10-29 11:51:54.843 +03 MSK kernelWg.Add(): stream='kernel_keeper'
  1584. DEBU 2025-10-29 11:51:54.843 +03 MSK LocalCtx.Set(): key='monolitName'
  1585. DEBU 2025-10-29 11:51:54.843 +03 MSK kernelKeeper.run()
  1586. DEBU 2025-10-29 11:51:54.843 +03 MSK kernelWg.Add(): stream='bus_base'
  1587. DEBU 2025-10-29 11:51:54.843 +03 MSK LocalCtx.Set(): key='kernBusBase'
  1588. DEBU 2025-10-29 11:51:54.843 +03 MSK kServHttp.GetKernelServHttp(): first run
  1589. DEBU 2025-10-29 11:51:54.843 +03 MSK LocalCtx.KBusBase.run()
  1590. DEBU 2025-10-29 11:51:54.843 +03 MSK LocalCtx.Get(): key='monolitName'
  1591. DEBU 2025-10-29 11:51:54.843 +03 MSK LocalCtx.Get(): key='monolitName'
  1592. DEBU 2025-10-29 11:51:54.843 +03 MSK LocalCtx.Get(): key='monolitName'
  1593. DEBU 2025-10-29 11:51:54.843 +03 MSK LocalCtx.KBusBase.Publish(): topic='wui_live'
  1594. DEBU 2025-10-29 11:51:54.965 +03 MSK kernelWg.Add(): stream='kernel_server_http'
  1595. DEBU 2025-10-29 11:51:54.965 +03 MSK LocalCtx.Set(): key='fiberApp'
  1596. DEBU 2025-10-29 11:51:54.965 +03 MSK LocalCtx.Set(): key='kServHttp'
  1597. DEBU 2025-10-29 11:51:54.965 +03 MSK LocalCtx.Set(): key='wui_U56VP5ZOC25Y4IS3KOH3Q2K3PG'
  1598. DEBU 2025-10-29 11:51:54.965 +03 MSK LocalCtx.Set(): key='wui_7YIITLDDKXGZFU5QF3BFKXY2C6'
  1599. DEBU 2025-10-29 11:51:54.965 +03 MSK LocalCtx.Get(): key='fiberApp'
  1600. DEBU 2025-10-29 11:51:54.965 +03 MSK LocalCtx.Get(): key='fiberApp'
  1601. DEBU 2025-10-29 11:51:54.965 +03 MSK LocalCtx.Get(): key='fiberApp'
  1602. DEBU 2025-10-29 11:51:54.965 +03 MSK LocalCtx.Get(): key='fiberApp'
  1603. DEBU 2025-10-29 11:51:54.965 +03 MSK LocalCtx.Set(): key='isLocal'
  1604. DEBU 2025-10-29 11:51:54.965 +03 MSK LocalCtx.Get(): key='isLocal'
  1605. DEBU 2025-10-29 11:51:54.965 +03 MSK LocalCtx.Set(): key='monolitName'
  1606. DEBU 2025-10-29 11:51:54.965 +03 MSK LocalCtx.Set(): key='monolit'
  1607. DEBU 2025-10-29 11:51:54.965 +03 MSK LocalCtx.Set(): key='monolitName'
  1608. DEBU 2025-10-29 11:51:54.965 +03 MSK kServHttp.GetKernelServHttp()
  1609. INFO 2025-10-29 11:51:54.965 +03 MSK LocalCtx.ModuleWui.Run(): module=wui, is run
  1610. DEBU 2025-10-29 11:51:54.965 +03 MSK kServHttp.Run(): url='http://localhost:18330/'
  1611. ┌───────────────────────────────────────────────────┐
  1612. │ test_monolit │
  1613. │ Fiber v2.52.9 │
  1614. │ http://127.0.0.1:18330 │
  1615. │ (bound on host 0.0.0.0 and port 18330) │
  1616. │ │
  1617. │ Handlers ............ 18 Processes ........... 1 │
  1618. │ Prefork ....... Disabled PID ........... 1032399 │
  1619. └───────────────────────────────────────────────────┘
  1620. DEBU 2025-10-29 11:51:54.967 +03 MSK kServHttp.Run(): url='http://localhost:18330/'
  1621. method | path | name | handlers
  1622. ------ | ---- | ---- | --------
  1623. DELETE | / | | github.com/gofiber/fiber/v2/middleware/compress.New.func3
  1624. CONNECTERRO 2025-10-29 11:51:54.967 +03 MSK kServHttp.Run(): err=
  1625. kServHttp.fnChErr(): in listen, err=
  1626. failed to listen: listen tcp4 :18330: bind: address already in use
  1627. DEBU 2025-10-29 11:51:54.967 +03 MSK LocalCtx.kCtx.Cancel()
  1628. | DEBU 2025-10-29 11:51:54.967 +03 MSK LocalCtx.kCtx.Done()
  1629. / DEBU 2025-10-29 11:51:54.967 +03 MSK LocalCtx.kCtx.Done()
  1630. DEBU 2025-10-29 11:51:54.967 +03 MSK kernelKeeper.run(): cancel app context, err=
  1631. context canceled
  1632. DEBU 2025-10-29 11:51:54.967 +03 MSK LocalCtx.kCtx.Done()
  1633. | | github.com/gofiber/fiber/v2/middleware/compress.New.func3
  1634. DEBU 2025-10-29 11:51:54.967 +03 MSK kernelWg.Done(): stream(kernel_keeper) done
  1635. DEBU 2025-10-29 11:51:54.967 +03 MSK kernelKeeper.run(): end
  1636. DEBU 2025-10-29 11:51:54.967 +03 MSK LocalCtx.Get(): key='ert'
  1637. PUT | DEBU 2025-10-29 11:51:54.967 +03 MSK kernelWg.Done(): stream(bus_base) done
  1638. / | | github.com/gofiber/fiber/v2/middleware/compress.New.func3
  1639. HEAD | / | DEBU 2025-10-29 11:51:54.967 +03 MSK LocalCtx.KBusBase.close(): done
  1640. | github.com/gofiber/fiber/v2/middleware/compress.New.func3
  1641. PATCH | / ERRO 2025-10-29 11:51:54.967 +03 MSK LocalCtx.ModuleWui.wuiClick(): id(ert), widget not exists
  1642. | | github.com/gofiber/fiber/v2/middleware/compress.New.func3
  1643. GET | / | | github.com/gofiber/fiber/v2/middleware/compress.New.func3
  1644. OPTIONS | / | | github.com/gofiber/fiber/v2/middleware/compress.New.func3
  1645. POST | / | | github.com/gofiber/fiber/v2/middleware/compress.New.func3
  1646. TRACE | / | | github.com/gofiber/fiber/v2/middleware/compress.New.func3
  1647. POST | /api_time | | gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_serv_http/http_api.(*HttpApi).postTime-fm
  1648. POST | /module/:id | DEBU 2025-10-29 11:51:54.968 +03 MSK LocalCtx.Set(): key='wui_ZFWINUM6IGEV6LHKS3ET7GD4QG'
  1649. | gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_serv_http/page_module.(*PageModule).postModule-fm
  1650. POST | /module_ctx/:id | | gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_serv_http/page_module.(*PageModule).postModuleCtx-fm
  1651. POST | /module_log/:id | | gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_serv_http/page_module.(*PageModule).postModuleLog-fm
  1652. POST | /module_state/:id | | DEBU 2025-10-29 11:51:54.968 +03 MSK LocalCtx.Get(): key='wui_ZFWINUM6IGEV6LHKS3ET7GD4QG'
  1653. ERRO 2025-10-29 11:51:54.968 +03 MSK LocalCtx.ModuleWui.wuiClick(): widget(*wlabel.WuiLabel) not button
  1654. gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_serv_http/page_module.(*PageModule).postModuleState-fm
  1655. POST | /module_svg_day/svg_day_:id.svg | | gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_serv_http/page_module.(*PageModule).postSvgDay-fm
  1656. POST | DEBU 2025-10-29 11:51:54.968 +03 MSK LocalCtx.Set(): key='wui_77DL37XSLN6TFGIOYNFGELQCST'
  1657. /module_svg_min/svg_min_:id.svg | | gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_serv_http/page_module.(*PageModule).postSvgMin-fm
  1658. POST | /module_svg_sec/svg_sec_:id.svg | | gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_serv_http/page_module.(*PageModule).postSvgSec-fm
  1659. HEAD | /monitor | DEBU 2025-10-29 11:51:54.968 +03 MSK LocalCtx.Get(): key='wui_77DL37XSLN6TFGIOYNFGELQCST'
  1660. | github.com/gofiber/fiber/v2/middleware/monitor.New.func2
  1661. GET | /monitor | | github.com/gofiber/fiber/v2/middleware/monitor.New.func2
  1662. HEAD | /monolit | | gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_serv_http/page_monolit.(*PageMonolit).getMonolit-fm
  1663. GET | /monolit | | DEBU 2025-10-29 11:51:54.968 +03 MSK LocalCtx.Set(): key='wui_4EMHBMSTC4IRYMLHXZYPKL4CCU'
  1664. gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_serv_http/page_monolit.(*PageMonolit).getMonolit-fm
  1665. POST | /monolit_ctx | | gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_serv_http/page_monolit.(*PageMonolit).postMonolitCtx-fm
  1666. POST | /monolit_log | DEBU 2025-10-29 11:51:54.968 +03 MSK LocalCtx.Get(): key='wui_4EMHBMSTC4IRYMLHXZYPKL4CCU'
  1667. | gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_serv_http/page_monolit.(*PageMonolit).postMonolitLog-fm
  1668. POST | /monolit_state | | gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_serv_http/page_monolit.(*PageMonolit).postMonolitState-fm
  1669. POST | /static | | github.com/gofiber/fiber/v2/middleware/filesystem.New.func1
  1670. DELETE | /static | | DEBU 2025-10-29 11:51:54.969 +03 MSK LocalCtx.Set(): key='wui_T3EQZ5HFYN3LT5Z3I244KREAV7'
  1671. github.com/gofiber/fiber/v2/middleware/filesystem.New.func1
  1672. PUT | /static | | github.com/gofiber/fiber/v2/middleware/filesystem.New.func1
  1673. CONNECT | /static | | github.com/gofiber/fiber/v2/middleware/filesystem.New.func1
  1674. OPTIONS | /static | DEBU 2025-10-29 11:51:54.969 +03 MSK LocalCtx.Get(): key='wui_T3EQZ5HFYN3LT5Z3I244KREAV7'
  1675. | github.com/gofiber/fiber/v2/middleware/filesystem.New.func1
  1676. GET | /static | | github.com/gofiber/fiber/v2/middleware/filesystem.New.func1
  1677. TRACE | /static | | github.com/gofiber/fiber/v2/middleware/filesystem.New.func1
  1678. HEAD | /static | | github.com/gofiber/fiber/v2/middleware/filesystem.New.func1
  1679. PATCH | /static | | github.com/gofiber/fiber/v2/middleware/filesystem.New.func1
  1680. POST | DEBU 2025-10-29 11:51:54.969 +03 MSK LocalCtx.kCtx.Cancel()
  1681. /wui/click/:id | | gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_wui.GetModuleWui.HTTPHandlerFunc.HTTPHandler.func1
  1682. coverage: 100.0% of statements
  1683. panic: test timed out after 30s
  1684. running tests:
  1685. TestModKernelCtx (30s)
  1686. goroutine 89 [running]:
  1687. testing.(*M).startAlarm.func1()
  1688. /home/user/coding/go/src/testing/testing.go:2682 +0x605
  1689. created by time.goFunc
  1690. /home/user/coding/go/src/time/sleep.go:215 +0x45
  1691. goroutine 1 [chan receive]:
  1692. testing.(*T).Run(0xc000102fc0, {0xc587f0, 0x10}, 0x101cf00)
  1693. /home/user/coding/go/src/testing/testing.go:2005 +0x9fe
  1694. testing.runTests.func1(0xc000102fc0)
  1695. /home/user/coding/go/src/testing/testing.go:2477 +0x86
  1696. testing.tRunner(0xc000102fc0, 0xc000047ae0)
  1697. /home/user/coding/go/src/testing/testing.go:1934 +0x21d
  1698. testing.runTests(0xc000126660, {0x14a7230, 0x1, 0x1}, {0x2?, 0x4b6125?, 0x14bf7c0?})
  1699. /home/user/coding/go/src/testing/testing.go:2475 +0x96d
  1700. testing.(*M).Run(0xc0001246e0)
  1701. /home/user/coding/go/src/testing/testing.go:2337 +0xed5
  1702. main.main()
  1703. _testmain.go:55 +0x165
  1704. goroutine 23 [sleep]:
  1705. time.Sleep(0xf4240)
  1706. /home/user/coding/go/src/runtime/time.go:363 +0x165
  1707. gitp78su.ipnodns.ru/svi/kern/v3/kc/helpers.SleepMs(...)
  1708. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/kc/helpers/helpers.go:64
  1709. gitp78su.ipnodns.ru/svi/kern/v3/krn/kctx/kwg.(*kernelWg).Wait(0xc0001926e0)
  1710. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/krn/kctx/kwg/kwg.go:93 +0x30
  1711. gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_wui.(*tester).done(0xc000114fc0)
  1712. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_wui/mod_wui_test.go:184 +0x17a
  1713. gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_wui.TestModKernelCtx(0xc000103180)
  1714. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_wui/mod_wui_test.go:53 +0x2e5
  1715. testing.tRunner(0xc000103180, 0x101cf00)
  1716. /home/user/coding/go/src/testing/testing.go:1934 +0x21d
  1717. created by testing.(*T).Run in goroutine 1
  1718. /home/user/coding/go/src/testing/testing.go:1997 +0x9d3
  1719. goroutine 24 [sleep]:
  1720. time.Sleep(0xf4240)
  1721. /home/user/coding/go/src/runtime/time.go:363 +0x165
  1722. gitp78su.ipnodns.ru/svi/kern/v3/kc/helpers.SleepMs(...)
  1723. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/kc/helpers/helpers.go:64
  1724. gitp78su.ipnodns.ru/svi/kern/v3/krn/kctx/kwg.(*kernelWg).close(0xc0001926e0)
  1725. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/krn/kctx/kwg/kwg.go:126 +0xa5
  1726. created by gitp78su.ipnodns.ru/svi/kern/v3/krn/kctx/kwg.GetKernelWg in goroutine 23
  1727. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/krn/kctx/kwg/kwg.go:48 +0x47d
  1728. goroutine 28 [sleep]:
  1729. time.Sleep(0xdf8475800)
  1730. /home/user/coding/go/src/runtime/time.go:363 +0x165
  1731. gitp78su.ipnodns.ru/svi/kern/v3/krn/kmodule/mod_stat.(*ModStat).eventMinute(0xc000115140)
  1732. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/krn/kmodule/mod_stat/mod_stat.go:50 +0x65
  1733. created by gitp78su.ipnodns.ru/svi/kern/v3/krn/kmodule/mod_stat.NewModStat in goroutine 23
  1734. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/krn/kmodule/mod_stat/mod_stat.go:42 +0x5ab
  1735. goroutine 3 [syscall]:
  1736. os/signal.signal_recv()
  1737. /home/user/coding/go/src/runtime/sigqueue.go:152 +0x29
  1738. os/signal.loop()
  1739. /home/user/coding/go/src/os/signal/signal_unix.go:23 +0x1d
  1740. created by os/signal.Notify.func1.1 in goroutine 25
  1741. /home/user/coding/go/src/os/signal/signal.go:152 +0x47
  1742. goroutine 4 [sleep]:
  1743. time.Sleep(0xb2d05e00)
  1744. /home/user/coding/go/src/runtime/time.go:363 +0x165
  1745. github.com/gofiber/fiber/v2/middleware/monitor.New.func1.1()
  1746. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/gofiber/fiber/v2/middleware/monitor/monitor.go:68 +0x4b
  1747. created by github.com/gofiber/fiber/v2/middleware/monitor.New.func1 in goroutine 23
  1748. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/gofiber/fiber/v2/middleware/monitor/monitor.go:66 +0x178
  1749. goroutine 78 [sleep]:
  1750. time.Sleep(0x3b9aca00)
  1751. /home/user/coding/go/src/runtime/time.go:363 +0x165
  1752. github.com/valyala/fasthttp.updateServerDate.func1()
  1753. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/header.go:2309 +0x25
  1754. created by github.com/valyala/fasthttp.updateServerDate in goroutine 36
  1755. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/header.go:2307 +0x29
  1756. goroutine 8 [IO wait]:
  1757. internal/poll.runtime_pollWait(0x7f3324599e00, 0x72)
  1758. /home/user/coding/go/src/runtime/netpoll.go:351 +0x85
  1759. internal/poll.(*pollDesc).wait(0xc00059a020, 0x72, 0x0)
  1760. /home/user/coding/go/src/internal/poll/fd_poll_runtime.go:84 +0xb1
  1761. internal/poll.(*pollDesc).waitRead(...)
  1762. /home/user/coding/go/src/internal/poll/fd_poll_runtime.go:89
  1763. internal/poll.(*FD).Accept(0xc00059a000)
  1764. /home/user/coding/go/src/internal/poll/fd_unix.go:613 +0x4ea
  1765. net.(*netFD).accept(0xc00059a000)
  1766. /home/user/coding/go/src/net/fd_unix.go:161 +0x45
  1767. net.(*TCPListener).accept(0xc00059e000)
  1768. /home/user/coding/go/src/net/tcpsock_posix.go:159 +0x4e
  1769. net.(*TCPListener).Accept(0xc00059e000)
  1770. /home/user/coding/go/src/net/tcpsock.go:380 +0x65
  1771. github.com/valyala/fasthttp.acceptConn(0xc00017a6c8, {0x10c90a0, 0xc00059e000}, 0xc00014bd68)
  1772. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/server.go:1990 +0x62
  1773. github.com/valyala/fasthttp.(*Server).Serve(0xc00017a6c8, {0x10c90a0, 0xc00059e000})
  1774. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/server.go:1878 +0x7ce
  1775. github.com/gofiber/fiber/v2.(*App).Listen(0xc000178508, {0xc00045e00a, 0x6})
  1776. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/gofiber/fiber/v2/listen.go:93 +0x2b3
  1777. gitp78su.ipnodns.ru/svi/kern/v3/krn/kserv_http.(*kServHttp).Run.func1()
  1778. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/krn/kserv_http/kserv_http.go:131 +0xfd
  1779. created by gitp78su.ipnodns.ru/svi/kern/v3/krn/kserv_http.(*kServHttp).Run in goroutine 6
  1780. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/krn/kserv_http/kserv_http.go:134 +0x3a5
  1781. goroutine 9 [chan receive]:
  1782. gitp78su.ipnodns.ru/svi/kern/v3/krn/kserv_http.(*kServHttp).fnChErr(0xc000170ee0, 0xc0003ba930)
  1783. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/krn/kserv_http/kserv_http.go:160 +0x3b
  1784. created by gitp78su.ipnodns.ru/svi/kern/v3/krn/kserv_http.(*kServHttp).Run in goroutine 6
  1785. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/krn/kserv_http/kserv_http.go:135 +0x44d
  1786. goroutine 40 [sleep]:
  1787. time.Sleep(0x2540be400)
  1788. /home/user/coding/go/src/runtime/time.go:363 +0x165
  1789. github.com/valyala/fasthttp.(*workerPool).Start.func2()
  1790. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/workerpool.go:68 +0x47
  1791. created by github.com/valyala/fasthttp.(*workerPool).Start in goroutine 8
  1792. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/workerpool.go:60 +0x19a
  1793. goroutine 16 [chan receive]:
  1794. github.com/valyala/fasthttp/stackless.funcWorker(...)
  1795. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
  1796. created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 15
  1797. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
  1798. goroutine 98 [chan receive]:
  1799. github.com/valyala/fasthttp/stackless.funcWorker(...)
  1800. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
  1801. created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 15
  1802. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
  1803. goroutine 99 [chan receive]:
  1804. github.com/valyala/fasthttp/stackless.funcWorker(...)
  1805. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
  1806. created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 15
  1807. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
  1808. goroutine 100 [chan receive]:
  1809. github.com/valyala/fasthttp/stackless.funcWorker(...)
  1810. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
  1811. created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 15
  1812. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
  1813. goroutine 101 [chan receive]:
  1814. github.com/valyala/fasthttp/stackless.funcWorker(...)
  1815. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
  1816. created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 15
  1817. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
  1818. goroutine 102 [chan receive]:
  1819. github.com/valyala/fasthttp/stackless.funcWorker(...)
  1820. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
  1821. created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 15
  1822. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
  1823. goroutine 103 [chan receive]:
  1824. github.com/valyala/fasthttp/stackless.funcWorker(...)
  1825. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
  1826. created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 15
  1827. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
  1828. goroutine 104 [chan receive]:
  1829. github.com/valyala/fasthttp/stackless.funcWorker(...)
  1830. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
  1831. created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 15
  1832. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
  1833. goroutine 105 [chan receive]:
  1834. github.com/valyala/fasthttp/stackless.funcWorker(...)
  1835. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
  1836. created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 15
  1837. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
  1838. goroutine 106 [chan receive]:
  1839. github.com/valyala/fasthttp/stackless.funcWorker(...)
  1840. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
  1841. created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 15
  1842. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
  1843. goroutine 107 [chan receive]:
  1844. github.com/valyala/fasthttp/stackless.funcWorker(...)
  1845. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
  1846. created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 15
  1847. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
  1848. goroutine 108 [chan receive]:
  1849. github.com/valyala/fasthttp/stackless.funcWorker(...)
  1850. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
  1851. created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 15
  1852. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
  1853. goroutine 109 [chan receive]:
  1854. github.com/valyala/fasthttp/stackless.funcWorker(...)
  1855. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
  1856. created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 15
  1857. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
  1858. goroutine 110 [chan receive]:
  1859. github.com/valyala/fasthttp/stackless.funcWorker(...)
  1860. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
  1861. created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 15
  1862. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
  1863. goroutine 111 [chan receive]:
  1864. github.com/valyala/fasthttp/stackless.funcWorker(...)
  1865. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
  1866. created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 15
  1867. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
  1868. goroutine 112 [chan receive]:
  1869. github.com/valyala/fasthttp/stackless.funcWorker(...)
  1870. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:54
  1871. created by github.com/valyala/fasthttp/stackless.NewFunc.func1 in goroutine 15
  1872. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/stackless/func.go:31 +0x45
  1873. FAIL gitp78su.ipnodns.ru/svi/kern/v3/mds/mod_wui 30.019s
  1874. ok gitp78su.ipnodns.ru/svi/kern/v3/mock/mock_env 1.010s coverage: 100.0% of statements
  1875. ok gitp78su.ipnodns.ru/svi/kern/v3/mock/mock_hand_serve 1.011s coverage: 100.0% of statements
  1876. -test.shuffle 1761727914990507952
  1877. DEBU 2025-10-29 11:51:54.990 +03 MSK kernelWg.GetKernelWg(): run
  1878. DEBU 2025-10-29 11:51:54.990 +03 MSK kernelKeeper.GetKernelKeeper(): first run
  1879. DEBU 2025-10-29 11:51:54.990 +03 MSK kernelWg.Add(): stream='kernel_keeper'
  1880. DEBU 2025-10-29 11:51:54.990 +03 MSK LocalCtx.Set(): key='monolitName'
  1881. DEBU 2025-10-29 11:51:54.990 +03 MSK kernelKeeper.run()
  1882. 2025/10/29 11:51:54 HandlerHttpSub.FnBack(): msg=hello_test
  1883. DEBU 2025-10-29 11:51:54.991 +03 MSK kServHttp.GetKernelServHttp(): first run
  1884. DEBU 2025-10-29 11:51:54.991 +03 MSK LocalCtx.Get(): key='monolitName'
  1885. DEBU 2025-10-29 11:51:54.991 +03 MSK LocalCtx.Get(): key='monolitName'
  1886. DEBU 2025-10-29 11:51:54.991 +03 MSK LocalCtx.Get(): key='monolitName'
  1887. DEBU 2025-10-29 11:51:55.114 +03 MSK kernelWg.Add(): stream='kernel_server_http'
  1888. DEBU 2025-10-29 11:51:55.114 +03 MSK LocalCtx.Set(): key='fiberApp'
  1889. DEBU 2025-10-29 11:51:55.114 +03 MSK LocalCtx.Set(): key='kServHttp'
  1890. 2025/10/29 11:51:55 HandlerHttpSub.FnBack(): msg=test_msg
  1891. 2025/10/29 11:51:55 HandlerHttpSub.FnBack(): msg=test_msg
  1892. DEBU 2025-10-29 11:51:55.114 +03 MSK LocalCtx.kCtx.Cancel()
  1893. DEBU 2025-10-29 11:51:55.114 +03 MSK kServHttp.Run(): url='"http://localhost:18200/"'
  1894. DEBU 2025-10-29 11:51:55.114 +03 MSK kernelKeeper.run(): cancel app context, err=
  1895. context canceled
  1896. DEBU 2025-10-29 11:51:55.114 +03 MSK kernelWg.Done(): stream(kernel_keeper) done
  1897. DEBU 2025-10-29 11:51:55.114 +03 MSK kernelKeeper.run(): end
  1898. DEBU 2025-10-29 11:51:55.114 +03 MSK LocalCtx.kCtx.Done()
  1899. ┌───────────────────────────────────────────────────┐
  1900. │ test_monolit │
  1901. │ Fiber v2.52.9 │
  1902. │ http://127.0.0.1:18200 │
  1903. │ (bound on host 0.0.0.0 and port 18200) │
  1904. │ │
  1905. │ Handlers ............. 5 Processes ........... 1 │
  1906. │ Prefork ....... Disabled PID ........... 1032525 │
  1907. └───────────────────────────────────────────────────┘
  1908. method | path | name | handlers
  1909. ------ | ---- | ---- | --------
  1910. PUT | / | | github.com/gofiber/fiber/v2/middleware/compress.New.func3
  1911. PATCH | / | | github.com/gofiber/fiber/v2/middleware/compress.New.func3
  1912. TRACE | / | | github.com/gofiber/fiber/v2/middleware/compress.New.func3
  1913. HEAD | / | | github.com/gofiber/fiber/v2/middleware/compress.New.func3
  1914. OPTIONS | / | | github.com/gofiber/fiber/v2/middleware/compress.New.func3
  1915. GET | / | | github.com/gofiber/fiber/v2/middleware/compress.New.func3
  1916. POST | / | | github.com/gofiber/fiber/v2/middleware/compress.New.func3
  1917. CONNECT | / | | github.com/gofiber/fiber/v2/middleware/compress.New.func3
  1918. DELETE | / | | github.com/gofiber/fiber/v2/middleware/compress.New.func3
  1919. HEAD | /monitor | | github.com/gofiber/fiber/v2/middleware/monitor.New.func2
  1920. GET | /monitor | | github.com/gofiber/fiber/v2/middleware/monitor.New.func2
  1921. PUT | /static | | github.com/gofiber/fiber/v2/middleware/filesystem.New.func1
  1922. DELETE | /static | | github.com/gofiber/fiber/v2/middleware/filesystem.New.func1
  1923. POST | /static | | github.com/gofiber/fiber/v2/middleware/filesystem.New.func1
  1924. CONNECT | /static | | github.com/gofiber/fiber/v2/middleware/filesystem.New.func1
  1925. HEAD | /static | | github.com/gofiber/fiber/v2/middleware/filesystem.New.func1
  1926. OPTIONS | /static | | github.com/gofiber/fiber/v2/middleware/filesystem.New.func1
  1927. TRACE | /static | | github.com/gofiber/fiber/v2/middleware/filesystem.New.func1
  1928. GET | /static | | github.com/gofiber/fiber/v2/middleware/filesystem.New.func1
  1929. PATCH | /static | | github.com/gofiber/fiber/v2/middleware/filesystem.New.func1
  1930. POST | /test/local | | gitp78su.ipnodns.ru/svi/kern/v3/mock/mock_hand_sub_http.(*tester).testLocal-fm
  1931. coverage: 100.0% of statements
  1932. panic: test timed out after 30s
  1933. running tests:
  1934. TestHandlerHttpSub (30s)
  1935. goroutine 58 [running]:
  1936. testing.(*M).startAlarm.func1()
  1937. /home/user/coding/go/src/testing/testing.go:2682 +0x605
  1938. created by time.goFunc
  1939. /home/user/coding/go/src/time/sleep.go:215 +0x45
  1940. goroutine 1 [chan receive]:
  1941. testing.(*T).Run(0xc000102fc0, {0xc27e2d, 0x12}, 0xfe76b0)
  1942. /home/user/coding/go/src/testing/testing.go:2005 +0x9fe
  1943. testing.runTests.func1(0xc000102fc0)
  1944. /home/user/coding/go/src/testing/testing.go:2477 +0x86
  1945. testing.tRunner(0xc000102fc0, 0xc000047ae0)
  1946. /home/user/coding/go/src/testing/testing.go:1934 +0x21d
  1947. testing.runTests(0xc000126660, {0x1455ee0, 0x1, 0x1}, {0x2?, 0x4b6125?, 0x146d1a0?})
  1948. /home/user/coding/go/src/testing/testing.go:2475 +0x96d
  1949. testing.(*M).Run(0xc000124780)
  1950. /home/user/coding/go/src/testing/testing.go:2337 +0xed5
  1951. main.main()
  1952. _testmain.go:55 +0x165
  1953. goroutine 23 [sleep]:
  1954. time.Sleep(0xf4240)
  1955. /home/user/coding/go/src/runtime/time.go:363 +0x165
  1956. gitp78su.ipnodns.ru/svi/kern/v3/kc/helpers.SleepMs(...)
  1957. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/kc/helpers/helpers.go:64
  1958. gitp78su.ipnodns.ru/svi/kern/v3/krn/kctx/kwg.(*kernelWg).Wait(0xc0001926e0)
  1959. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/krn/kctx/kwg/kwg.go:93 +0x30
  1960. gitp78su.ipnodns.ru/svi/kern/v3/mock/mock_hand_sub_http.TestHandlerHttpSub(0xc000103180)
  1961. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/mock/mock_hand_sub_http/mock_hand_sub_http_test.go:31 +0x1a4
  1962. testing.tRunner(0xc000103180, 0xfe76b0)
  1963. /home/user/coding/go/src/testing/testing.go:1934 +0x21d
  1964. created by testing.(*T).Run in goroutine 1
  1965. /home/user/coding/go/src/testing/testing.go:1997 +0x9d3
  1966. goroutine 24 [sleep]:
  1967. time.Sleep(0xf4240)
  1968. /home/user/coding/go/src/runtime/time.go:363 +0x165
  1969. gitp78su.ipnodns.ru/svi/kern/v3/kc/helpers.SleepMs(...)
  1970. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/kc/helpers/helpers.go:64
  1971. gitp78su.ipnodns.ru/svi/kern/v3/krn/kctx/kwg.(*kernelWg).close(0xc0001926e0)
  1972. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/krn/kctx/kwg/kwg.go:126 +0xa5
  1973. created by gitp78su.ipnodns.ru/svi/kern/v3/krn/kctx/kwg.GetKernelWg in goroutine 23
  1974. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/krn/kctx/kwg/kwg.go:48 +0x47d
  1975. goroutine 66 [sleep]:
  1976. time.Sleep(0x2540be400)
  1977. /home/user/coding/go/src/runtime/time.go:363 +0x165
  1978. github.com/valyala/fasthttp.(*workerPool).Start.func2()
  1979. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/workerpool.go:68 +0x47
  1980. created by github.com/valyala/fasthttp.(*workerPool).Start in goroutine 7
  1981. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/workerpool.go:60 +0x19a
  1982. goroutine 34 [syscall]:
  1983. os/signal.signal_recv()
  1984. /home/user/coding/go/src/runtime/sigqueue.go:152 +0x29
  1985. os/signal.loop()
  1986. /home/user/coding/go/src/os/signal/signal_unix.go:23 +0x1d
  1987. created by os/signal.Notify.func1.1 in goroutine 25
  1988. /home/user/coding/go/src/os/signal/signal.go:152 +0x47
  1989. goroutine 4 [sleep]:
  1990. time.Sleep(0xb2d05e00)
  1991. /home/user/coding/go/src/runtime/time.go:363 +0x165
  1992. github.com/gofiber/fiber/v2/middleware/monitor.New.func1.1()
  1993. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/gofiber/fiber/v2/middleware/monitor/monitor.go:68 +0x4b
  1994. created by github.com/gofiber/fiber/v2/middleware/monitor.New.func1 in goroutine 23
  1995. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/gofiber/fiber/v2/middleware/monitor/monitor.go:66 +0x178
  1996. goroutine 5 [sleep]:
  1997. time.Sleep(0x989680)
  1998. /home/user/coding/go/src/runtime/time.go:363 +0x165
  1999. gitp78su.ipnodns.ru/svi/kern/v3/krn/kserv_http.(*kServHttp).Run(0xc000170d20)
  2000. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/krn/kserv_http/kserv_http.go:149 +0x4bd
  2001. created by gitp78su.ipnodns.ru/svi/kern/v3/mock/mock_hand_sub_http.(*tester).backBad2 in goroutine 23
  2002. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/mock/mock_hand_sub_http/mock_hand_sub_http_test.go:54 +0x285
  2003. goroutine 7 [IO wait]:
  2004. internal/poll.runtime_pollWait(0x76d16b3b9e00, 0x72)
  2005. /home/user/coding/go/src/runtime/netpoll.go:351 +0x85
  2006. internal/poll.(*pollDesc).wait(0xc000196020, 0x72, 0x0)
  2007. /home/user/coding/go/src/internal/poll/fd_poll_runtime.go:84 +0xb1
  2008. internal/poll.(*pollDesc).waitRead(...)
  2009. /home/user/coding/go/src/internal/poll/fd_poll_runtime.go:89
  2010. internal/poll.(*FD).Accept(0xc000196000)
  2011. /home/user/coding/go/src/internal/poll/fd_unix.go:613 +0x4ea
  2012. net.(*netFD).accept(0xc000196000)
  2013. /home/user/coding/go/src/net/fd_unix.go:161 +0x45
  2014. net.(*TCPListener).accept(0xc000524040)
  2015. /home/user/coding/go/src/net/tcpsock_posix.go:159 +0x4e
  2016. net.(*TCPListener).Accept(0xc000524040)
  2017. /home/user/coding/go/src/net/tcpsock.go:380 +0x65
  2018. github.com/valyala/fasthttp.acceptConn(0xc00017a6c8, {0x108fd68, 0xc000524040}, 0xc00014bd68)
  2019. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/server.go:1990 +0x62
  2020. github.com/valyala/fasthttp.(*Server).Serve(0xc00017a6c8, {0x108fd68, 0xc000524040})
  2021. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/valyala/fasthttp/server.go:1878 +0x7ce
  2022. github.com/gofiber/fiber/v2.(*App).Listen(0xc000178508, {0xc0003f204a, 0x6})
  2023. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/vendor/github.com/gofiber/fiber/v2/listen.go:93 +0x2b3
  2024. gitp78su.ipnodns.ru/svi/kern/v3/krn/kserv_http.(*kServHttp).Run.func1()
  2025. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/krn/kserv_http/kserv_http.go:131 +0xfd
  2026. created by gitp78su.ipnodns.ru/svi/kern/v3/krn/kserv_http.(*kServHttp).Run in goroutine 5
  2027. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/krn/kserv_http/kserv_http.go:134 +0x3a5
  2028. goroutine 8 [chan receive]:
  2029. gitp78su.ipnodns.ru/svi/kern/v3/krn/kserv_http.(*kServHttp).fnChErr(0xc000170d20, 0xc000170bd0)
  2030. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/krn/kserv_http/kserv_http.go:160 +0x3b
  2031. created by gitp78su.ipnodns.ru/svi/kern/v3/krn/kserv_http.(*kServHttp).Run in goroutine 5
  2032. /home/user/coding/gowork/src/gitp78su.ipnodns.ru/svi/kern/v3/krn/kserv_http/kserv_http.go:135 +0x44d
  2033. FAIL gitp78su.ipnodns.ru/svi/kern/v3/mock/mock_hand_sub_http 30.017s
  2034. ok gitp78su.ipnodns.ru/svi/kern/v3/mock/mock_hand_sub_local 1.010s coverage: 100.0% of statements
  2035. ok gitp78su.ipnodns.ru/svi/kern/v3/wui 1.011s coverage: 100.0% of statements
  2036. ok gitp78su.ipnodns.ru/svi/kern/v3/wui/hx_swap 1.011s coverage: 100.0% of statements
  2037. ok gitp78su.ipnodns.ru/svi/kern/v3/wui/hx_swap_oob 1.011s coverage: 100.0% of statements
  2038. ok gitp78su.ipnodns.ru/svi/kern/v3/wui/hx_target 1.010s coverage: 100.0% of statements
  2039. ok gitp78su.ipnodns.ru/svi/kern/v3/wui/hx_trigger 1.011s coverage: 100.0% of statements
  2040. ok gitp78su.ipnodns.ru/svi/kern/v3/wui/hx_url 1.011s coverage: 100.0% of statements
  2041. ok gitp78su.ipnodns.ru/svi/kern/v3/wui/hx_url_method 1.010s coverage: 100.0% of statements
  2042. ok gitp78su.ipnodns.ru/svi/kern/v3/wui/hx_url_patch 1.012s coverage: 100.0% of statements
  2043. ok gitp78su.ipnodns.ru/svi/kern/v3/wui/hx_vals 1.011s coverage: 100.0% of statements
  2044. ok gitp78su.ipnodns.ru/svi/kern/v3/wui/wbutton 1.012s coverage: 100.0% of statements
  2045. ok gitp78su.ipnodns.ru/svi/kern/v3/wui/wctx 1.010s coverage: 100.0% of statements
  2046. ok gitp78su.ipnodns.ru/svi/kern/v3/wui/whx 1.010s coverage: 100.0% of statements
  2047. ok gitp78su.ipnodns.ru/svi/kern/v3/wui/wlabel 1.010s coverage: 100.0% of statements
  2048. ok gitp78su.ipnodns.ru/svi/kern/v3/wui/wtext 1.010s coverage: 100.0% of statements
  2049. ok gitp78su.ipnodns.ru/svi/kern/v3/wui/wtypes 1.010s coverage: [no statements]
  2050. ok gitp78su.ipnodns.ru/svi/kern/v3/wui/wwidget 1.010s coverage: 100.0% of statements
  2051. FAIL