info.2023-09-07.log 609 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532
  1. 09:54:08.951 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.0.Final
  2. 09:54:09.005 [restartedMain] INFO com.zhyc.xps.XPSApplication - Starting XPSApplication using Java 17.0.6 with PID 18968 (E:\zhycnewprj\iotplatform\xps-server-3\xps-application\target\classes started by qzz19 in E:\zhycnewprj\iotplatform\xps-server-3)
  3. 09:54:09.005 [restartedMain] INFO com.zhyc.xps.XPSApplication - The following 1 profile is active: "local"
  4. 09:54:09.061 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
  5. 09:54:09.061 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
  6. 09:54:11.123 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
  7. 09:54:11.126 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  8. 09:54:11.224 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 79 ms. Found 0 Redis repository interfaces.
  9. 09:54:11.396 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created.
  10. 09:54:11.415 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created.
  11. 09:54:12.233 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  12. 09:54:12.234 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 3173 ms
  13. 09:54:14.731 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor
  14. 09:54:14.743 [restartedMain] INFO o.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  15. 09:54:14.743 [restartedMain] INFO org.quartz.core.QuartzScheduler - Quartz Scheduler v.2.3.2 created.
  16. 09:54:14.744 [restartedMain] INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized.
  17. 09:54:14.744 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
  18. Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  19. NOT STARTED.
  20. Currently in standby mode.
  21. Number of jobs executed: 0
  22. Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  23. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
  24. 09:54:14.745 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  25. 09:54:14.745 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2
  26. 09:54:14.745 [restartedMain] INFO org.quartz.core.QuartzScheduler - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@4c822afa
  27. 09:54:16.458 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer - LiveReload server is running on port 35729
  28. 09:54:16.465 [restartedMain] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 15 endpoint(s) beneath base path '/actuator/z'
  29. 09:54:16.610 [restartedMain] INFO io.undertow.websockets.jsr - UT026003: Adding annotated server endpoint class com.zhyc.xps.common.ws.WebSocketServer for path /websocket/link
  30. 09:54:16.642 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  31. 09:54:16.642 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 1 subscriber(s).
  32. 09:54:16.643 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - started bean '_org.springframework.integration.errorLogger'
  33. 09:54:16.668 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  34. 09:54:16.679 [restartedMain] INFO org.xnio - XNIO version 3.8.8.Final
  35. 09:54:16.691 [restartedMain] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.8.Final
  36. 09:54:16.724 [restartedMain] INFO org.jboss.threads - JBoss Threads version 3.5.0.Final
  37. 09:54:16.780 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 1788 (http)
  38. 09:54:16.782 [restartedMain] INFO o.s.s.quartz.SchedulerFactoryBean - Starting Quartz Scheduler now
  39. 09:54:16.783 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  40. 09:54:16.814 [restartedMain] INFO com.zhyc.xps.XPSApplication - Started XPSApplication in 8.371 seconds (process running for 15.895)
  41. 09:54:16.817 [restartedMain] INFO com.zhyc.xps.sys.job.InitSystemJob - 初始化系统定时任务
  42. 09:54:16.824 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Starting...
  43. 09:54:17.274 [restartedMain] INFO p6spy - 2023-09-07 09:54:17 | Time Consuming: 14 ms | Connection: statement-0 | SQL: SELECT 1
  44. 09:54:17.278 [restartedMain] INFO com.zaxxer.hikari.pool.HikariPool - DatebookHikariCP - Added connection com.p6spy.engine.wrapper.ConnectionWrapper@ab0bf84
  45. 09:54:17.282 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Start completed.
  46. 09:54:17.349 [restartedMain] INFO p6spy - 2023-09-07 09:54:17 | Time Consuming: 6 ms | Connection: statement-0 | SQL: SELECT
  47. A.job_id,
  48. A.job_title,
  49. A.job_desc,
  50. A.status,
  51. A.job_type,
  52. A.job_code,
  53. A.job_cron,
  54. A.job_class_id,
  55. B.job_class,
  56. A.cycle_title,
  57. A.cycle_period,
  58. A.cycle_unit
  59. FROM job AS A
  60. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  61. WHERE A.deleted_flag = 0
  62. AND A.status = 1
  63. ORDER BY A.job_id ASC
  64. 09:54:17.370 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  65. 09:54:17.372 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  66. 10:39:42.815 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  67. 10:39:42.817 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.4.Final
  68. 10:39:42.827 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - Removing {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  69. 10:39:42.827 [SpringApplicationShutdownHook] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 0 subscriber(s).
  70. 10:39:42.827 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - stopped bean '_org.springframework.integration.errorLogger'
  71. 10:39:42.933 [SpringApplicationShutdownHook] INFO o.s.j.e.a.AnnotationMBeanExporter - Could not unregister MBean [com.github.tobato.fastdfs.domain.conn:name=fdfsConnectionPool,type=FdfsConnectionPool] as said MBean is not registered (perhaps already unregistered by an external process)
  72. 10:39:42.935 [SpringApplicationShutdownHook] INFO o.s.s.quartz.SchedulerFactoryBean - Shutting down Quartz Scheduler
  73. 10:39:42.935 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
  74. 10:39:42.935 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  75. 10:39:42.935 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
  76. 10:39:42.948 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown initiated...
  77. 10:39:42.950 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown completed.
  78. 10:39:54.243 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.0.Final
  79. 10:39:54.288 [restartedMain] INFO com.zhyc.xps.XPSApplication - Starting XPSApplication using Java 17.0.6 with PID 21808 (E:\zhycnewprj\iotplatform\xps-server-3\xps-application\target\classes started by qzz19 in E:\zhycnewprj\iotplatform\xps-server-3)
  80. 10:39:54.288 [restartedMain] INFO com.zhyc.xps.XPSApplication - The following 1 profile is active: "local"
  81. 10:39:54.342 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
  82. 10:39:54.342 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
  83. 10:39:56.128 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
  84. 10:39:56.131 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  85. 10:39:56.219 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 75 ms. Found 0 Redis repository interfaces.
  86. 10:39:56.386 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created.
  87. 10:39:56.402 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created.
  88. 10:39:57.149 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  89. 10:39:57.150 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 2807 ms
  90. 10:39:59.496 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor
  91. 10:39:59.506 [restartedMain] INFO o.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  92. 10:39:59.506 [restartedMain] INFO org.quartz.core.QuartzScheduler - Quartz Scheduler v.2.3.2 created.
  93. 10:39:59.506 [restartedMain] INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized.
  94. 10:39:59.507 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
  95. Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  96. NOT STARTED.
  97. Currently in standby mode.
  98. Number of jobs executed: 0
  99. Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  100. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
  101. 10:39:59.507 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  102. 10:39:59.507 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2
  103. 10:39:59.507 [restartedMain] INFO org.quartz.core.QuartzScheduler - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@5391e0d7
  104. 10:40:01.202 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer - LiveReload server is running on port 35729
  105. 10:40:01.209 [restartedMain] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 15 endpoint(s) beneath base path '/actuator/z'
  106. 10:40:01.351 [restartedMain] INFO io.undertow.websockets.jsr - UT026003: Adding annotated server endpoint class com.zhyc.xps.common.ws.WebSocketServer for path /websocket/link
  107. 10:40:01.380 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  108. 10:40:01.381 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 1 subscriber(s).
  109. 10:40:01.381 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - started bean '_org.springframework.integration.errorLogger'
  110. 10:40:01.402 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  111. 10:40:01.411 [restartedMain] INFO org.xnio - XNIO version 3.8.8.Final
  112. 10:40:01.421 [restartedMain] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.8.Final
  113. 10:40:01.448 [restartedMain] INFO org.jboss.threads - JBoss Threads version 3.5.0.Final
  114. 10:40:01.503 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 1788 (http)
  115. 10:40:01.505 [restartedMain] INFO o.s.s.quartz.SchedulerFactoryBean - Starting Quartz Scheduler now
  116. 10:40:01.505 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  117. 10:40:01.529 [restartedMain] INFO com.zhyc.xps.XPSApplication - Started XPSApplication in 7.75 seconds (process running for 9.496)
  118. 10:40:01.531 [restartedMain] INFO com.zhyc.xps.sys.job.InitSystemJob - 初始化系统定时任务
  119. 10:40:01.538 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Starting...
  120. 10:40:01.871 [restartedMain] INFO p6spy - 2023-09-07 10:40:01 | Time Consuming: 13 ms | Connection: statement-0 | SQL: SELECT 1
  121. 10:40:01.877 [restartedMain] INFO com.zaxxer.hikari.pool.HikariPool - DatebookHikariCP - Added connection com.p6spy.engine.wrapper.ConnectionWrapper@78c92df2
  122. 10:40:01.880 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Start completed.
  123. 10:40:01.947 [restartedMain] INFO p6spy - 2023-09-07 10:40:01 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT
  124. A.job_id,
  125. A.job_title,
  126. A.job_desc,
  127. A.status,
  128. A.job_type,
  129. A.job_code,
  130. A.job_cron,
  131. A.job_class_id,
  132. B.job_class,
  133. A.cycle_title,
  134. A.cycle_period,
  135. A.cycle_unit
  136. FROM job AS A
  137. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  138. WHERE A.deleted_flag = 0
  139. AND A.status = 1
  140. ORDER BY A.job_id ASC
  141. 10:40:01.967 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  142. 10:40:01.969 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  143. 10:58:11.660 [XNIO-1 task-2] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
  144. 10:58:11.661 [XNIO-1 task-2] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
  145. 10:58:11.664 [XNIO-1 task-2] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 3 ms
  146. 10:58:12.310 [XNIO-1 task-2] INFO p6spy - 2023-09-07 10:58:12 | Time Consuming: 4 ms | Connection: statement-10 | SQL: SELECT 1
  147. 10:58:12.321 [XNIO-1 task-2] INFO p6spy - 2023-09-07 10:58:12 | Time Consuming: 4 ms | Connection: statement-10 | SQL: SELECT
  148. client_id,
  149. client_title,
  150. client_app_id,
  151. client_app_key,
  152. client_app_secret,
  153. client_desc,
  154. status,
  155. is_fixed
  156. FROM client
  157. WHERE deleted_flag = 0
  158. AND client_app_id = '10001'
  159. AND client_app_key = '82a8bf439373e305'
  160. 10:58:12.338 [XNIO-1 task-2] INFO p6spy - 2023-09-07 10:58:12 | Time Consuming: 5 ms | Connection: statement-10 | SQL: SELECT
  161. A.client_id,
  162. A.role_id,
  163. A.permit_id,
  164. A.permit_title,
  165. A.permit_code,
  166. A.permit_entry,
  167. A.permit_desc,
  168. A.permit_type,
  169. A.parent_id,
  170. A.root_id,
  171. A.sort_no,
  172. A.is_home
  173. FROM s_role_permit AS A
  174. WHERE 1 = 1
  175. AND A.client_id = 2
  176. AND A.role_id = 6
  177. ORDER BY A.parent_id ASC ,A.sort_no ASC
  178. 10:58:12.526 [XNIO-1 task-5] INFO p6spy - 2023-09-07 10:58:12 | Time Consuming: 4 ms | Connection: statement-11 | SQL: SELECT 1
  179. 10:58:12.527 [XNIO-1 task-3] INFO p6spy - 2023-09-07 10:58:12 | Time Consuming: 4 ms | Connection: statement-12 | SQL: SELECT 1
  180. 10:58:12.530 [XNIO-1 task-2] INFO p6spy - 2023-09-07 10:58:12 | Time Consuming: 4 ms | Connection: statement-10 | SQL: SELECT *
  181. FROM goaf_syscfg
  182. WHERE oc_id = 406283
  183. 10:58:12.535 [XNIO-1 task-5] INFO p6spy - 2023-09-07 10:58:12 | Time Consuming: 4 ms | Connection: statement-11 | SQL: SELECT *
  184. FROM goaf_devinfo
  185. where oc_id = 406283
  186. 10:58:12.569 [XNIO-1 task-3] INFO p6spy - 2023-09-07 10:58:12 | Time Consuming: 37 ms | Connection: statement-12 | SQL: SELECT count(*)
  187. FROM msg AS M
  188. WHERE M.oc_id = 406283
  189. AND (
  190. EXISTS (
  191. SELECT 1 FROM msg_to TT
  192. WHERE M.oc_id = TT.oc_id AND M.msg_id = TT.msg_id AND TT.msg_to_id = 406283 AND TT.status=0
  193. ) OR
  194. EXISTS (
  195. SELECT 1 FROM msg_cc CC
  196. WHERE M.oc_id = CC.oc_id AND M.msg_id = CC.msg_id AND CC.msg_cc_id = 406283 AND CC.status=0
  197. )
  198. )
  199. 10:58:12.580 [XNIO-1 task-4] INFO p6spy - 2023-09-07 10:58:12 | Time Consuming: 3 ms | Connection: statement-10 | SQL: SELECT count(0) FROM goaf_sensor WHERE oc_id = 406283
  200. 10:58:12.586 [XNIO-1 task-4] INFO p6spy - 2023-09-07 10:58:12 | Time Consuming: 4 ms | Connection: statement-10 | SQL: SELECT *
  201. FROM goaf_sensor
  202. where oc_id = 406283
  203. LIMIT 10
  204. 10:58:37.389 [XNIO-1 task-4] INFO p6spy - 2023-09-07 10:58:37 | Time Consuming: 3 ms | Connection: statement-10 | SQL: SELECT 1
  205. 10:58:37.396 [XNIO-1 task-4] INFO p6spy - 2023-09-07 10:58:37 | Time Consuming: 6 ms | Connection: statement-10 | SQL: replace into uid_sequence(stub) values('a')
  206. 10:58:37.402 [XNIO-1 task-4] INFO p6spy - 2023-09-07 10:58:37 | Time Consuming: 4 ms | Connection: statement-10 | SQL: SELECT LAST_INSERT_ID() AS uid
  207. 10:59:11.758 [XNIO-1 task-4] INFO p6spy - 2023-09-07 10:59:11 | Time Consuming: 4 ms | Connection: statement-10 | SQL: SELECT 1
  208. 10:59:11.766 [XNIO-1 task-4] INFO p6spy - 2023-09-07 10:59:11 | Time Consuming: 7 ms | Connection: statement-10 | SQL: replace into uid_sequence(stub) values('a')
  209. 10:59:11.770 [XNIO-1 task-4] INFO p6spy - 2023-09-07 10:59:11 | Time Consuming: 3 ms | Connection: statement-10 | SQL: SELECT LAST_INSERT_ID() AS uid
  210. 10:59:11.818 [XNIO-1 task-4] INFO p6spy - 2023-09-07 10:59:11 | Time Consuming: 41 ms | Connection: statement-10 | SQL: insert into goaf_sensor
  211. ( goaf_sensor_id,
  212. oc_id,
  213. goaf_sensor_name,
  214. sensor_code,
  215. sensor_baudrate,
  216. goaf_dev_name,
  217. goaf_dev_typename,
  218. goaf_sensor_location,
  219. goaf_install_time,
  220. goaf_sensor_status,
  221. thv_acc_x,
  222. thv_acc_y,
  223. thv_acc_z,
  224. thv_vel_x,
  225. thv_vel_y,
  226. thv_vel_z,
  227. thv_dis_x,
  228. thv_dis_y,
  229. thv_dis_z,
  230. thv_temperature,
  231. ew_acc_x_1,
  232. ew_acc_x_2,
  233. ew_acc_x_3,
  234. ew_acc_x_4,
  235. ew_acc_y_1,
  236. ew_acc_y_2,
  237. ew_acc_y_3,
  238. ew_acc_y_4,
  239. ew_acc_z_1,
  240. ew_acc_z_2,
  241. ew_acc_z_3,
  242. ew_acc_z_4 )
  243. values ( 442193,
  244. 406283,
  245. '12212',
  246. 12212,
  247. 12,
  248. 'other',
  249. '其它',
  250. '12',
  251. '2023-09-07T10:59:20',
  252. 0,
  253. 0,
  254. 0,
  255. 0,
  256. 0,
  257. 0,
  258. 0,
  259. 0,
  260. 0,
  261. 0,
  262. 0,
  263. 0,
  264. 0,
  265. 0,
  266. 0,
  267. 0,
  268. 0,
  269. 0,
  270. 0,
  271. 0,
  272. 0,
  273. 0,
  274. 0 )
  275. 10:59:11.861 [XNIO-1 task-4] INFO p6spy - 2023-09-07 10:59:11 | Time Consuming: 4 ms | Connection: statement-10 | SQL: SELECT count(0) FROM goaf_sensor WHERE oc_id = 406283
  276. 10:59:11.867 [XNIO-1 task-4] INFO p6spy - 2023-09-07 10:59:11 | Time Consuming: 5 ms | Connection: statement-10 | SQL: SELECT *
  277. FROM goaf_sensor
  278. where oc_id = 406283
  279. LIMIT 10
  280. 10:59:33.404 [XNIO-1 task-4] INFO p6spy - 2023-09-07 10:59:33 | Time Consuming: 4 ms | Connection: statement-10 | SQL: SELECT 1
  281. 10:59:33.411 [XNIO-1 task-4] INFO p6spy - 2023-09-07 10:59:33 | Time Consuming: 5 ms | Connection: statement-10 | SQL: SELECT count(0) FROM goaf_sensor WHERE oc_id = 406283
  282. 10:59:33.419 [XNIO-1 task-4] INFO p6spy - 2023-09-07 10:59:33 | Time Consuming: 6 ms | Connection: statement-10 | SQL: SELECT *
  283. FROM goaf_sensor
  284. where oc_id = 406283
  285. LIMIT 10
  286. 11:00:38.892 [XNIO-1 task-4] INFO p6spy - 2023-09-07 11:00:38 | Time Consuming: 4 ms | Connection: statement-10 | SQL: SELECT 1
  287. 11:00:38.901 [XNIO-1 task-4] INFO p6spy - 2023-09-07 11:00:38 | Time Consuming: 8 ms | Connection: statement-10 | SQL: replace into uid_sequence(stub) values('a')
  288. 11:00:38.905 [XNIO-1 task-4] INFO p6spy - 2023-09-07 11:00:38 | Time Consuming: 3 ms | Connection: statement-10 | SQL: SELECT LAST_INSERT_ID() AS uid
  289. 11:04:16.696 [XNIO-1 task-4] INFO p6spy - 2023-09-07 11:04:16 | Time Consuming: 4 ms | Connection: statement-10 | SQL: SELECT 1
  290. 11:04:16.700 [XNIO-1 task-4] INFO p6spy - 2023-09-07 11:04:16 | Time Consuming: 3 ms | Connection: statement-10 | SQL: SELECT count(0) FROM goaf_sensor WHERE oc_id = 406283
  291. 11:04:16.706 [XNIO-1 task-4] INFO p6spy - 2023-09-07 11:04:16 | Time Consuming: 4 ms | Connection: statement-10 | SQL: SELECT *
  292. FROM goaf_sensor
  293. where oc_id = 406283
  294. LIMIT 10
  295. 11:06:44.691 [XNIO-1 task-4] INFO p6spy - 2023-09-07 11:06:44 | Time Consuming: 4 ms | Connection: statement-16 | SQL: SELECT 1
  296. 11:06:44.691 [XNIO-1 task-3] INFO p6spy - 2023-09-07 11:06:44 | Time Consuming: 4 ms | Connection: statement-17 | SQL: SELECT 1
  297. 11:06:44.702 [XNIO-1 task-4] INFO p6spy - 2023-09-07 11:06:44 | Time Consuming: 4 ms | Connection: statement-16 | SQL: SELECT *
  298. FROM goaf_syscfg
  299. WHERE oc_id = 406283
  300. 11:06:44.702 [XNIO-1 task-3] INFO p6spy - 2023-09-07 11:06:44 | Time Consuming: 4 ms | Connection: statement-17 | SQL: SELECT *
  301. FROM goaf_devinfo
  302. where oc_id = 406283
  303. 11:17:01.258 [XNIO-1 task-3] INFO p6spy - 2023-09-07 11:17:01 | Time Consuming: 5013 ms | Connection: statement-24 | SQL: SELECT 1
  304. 11:17:01.259 [XNIO-1 task-5] INFO p6spy - 2023-09-07 11:17:01 | Time Consuming: 5014 ms | Connection: statement-22 | SQL: SELECT 1
  305. 11:17:01.259 [XNIO-1 task-4] INFO p6spy - 2023-09-07 11:17:01 | Time Consuming: 5014 ms | Connection: statement-23 | SQL: SELECT 1
  306. 11:17:01.264 [XNIO-1 task-3] INFO p6spy - 2023-09-07 11:17:01 | Time Consuming: 5 ms | Connection: statement-26 | SQL: SELECT 1
  307. 11:17:01.270 [XNIO-1 task-3] INFO p6spy - 2023-09-07 11:17:01 | Time Consuming: 4 ms | Connection: statement-26 | SQL: SELECT count(0) FROM goaf_sensor WHERE oc_id = 406283
  308. 11:17:01.274 [XNIO-1 task-3] INFO p6spy - 2023-09-07 11:17:01 | Time Consuming: 3 ms | Connection: statement-26 | SQL: SELECT *
  309. FROM goaf_sensor
  310. where oc_id = 406283
  311. LIMIT 10
  312. 11:17:01.285 [XNIO-1 task-5] INFO p6spy - 2023-09-07 11:17:01 | Time Consuming: 5 ms | Connection: statement-26 | SQL: SELECT *
  313. FROM goaf_syscfg
  314. WHERE oc_id = 406283
  315. 11:17:01.308 [XNIO-1 task-4] INFO p6spy - 2023-09-07 11:17:01 | Time Consuming: 3 ms | Connection: statement-26 | SQL: SELECT *
  316. FROM goaf_devinfo
  317. where oc_id = 406283
  318. 11:17:04.777 [XNIO-1 task-2] INFO p6spy - 2023-09-07 11:17:04 | Time Consuming: 5002 ms | Connection: statement-25 | SQL: SELECT 1
  319. 11:17:04.782 [XNIO-1 task-2] INFO p6spy - 2023-09-07 11:17:04 | Time Consuming: 4 ms | Connection: statement-26 | SQL: SELECT 1
  320. 11:17:04.793 [XNIO-1 task-2] INFO p6spy - 2023-09-07 11:17:04 | Time Consuming: 5 ms | Connection: statement-26 | SQL: SELECT
  321. client_id,
  322. client_title,
  323. client_app_id,
  324. client_app_key,
  325. client_app_secret,
  326. client_desc,
  327. status,
  328. is_fixed
  329. FROM client
  330. WHERE deleted_flag = 0
  331. AND client_app_id = '10001'
  332. AND client_app_key = '82a8bf439373e305'
  333. 11:17:04.813 [XNIO-1 task-2] INFO p6spy - 2023-09-07 11:17:04 | Time Consuming: 6 ms | Connection: statement-26 | SQL: SELECT
  334. A.client_id,
  335. A.role_id,
  336. A.permit_id,
  337. A.permit_title,
  338. A.permit_code,
  339. A.permit_entry,
  340. A.permit_desc,
  341. A.permit_type,
  342. A.parent_id,
  343. A.root_id,
  344. A.sort_no,
  345. A.is_home
  346. FROM s_role_permit AS A
  347. WHERE 1 = 1
  348. AND A.client_id = 2
  349. AND A.role_id = 6
  350. ORDER BY A.parent_id ASC ,A.sort_no ASC
  351. 11:17:04.951 [XNIO-1 task-2] INFO p6spy - 2023-09-07 11:17:04 | Time Consuming: 3 ms | Connection: statement-26 | SQL: SELECT count(0) FROM goaf_sensor WHERE oc_id = 406283
  352. 11:17:04.954 [XNIO-1 task-4] INFO p6spy - 2023-09-07 11:17:04 | Time Consuming: 5 ms | Connection: statement-27 | SQL: SELECT 1
  353. 11:17:04.954 [XNIO-1 task-3] INFO p6spy - 2023-09-07 11:17:04 | Time Consuming: 4 ms | Connection: statement-28 | SQL: SELECT 1
  354. 11:17:04.955 [XNIO-1 task-5] INFO p6spy - 2023-09-07 11:17:04 | Time Consuming: 5 ms | Connection: statement-29 | SQL: SELECT 1
  355. 11:17:04.958 [XNIO-1 task-2] INFO p6spy - 2023-09-07 11:17:04 | Time Consuming: 5 ms | Connection: statement-26 | SQL: SELECT *
  356. FROM goaf_sensor
  357. where oc_id = 406283
  358. LIMIT 10
  359. 11:17:04.963 [XNIO-1 task-4] INFO p6spy - 2023-09-07 11:17:04 | Time Consuming: 3 ms | Connection: statement-27 | SQL: SELECT *
  360. FROM goaf_syscfg
  361. WHERE oc_id = 406283
  362. 11:17:04.963 [XNIO-1 task-3] INFO p6spy - 2023-09-07 11:17:04 | Time Consuming: 3 ms | Connection: statement-28 | SQL: SELECT *
  363. FROM goaf_devinfo
  364. where oc_id = 406283
  365. 11:17:04.989 [XNIO-1 task-5] INFO p6spy - 2023-09-07 11:17:04 | Time Consuming: 29 ms | Connection: statement-29 | SQL: SELECT count(*)
  366. FROM msg AS M
  367. WHERE M.oc_id = 406283
  368. AND (
  369. EXISTS (
  370. SELECT 1 FROM msg_to TT
  371. WHERE M.oc_id = TT.oc_id AND M.msg_id = TT.msg_id AND TT.msg_to_id = 406283 AND TT.status=0
  372. ) OR
  373. EXISTS (
  374. SELECT 1 FROM msg_cc CC
  375. WHERE M.oc_id = CC.oc_id AND M.msg_id = CC.msg_id AND CC.msg_cc_id = 406283 AND CC.status=0
  376. )
  377. )
  378. 11:17:56.057 [XNIO-1 task-5] INFO p6spy - 2023-09-07 11:17:56 | Time Consuming: 5 ms | Connection: statement-29 | SQL: SELECT 1
  379. 11:17:56.063 [XNIO-1 task-5] INFO p6spy - 2023-09-07 11:17:56 | Time Consuming: 4 ms | Connection: statement-29 | SQL: SELECT count(0) FROM goaf_sensor WHERE oc_id = 406283
  380. 11:17:56.068 [XNIO-1 task-5] INFO p6spy - 2023-09-07 11:17:56 | Time Consuming: 4 ms | Connection: statement-29 | SQL: SELECT *
  381. FROM goaf_sensor
  382. where oc_id = 406283
  383. LIMIT 10
  384. 11:18:46.532 [XNIO-1 task-5] INFO p6spy - 2023-09-07 11:18:46 | Time Consuming: 4 ms | Connection: statement-29 | SQL: SELECT 1
  385. 11:18:54.413 [XNIO-1 task-5] INFO p6spy - 2023-09-07 11:18:54 | Time Consuming: 4 ms | Connection: statement-29 | SQL: SELECT 1
  386. 11:22:07.398 [XNIO-1 task-5] INFO p6spy - 2023-09-07 11:22:07 | Time Consuming: 6 ms | Connection: statement-29 | SQL: SELECT 1
  387. 11:22:18.129 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  388. 11:22:18.130 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.4.Final
  389. 11:22:18.133 [SpringApplicationShutdownHook] INFO io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
  390. 11:22:18.135 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - Removing {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  391. 11:22:18.135 [SpringApplicationShutdownHook] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 0 subscriber(s).
  392. 11:22:18.135 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - stopped bean '_org.springframework.integration.errorLogger'
  393. 11:22:18.148 [SpringApplicationShutdownHook] INFO o.s.j.e.a.AnnotationMBeanExporter - Could not unregister MBean [com.github.tobato.fastdfs.domain.conn:name=fdfsConnectionPool,type=FdfsConnectionPool] as said MBean is not registered (perhaps already unregistered by an external process)
  394. 11:22:18.152 [SpringApplicationShutdownHook] INFO o.s.s.quartz.SchedulerFactoryBean - Shutting down Quartz Scheduler
  395. 11:22:18.152 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
  396. 11:22:18.152 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  397. 11:22:18.153 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
  398. 11:22:18.179 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown initiated...
  399. 11:22:18.182 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown completed.
  400. 11:22:22.663 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.0.Final
  401. 11:22:22.710 [restartedMain] INFO com.zhyc.xps.XPSApplication - Starting XPSApplication using Java 17.0.6 with PID 3720 (E:\zhycnewprj\iotplatform\xps-server-3\xps-application\target\classes started by qzz19 in E:\zhycnewprj\iotplatform\xps-server-3)
  402. 11:22:22.711 [restartedMain] INFO com.zhyc.xps.XPSApplication - The following 1 profile is active: "local"
  403. 11:22:22.766 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
  404. 11:22:22.766 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
  405. 11:22:24.586 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
  406. 11:22:24.590 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  407. 11:22:24.685 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 81 ms. Found 0 Redis repository interfaces.
  408. 11:22:24.859 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created.
  409. 11:22:24.875 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created.
  410. 11:22:25.641 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  411. 11:22:25.642 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 2875 ms
  412. 11:22:28.011 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor
  413. 11:22:28.021 [restartedMain] INFO o.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  414. 11:22:28.021 [restartedMain] INFO org.quartz.core.QuartzScheduler - Quartz Scheduler v.2.3.2 created.
  415. 11:22:28.022 [restartedMain] INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized.
  416. 11:22:28.022 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
  417. Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  418. NOT STARTED.
  419. Currently in standby mode.
  420. Number of jobs executed: 0
  421. Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  422. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
  423. 11:22:28.022 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  424. 11:22:28.022 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2
  425. 11:22:28.022 [restartedMain] INFO org.quartz.core.QuartzScheduler - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@29022629
  426. 11:22:29.727 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer - LiveReload server is running on port 35729
  427. 11:22:29.734 [restartedMain] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 15 endpoint(s) beneath base path '/actuator/z'
  428. 11:22:29.880 [restartedMain] INFO io.undertow.websockets.jsr - UT026003: Adding annotated server endpoint class com.zhyc.xps.common.ws.WebSocketServer for path /websocket/link
  429. 11:22:29.911 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  430. 11:22:29.912 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 1 subscriber(s).
  431. 11:22:29.912 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - started bean '_org.springframework.integration.errorLogger'
  432. 11:22:29.932 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  433. 11:22:29.941 [restartedMain] INFO org.xnio - XNIO version 3.8.8.Final
  434. 11:22:29.952 [restartedMain] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.8.Final
  435. 11:22:29.983 [restartedMain] INFO org.jboss.threads - JBoss Threads version 3.5.0.Final
  436. 11:22:30.034 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 1788 (http)
  437. 11:22:30.036 [restartedMain] INFO o.s.s.quartz.SchedulerFactoryBean - Starting Quartz Scheduler now
  438. 11:22:30.036 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  439. 11:22:30.061 [restartedMain] INFO com.zhyc.xps.XPSApplication - Started XPSApplication in 7.857 seconds (process running for 8.831)
  440. 11:22:30.063 [restartedMain] INFO com.zhyc.xps.sys.job.InitSystemJob - 初始化系统定时任务
  441. 11:22:30.070 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Starting...
  442. 11:22:30.389 [restartedMain] INFO p6spy - 2023-09-07 11:22:30 | Time Consuming: 13 ms | Connection: statement-0 | SQL: SELECT 1
  443. 11:22:30.393 [restartedMain] INFO com.zaxxer.hikari.pool.HikariPool - DatebookHikariCP - Added connection com.p6spy.engine.wrapper.ConnectionWrapper@28c4da8b
  444. 11:22:30.404 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Start completed.
  445. 11:22:30.473 [restartedMain] INFO p6spy - 2023-09-07 11:22:30 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT
  446. A.job_id,
  447. A.job_title,
  448. A.job_desc,
  449. A.status,
  450. A.job_type,
  451. A.job_code,
  452. A.job_cron,
  453. A.job_class_id,
  454. B.job_class,
  455. A.cycle_title,
  456. A.cycle_period,
  457. A.cycle_unit
  458. FROM job AS A
  459. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  460. WHERE A.deleted_flag = 0
  461. AND A.status = 1
  462. ORDER BY A.job_id ASC
  463. 11:22:30.494 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  464. 11:22:30.496 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  465. 11:22:31.326 [RMI TCP Connection(8)-192.168.3.5] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
  466. 11:22:31.326 [RMI TCP Connection(8)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
  467. 11:22:31.330 [RMI TCP Connection(8)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 4 ms
  468. 11:22:31.354 [RMI TCP Connection(9)-192.168.3.5] INFO p6spy - 2023-09-07 11:22:31 | Time Consuming: 44 ms | Connection: statement-0 | SQL: SELECT 1
  469. 11:22:31.369 [RMI TCP Connection(9)-192.168.3.5] INFO p6spy - 2023-09-07 11:22:31 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  470. 11:22:44.455 [XNIO-1 task-2] INFO p6spy - 2023-09-07 11:22:44 | Time Consuming: 8 ms | Connection: statement-0 | SQL: SELECT 1
  471. 11:22:44.488 [XNIO-1 task-2] INFO p6spy - 2023-09-07 11:22:44 | Time Consuming: 31 ms | Connection: statement-0 | SQL: UPDATE goaf_sensor
  472. SET goaf_sensor_name = '12212',
  473. sensor_code = 12212,
  474. modbus_id = 1,
  475. sensor_baudrate = 12,
  476. goaf_dev_name = 'other',
  477. goaf_dev_typename = '其它',
  478. goaf_sensor_location = '12',
  479. goaf_check_time_interval = 10,
  480. goaf_install_time = '2023-09-07T10:59:20',
  481. thv_acc_x = 0,
  482. thv_acc_y = 0,
  483. thv_acc_z = 0,
  484. thv_vel_x = 0,
  485. thv_vel_y = 0,
  486. thv_vel_z = 0,
  487. thv_dis_x = 0,
  488. thv_dis_y = 0,
  489. thv_dis_z = 0,
  490. thv_temperature = 0,
  491. ew_acc_x_1 = 1,
  492. ew_acc_x_2 = 21,
  493. ew_acc_x_3 = 31,
  494. ew_acc_x_4 = 41,
  495. ew_acc_y_1 = 2,
  496. ew_acc_y_2 = 22,
  497. ew_acc_y_3 = 32,
  498. ew_acc_y_4 = 42,
  499. ew_acc_z_1 = 3,
  500. ew_acc_z_2 = 23,
  501. ew_acc_z_3 = 33,
  502. ew_acc_z_4 = 43
  503. WHERE goaf_sensor_id = 442193
  504. 11:22:44.628 [XNIO-1 task-2] INFO p6spy - 2023-09-07 11:22:44 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT count(0) FROM goaf_sensor WHERE oc_id = 406283
  505. 11:22:44.633 [XNIO-1 task-2] INFO p6spy - 2023-09-07 11:22:44 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT *
  506. FROM goaf_sensor
  507. where oc_id = 406283
  508. LIMIT 10
  509. 11:23:55.820 [XNIO-1 task-2] INFO p6spy - 2023-09-07 11:23:55 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT 1
  510. 11:23:55.826 [XNIO-1 task-2] INFO p6spy - 2023-09-07 11:23:55 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT count(0) FROM goaf_sensor WHERE oc_id = 406283
  511. 11:23:55.830 [XNIO-1 task-2] INFO p6spy - 2023-09-07 11:23:55 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT *
  512. FROM goaf_sensor
  513. where oc_id = 406283
  514. LIMIT 10
  515. 11:23:59.825 [XNIO-1 task-2] INFO p6spy - 2023-09-07 11:23:59 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  516. 11:23:59.841 [XNIO-1 task-2] INFO p6spy - 2023-09-07 11:23:59 | Time Consuming: 6 ms | Connection: statement-0 | SQL: SELECT *
  517. FROM goaf_devinfo
  518. where oc_id = 406283
  519. 11:23:59.850 [XNIO-1 task-2] INFO p6spy - 2023-09-07 11:23:59 | Time Consuming: 7 ms | Connection: statement-0 | SQL: SELECT *
  520. FROM goaf_sensor
  521. where oc_id = 406283
  522. AND goaf_dev_name = 'other'
  523. 11:23:59.861 [XNIO-1 task-2] INFO p6spy - 2023-09-07 11:23:59 | Time Consuming: 8 ms | Connection: statement-0 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  524. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  525. FROM
  526. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  527. FROM goaf_sensordata
  528. WHERE goaf_sensor_id = 442129
  529. ORDER BY goaf_datareport_time DESC
  530. LIMIT 1) AS A
  531. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  532. LEFT JOIN goaf_sensor AS C ON A.goaf_sensor_id = C.goaf_sensor_id
  533. 11:23:59.867 [XNIO-1 task-2] INFO p6spy - 2023-09-07 11:23:59 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  534. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  535. FROM
  536. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  537. FROM goaf_sensordata
  538. WHERE goaf_sensor_id = 442193
  539. ORDER BY goaf_datareport_time DESC
  540. LIMIT 1) AS A
  541. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  542. LEFT JOIN goaf_sensor AS C ON A.goaf_sensor_id = C.goaf_sensor_id
  543. 11:23:59.874 [XNIO-1 task-2] INFO p6spy - 2023-09-07 11:23:59 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT *
  544. FROM goaf_sensor
  545. where oc_id = 406283
  546. AND goaf_dev_name = 'waterpump'
  547. 11:23:59.880 [XNIO-1 task-2] INFO p6spy - 2023-09-07 11:23:59 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  548. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  549. FROM
  550. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  551. FROM goaf_sensordata
  552. WHERE goaf_sensor_id = 442136
  553. ORDER BY goaf_datareport_time DESC
  554. LIMIT 1) AS A
  555. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  556. LEFT JOIN goaf_sensor AS C ON A.goaf_sensor_id = C.goaf_sensor_id
  557. 11:23:59.885 [XNIO-1 task-2] INFO p6spy - 2023-09-07 11:23:59 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT *
  558. FROM goaf_sensor
  559. where oc_id = 406283
  560. AND goaf_dev_name = 'machinery'
  561. 11:23:59.897 [XNIO-1 task-2] INFO p6spy - 2023-09-07 11:23:59 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  562. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  563. FROM
  564. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  565. FROM goaf_sensordata
  566. WHERE goaf_sensor_id = 442137
  567. ORDER BY goaf_datareport_time DESC
  568. LIMIT 1) AS A
  569. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  570. LEFT JOIN goaf_sensor AS C ON A.goaf_sensor_id = C.goaf_sensor_id
  571. 11:23:59.901 [XNIO-1 task-2] INFO p6spy - 2023-09-07 11:23:59 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT *
  572. FROM goaf_sensor
  573. where oc_id = 406283
  574. AND goaf_dev_name = 'compress'
  575. 11:23:59.907 [XNIO-1 task-2] INFO p6spy - 2023-09-07 11:23:59 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  576. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  577. FROM
  578. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  579. FROM goaf_sensordata
  580. WHERE goaf_sensor_id = 442135
  581. ORDER BY goaf_datareport_time DESC
  582. LIMIT 1) AS A
  583. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  584. LEFT JOIN goaf_sensor AS C ON A.goaf_sensor_id = C.goaf_sensor_id
  585. 11:23:59.911 [XNIO-1 task-2] INFO p6spy - 2023-09-07 11:23:59 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  586. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  587. FROM
  588. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  589. FROM goaf_sensordata
  590. WHERE goaf_sensor_id = 442139
  591. ORDER BY goaf_datareport_time DESC
  592. LIMIT 1) AS A
  593. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  594. LEFT JOIN goaf_sensor AS C ON A.goaf_sensor_id = C.goaf_sensor_id
  595. 11:27:38.196 [XNIO-1 task-2] INFO p6spy - 2023-09-07 11:27:38 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  596. 11:27:38.207 [XNIO-1 task-2] INFO p6spy - 2023-09-07 11:27:38 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT *
  597. FROM goaf_devinfo
  598. where oc_id = 406283
  599. 11:27:38.214 [XNIO-1 task-2] INFO p6spy - 2023-09-07 11:27:38 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT *
  600. FROM goaf_sensor
  601. where oc_id = 406283
  602. AND goaf_dev_name = 'other'
  603. 11:27:38.220 [XNIO-1 task-2] INFO p6spy - 2023-09-07 11:27:38 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  604. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  605. FROM
  606. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  607. FROM goaf_sensordata
  608. WHERE goaf_sensor_id = 442129
  609. ORDER BY goaf_datareport_time DESC
  610. LIMIT 1) AS A
  611. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  612. LEFT JOIN goaf_sensor AS C ON A.goaf_sensor_id = C.goaf_sensor_id
  613. 11:27:38.224 [XNIO-1 task-2] INFO p6spy - 2023-09-07 11:27:38 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  614. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  615. FROM
  616. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  617. FROM goaf_sensordata
  618. WHERE goaf_sensor_id = 442193
  619. ORDER BY goaf_datareport_time DESC
  620. LIMIT 1) AS A
  621. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  622. LEFT JOIN goaf_sensor AS C ON A.goaf_sensor_id = C.goaf_sensor_id
  623. 11:27:38.229 [XNIO-1 task-2] INFO p6spy - 2023-09-07 11:27:38 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT *
  624. FROM goaf_sensor
  625. where oc_id = 406283
  626. AND goaf_dev_name = 'waterpump'
  627. 11:27:38.234 [XNIO-1 task-2] INFO p6spy - 2023-09-07 11:27:38 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  628. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  629. FROM
  630. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  631. FROM goaf_sensordata
  632. WHERE goaf_sensor_id = 442136
  633. ORDER BY goaf_datareport_time DESC
  634. LIMIT 1) AS A
  635. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  636. LEFT JOIN goaf_sensor AS C ON A.goaf_sensor_id = C.goaf_sensor_id
  637. 11:27:38.239 [XNIO-1 task-2] INFO p6spy - 2023-09-07 11:27:38 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT *
  638. FROM goaf_sensor
  639. where oc_id = 406283
  640. AND goaf_dev_name = 'machinery'
  641. 11:27:38.244 [XNIO-1 task-2] INFO p6spy - 2023-09-07 11:27:38 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  642. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  643. FROM
  644. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  645. FROM goaf_sensordata
  646. WHERE goaf_sensor_id = 442137
  647. ORDER BY goaf_datareport_time DESC
  648. LIMIT 1) AS A
  649. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  650. LEFT JOIN goaf_sensor AS C ON A.goaf_sensor_id = C.goaf_sensor_id
  651. 11:27:38.248 [XNIO-1 task-2] INFO p6spy - 2023-09-07 11:27:38 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT *
  652. FROM goaf_sensor
  653. where oc_id = 406283
  654. AND goaf_dev_name = 'compress'
  655. 11:27:38.254 [XNIO-1 task-2] INFO p6spy - 2023-09-07 11:27:38 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  656. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  657. FROM
  658. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  659. FROM goaf_sensordata
  660. WHERE goaf_sensor_id = 442135
  661. ORDER BY goaf_datareport_time DESC
  662. LIMIT 1) AS A
  663. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  664. LEFT JOIN goaf_sensor AS C ON A.goaf_sensor_id = C.goaf_sensor_id
  665. 11:27:38.259 [XNIO-1 task-2] INFO p6spy - 2023-09-07 11:27:38 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  666. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  667. FROM
  668. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  669. FROM goaf_sensordata
  670. WHERE goaf_sensor_id = 442139
  671. ORDER BY goaf_datareport_time DESC
  672. LIMIT 1) AS A
  673. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  674. LEFT JOIN goaf_sensor AS C ON A.goaf_sensor_id = C.goaf_sensor_id
  675. 11:27:47.667 [XNIO-1 task-2] INFO p6spy - 2023-09-07 11:27:47 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  676. 11:27:47.678 [XNIO-1 task-2] INFO p6spy - 2023-09-07 11:27:47 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT
  677. client_id,
  678. client_title,
  679. client_app_id,
  680. client_app_key,
  681. client_app_secret,
  682. client_desc,
  683. status,
  684. is_fixed
  685. FROM client
  686. WHERE deleted_flag = 0
  687. AND client_app_id = '10001'
  688. AND client_app_key = '82a8bf439373e305'
  689. 11:27:47.693 [XNIO-1 task-2] INFO p6spy - 2023-09-07 11:27:47 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT
  690. A.client_id,
  691. A.role_id,
  692. A.permit_id,
  693. A.permit_title,
  694. A.permit_code,
  695. A.permit_entry,
  696. A.permit_desc,
  697. A.permit_type,
  698. A.parent_id,
  699. A.root_id,
  700. A.sort_no,
  701. A.is_home
  702. FROM s_role_permit AS A
  703. WHERE 1 = 1
  704. AND A.client_id = 2
  705. AND A.role_id = 6
  706. ORDER BY A.parent_id ASC ,A.sort_no ASC
  707. 11:27:47.906 [XNIO-1 task-2] INFO p6spy - 2023-09-07 11:27:47 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT *
  708. FROM goaf_devinfo
  709. where oc_id = 406283
  710. 11:27:47.914 [XNIO-1 task-2] INFO p6spy - 2023-09-07 11:27:47 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT *
  711. FROM goaf_sensor
  712. where oc_id = 406283
  713. AND goaf_dev_name = 'other'
  714. 11:27:47.921 [XNIO-1 task-2] INFO p6spy - 2023-09-07 11:27:47 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  715. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  716. FROM
  717. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  718. FROM goaf_sensordata
  719. WHERE goaf_sensor_id = 442129
  720. ORDER BY goaf_datareport_time DESC
  721. LIMIT 1) AS A
  722. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  723. LEFT JOIN goaf_sensor AS C ON A.goaf_sensor_id = C.goaf_sensor_id
  724. 11:27:47.925 [XNIO-1 task-2] INFO p6spy - 2023-09-07 11:27:47 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  725. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  726. FROM
  727. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  728. FROM goaf_sensordata
  729. WHERE goaf_sensor_id = 442193
  730. ORDER BY goaf_datareport_time DESC
  731. LIMIT 1) AS A
  732. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  733. LEFT JOIN goaf_sensor AS C ON A.goaf_sensor_id = C.goaf_sensor_id
  734. 11:27:47.930 [XNIO-1 task-2] INFO p6spy - 2023-09-07 11:27:47 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT *
  735. FROM goaf_sensor
  736. where oc_id = 406283
  737. AND goaf_dev_name = 'waterpump'
  738. 11:27:47.936 [XNIO-1 task-2] INFO p6spy - 2023-09-07 11:27:47 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  739. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  740. FROM
  741. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  742. FROM goaf_sensordata
  743. WHERE goaf_sensor_id = 442136
  744. ORDER BY goaf_datareport_time DESC
  745. LIMIT 1) AS A
  746. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  747. LEFT JOIN goaf_sensor AS C ON A.goaf_sensor_id = C.goaf_sensor_id
  748. 11:27:47.942 [XNIO-1 task-2] INFO p6spy - 2023-09-07 11:27:47 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT *
  749. FROM goaf_sensor
  750. where oc_id = 406283
  751. AND goaf_dev_name = 'machinery'
  752. 11:27:47.948 [XNIO-1 task-2] INFO p6spy - 2023-09-07 11:27:47 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  753. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  754. FROM
  755. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  756. FROM goaf_sensordata
  757. WHERE goaf_sensor_id = 442137
  758. ORDER BY goaf_datareport_time DESC
  759. LIMIT 1) AS A
  760. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  761. LEFT JOIN goaf_sensor AS C ON A.goaf_sensor_id = C.goaf_sensor_id
  762. 11:27:47.954 [XNIO-1 task-2] INFO p6spy - 2023-09-07 11:27:47 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT *
  763. FROM goaf_sensor
  764. where oc_id = 406283
  765. AND goaf_dev_name = 'compress'
  766. 11:27:47.960 [XNIO-1 task-2] INFO p6spy - 2023-09-07 11:27:47 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  767. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  768. FROM
  769. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  770. FROM goaf_sensordata
  771. WHERE goaf_sensor_id = 442135
  772. ORDER BY goaf_datareport_time DESC
  773. LIMIT 1) AS A
  774. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  775. LEFT JOIN goaf_sensor AS C ON A.goaf_sensor_id = C.goaf_sensor_id
  776. 11:27:47.967 [XNIO-1 task-2] INFO p6spy - 2023-09-07 11:27:47 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  777. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  778. FROM
  779. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  780. FROM goaf_sensordata
  781. WHERE goaf_sensor_id = 442139
  782. ORDER BY goaf_datareport_time DESC
  783. LIMIT 1) AS A
  784. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  785. LEFT JOIN goaf_sensor AS C ON A.goaf_sensor_id = C.goaf_sensor_id
  786. 11:27:52.908 [XNIO-1 task-3] INFO p6spy - 2023-09-07 11:27:52 | Time Consuming: 5009 ms | Connection: statement-1 | SQL: SELECT 1
  787. 11:27:52.915 [XNIO-1 task-3] INFO p6spy - 2023-09-07 11:27:52 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  788. 11:27:52.949 [XNIO-1 task-3] INFO p6spy - 2023-09-07 11:27:52 | Time Consuming: 30 ms | Connection: statement-0 | SQL: SELECT count(*)
  789. FROM msg AS M
  790. WHERE M.oc_id = 406283
  791. AND (
  792. EXISTS (
  793. SELECT 1 FROM msg_to TT
  794. WHERE M.oc_id = TT.oc_id AND M.msg_id = TT.msg_id AND TT.msg_to_id = 406283 AND TT.status=0
  795. ) OR
  796. EXISTS (
  797. SELECT 1 FROM msg_cc CC
  798. WHERE M.oc_id = CC.oc_id AND M.msg_id = CC.msg_id AND CC.msg_cc_id = 406283 AND CC.status=0
  799. )
  800. )
  801. 11:31:01.005 [XNIO-1 task-3] INFO p6spy - 2023-09-07 11:31:01 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT 1
  802. 11:31:01.013 [XNIO-1 task-3] INFO p6spy - 2023-09-07 11:31:01 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT *
  803. FROM goaf_devinfo
  804. where oc_id = 406283
  805. 11:31:01.020 [XNIO-1 task-3] INFO p6spy - 2023-09-07 11:31:01 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT *
  806. FROM goaf_sensor
  807. where oc_id = 406283
  808. AND goaf_dev_name = 'other'
  809. 11:31:01.028 [XNIO-1 task-3] INFO p6spy - 2023-09-07 11:31:01 | Time Consuming: 5 ms | Connection: statement-5 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  810. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  811. FROM
  812. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  813. FROM goaf_sensordata
  814. WHERE goaf_sensor_id = 442129
  815. ORDER BY goaf_datareport_time DESC
  816. LIMIT 1) AS A
  817. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  818. LEFT JOIN goaf_sensor AS C ON A.goaf_sensor_id = C.goaf_sensor_id
  819. 11:31:01.034 [XNIO-1 task-3] INFO p6spy - 2023-09-07 11:31:01 | Time Consuming: 5 ms | Connection: statement-5 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  820. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  821. FROM
  822. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  823. FROM goaf_sensordata
  824. WHERE goaf_sensor_id = 442193
  825. ORDER BY goaf_datareport_time DESC
  826. LIMIT 1) AS A
  827. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  828. LEFT JOIN goaf_sensor AS C ON A.goaf_sensor_id = C.goaf_sensor_id
  829. 11:31:01.040 [XNIO-1 task-3] INFO p6spy - 2023-09-07 11:31:01 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT *
  830. FROM goaf_sensor
  831. where oc_id = 406283
  832. AND goaf_dev_name = 'waterpump'
  833. 11:31:01.047 [XNIO-1 task-3] INFO p6spy - 2023-09-07 11:31:01 | Time Consuming: 6 ms | Connection: statement-5 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  834. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  835. FROM
  836. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  837. FROM goaf_sensordata
  838. WHERE goaf_sensor_id = 442136
  839. ORDER BY goaf_datareport_time DESC
  840. LIMIT 1) AS A
  841. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  842. LEFT JOIN goaf_sensor AS C ON A.goaf_sensor_id = C.goaf_sensor_id
  843. 11:31:01.054 [XNIO-1 task-3] INFO p6spy - 2023-09-07 11:31:01 | Time Consuming: 6 ms | Connection: statement-5 | SQL: SELECT *
  844. FROM goaf_sensor
  845. where oc_id = 406283
  846. AND goaf_dev_name = 'machinery'
  847. 11:31:01.058 [XNIO-1 task-3] INFO p6spy - 2023-09-07 11:31:01 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  848. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  849. FROM
  850. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  851. FROM goaf_sensordata
  852. WHERE goaf_sensor_id = 442137
  853. ORDER BY goaf_datareport_time DESC
  854. LIMIT 1) AS A
  855. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  856. LEFT JOIN goaf_sensor AS C ON A.goaf_sensor_id = C.goaf_sensor_id
  857. 11:31:01.063 [XNIO-1 task-3] INFO p6spy - 2023-09-07 11:31:01 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT *
  858. FROM goaf_sensor
  859. where oc_id = 406283
  860. AND goaf_dev_name = 'compress'
  861. 11:31:01.067 [XNIO-1 task-3] INFO p6spy - 2023-09-07 11:31:01 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  862. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  863. FROM
  864. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  865. FROM goaf_sensordata
  866. WHERE goaf_sensor_id = 442135
  867. ORDER BY goaf_datareport_time DESC
  868. LIMIT 1) AS A
  869. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  870. LEFT JOIN goaf_sensor AS C ON A.goaf_sensor_id = C.goaf_sensor_id
  871. 11:31:01.075 [XNIO-1 task-3] INFO p6spy - 2023-09-07 11:31:01 | Time Consuming: 5 ms | Connection: statement-5 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  872. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  873. FROM
  874. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  875. FROM goaf_sensordata
  876. WHERE goaf_sensor_id = 442139
  877. ORDER BY goaf_datareport_time DESC
  878. LIMIT 1) AS A
  879. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  880. LEFT JOIN goaf_sensor AS C ON A.goaf_sensor_id = C.goaf_sensor_id
  881. 11:32:34.462 [XNIO-1 task-3] INFO p6spy - 2023-09-07 11:32:34 | Time Consuming: 5 ms | Connection: statement-5 | SQL: SELECT 1
  882. 11:32:34.471 [XNIO-1 task-3] INFO p6spy - 2023-09-07 11:32:34 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT
  883. client_id,
  884. client_title,
  885. client_app_id,
  886. client_app_key,
  887. client_app_secret,
  888. client_desc,
  889. status,
  890. is_fixed
  891. FROM client
  892. WHERE deleted_flag = 0
  893. AND client_app_id = '10001'
  894. AND client_app_key = '82a8bf439373e305'
  895. 11:32:34.494 [XNIO-1 task-3] INFO p6spy - 2023-09-07 11:32:34 | Time Consuming: 9 ms | Connection: statement-5 | SQL: SELECT
  896. A.client_id,
  897. A.role_id,
  898. A.permit_id,
  899. A.permit_title,
  900. A.permit_code,
  901. A.permit_entry,
  902. A.permit_desc,
  903. A.permit_type,
  904. A.parent_id,
  905. A.root_id,
  906. A.sort_no,
  907. A.is_home
  908. FROM s_role_permit AS A
  909. WHERE 1 = 1
  910. AND A.client_id = 2
  911. AND A.role_id = 6
  912. ORDER BY A.parent_id ASC ,A.sort_no ASC
  913. 11:32:34.704 [XNIO-1 task-3] INFO p6spy - 2023-09-07 11:32:34 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT *
  914. FROM goaf_devinfo
  915. where oc_id = 406283
  916. 11:32:34.710 [XNIO-1 task-3] INFO p6spy - 2023-09-07 11:32:34 | Time Consuming: 5 ms | Connection: statement-5 | SQL: SELECT *
  917. FROM goaf_sensor
  918. where oc_id = 406283
  919. AND goaf_dev_name = 'other'
  920. 11:32:34.712 [XNIO-1 task-2] INFO p6spy - 2023-09-07 11:32:34 | Time Consuming: 4 ms | Connection: statement-6 | SQL: SELECT 1
  921. 11:32:34.716 [XNIO-1 task-3] INFO p6spy - 2023-09-07 11:32:34 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  922. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  923. FROM
  924. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  925. FROM goaf_sensordata
  926. WHERE goaf_sensor_id = 442129
  927. ORDER BY goaf_datareport_time DESC
  928. LIMIT 1) AS A
  929. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  930. LEFT JOIN goaf_sensor AS C ON A.goaf_sensor_id = C.goaf_sensor_id
  931. 11:32:34.721 [XNIO-1 task-3] INFO p6spy - 2023-09-07 11:32:34 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  932. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  933. FROM
  934. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  935. FROM goaf_sensordata
  936. WHERE goaf_sensor_id = 442193
  937. ORDER BY goaf_datareport_time DESC
  938. LIMIT 1) AS A
  939. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  940. LEFT JOIN goaf_sensor AS C ON A.goaf_sensor_id = C.goaf_sensor_id
  941. 11:32:34.726 [XNIO-1 task-3] INFO p6spy - 2023-09-07 11:32:34 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT *
  942. FROM goaf_sensor
  943. where oc_id = 406283
  944. AND goaf_dev_name = 'waterpump'
  945. 11:32:34.733 [XNIO-1 task-3] INFO p6spy - 2023-09-07 11:32:34 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  946. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  947. FROM
  948. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  949. FROM goaf_sensordata
  950. WHERE goaf_sensor_id = 442136
  951. ORDER BY goaf_datareport_time DESC
  952. LIMIT 1) AS A
  953. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  954. LEFT JOIN goaf_sensor AS C ON A.goaf_sensor_id = C.goaf_sensor_id
  955. 11:32:34.738 [XNIO-1 task-3] INFO p6spy - 2023-09-07 11:32:34 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT *
  956. FROM goaf_sensor
  957. where oc_id = 406283
  958. AND goaf_dev_name = 'machinery'
  959. 11:32:34.743 [XNIO-1 task-3] INFO p6spy - 2023-09-07 11:32:34 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  960. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  961. FROM
  962. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  963. FROM goaf_sensordata
  964. WHERE goaf_sensor_id = 442137
  965. ORDER BY goaf_datareport_time DESC
  966. LIMIT 1) AS A
  967. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  968. LEFT JOIN goaf_sensor AS C ON A.goaf_sensor_id = C.goaf_sensor_id
  969. 11:32:34.747 [XNIO-1 task-2] INFO p6spy - 2023-09-07 11:32:34 | Time Consuming: 30 ms | Connection: statement-6 | SQL: SELECT count(*)
  970. FROM msg AS M
  971. WHERE M.oc_id = 406283
  972. AND (
  973. EXISTS (
  974. SELECT 1 FROM msg_to TT
  975. WHERE M.oc_id = TT.oc_id AND M.msg_id = TT.msg_id AND TT.msg_to_id = 406283 AND TT.status=0
  976. ) OR
  977. EXISTS (
  978. SELECT 1 FROM msg_cc CC
  979. WHERE M.oc_id = CC.oc_id AND M.msg_id = CC.msg_id AND CC.msg_cc_id = 406283 AND CC.status=0
  980. )
  981. )
  982. 11:32:34.747 [XNIO-1 task-3] INFO p6spy - 2023-09-07 11:32:34 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT *
  983. FROM goaf_sensor
  984. where oc_id = 406283
  985. AND goaf_dev_name = 'compress'
  986. 11:32:34.752 [XNIO-1 task-3] INFO p6spy - 2023-09-07 11:32:34 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  987. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  988. FROM
  989. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  990. FROM goaf_sensordata
  991. WHERE goaf_sensor_id = 442135
  992. ORDER BY goaf_datareport_time DESC
  993. LIMIT 1) AS A
  994. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  995. LEFT JOIN goaf_sensor AS C ON A.goaf_sensor_id = C.goaf_sensor_id
  996. 11:32:34.757 [XNIO-1 task-3] INFO p6spy - 2023-09-07 11:32:34 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  997. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  998. FROM
  999. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  1000. FROM goaf_sensordata
  1001. WHERE goaf_sensor_id = 442139
  1002. ORDER BY goaf_datareport_time DESC
  1003. LIMIT 1) AS A
  1004. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  1005. LEFT JOIN goaf_sensor AS C ON A.goaf_sensor_id = C.goaf_sensor_id
  1006. 11:33:10.479 [XNIO-1 task-3] INFO p6spy - 2023-09-07 11:33:10 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT 1
  1007. 11:33:10.489 [XNIO-1 task-3] INFO p6spy - 2023-09-07 11:33:10 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT *
  1008. FROM goaf_devinfo
  1009. where oc_id = 406283
  1010. 11:33:10.496 [XNIO-1 task-3] INFO p6spy - 2023-09-07 11:33:10 | Time Consuming: 6 ms | Connection: statement-5 | SQL: SELECT *
  1011. FROM goaf_sensor
  1012. where oc_id = 406283
  1013. AND goaf_dev_name = 'other'
  1014. 11:33:10.504 [XNIO-1 task-3] INFO p6spy - 2023-09-07 11:33:10 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  1015. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  1016. FROM
  1017. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  1018. FROM goaf_sensordata
  1019. WHERE goaf_sensor_id = 442129
  1020. ORDER BY goaf_datareport_time DESC
  1021. LIMIT 1) AS A
  1022. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  1023. LEFT JOIN goaf_sensor AS C ON A.goaf_sensor_id = C.goaf_sensor_id
  1024. 11:33:10.510 [XNIO-1 task-3] INFO p6spy - 2023-09-07 11:33:10 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  1025. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  1026. FROM
  1027. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  1028. FROM goaf_sensordata
  1029. WHERE goaf_sensor_id = 442193
  1030. ORDER BY goaf_datareport_time DESC
  1031. LIMIT 1) AS A
  1032. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  1033. LEFT JOIN goaf_sensor AS C ON A.goaf_sensor_id = C.goaf_sensor_id
  1034. 11:33:10.516 [XNIO-1 task-3] INFO p6spy - 2023-09-07 11:33:10 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT *
  1035. FROM goaf_sensor
  1036. where oc_id = 406283
  1037. AND goaf_dev_name = 'waterpump'
  1038. 11:33:10.522 [XNIO-1 task-3] INFO p6spy - 2023-09-07 11:33:10 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  1039. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  1040. FROM
  1041. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  1042. FROM goaf_sensordata
  1043. WHERE goaf_sensor_id = 442136
  1044. ORDER BY goaf_datareport_time DESC
  1045. LIMIT 1) AS A
  1046. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  1047. LEFT JOIN goaf_sensor AS C ON A.goaf_sensor_id = C.goaf_sensor_id
  1048. 11:33:10.528 [XNIO-1 task-3] INFO p6spy - 2023-09-07 11:33:10 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT *
  1049. FROM goaf_sensor
  1050. where oc_id = 406283
  1051. AND goaf_dev_name = 'machinery'
  1052. 11:33:10.533 [XNIO-1 task-3] INFO p6spy - 2023-09-07 11:33:10 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  1053. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  1054. FROM
  1055. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  1056. FROM goaf_sensordata
  1057. WHERE goaf_sensor_id = 442137
  1058. ORDER BY goaf_datareport_time DESC
  1059. LIMIT 1) AS A
  1060. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  1061. LEFT JOIN goaf_sensor AS C ON A.goaf_sensor_id = C.goaf_sensor_id
  1062. 11:33:10.537 [XNIO-1 task-3] INFO p6spy - 2023-09-07 11:33:10 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT *
  1063. FROM goaf_sensor
  1064. where oc_id = 406283
  1065. AND goaf_dev_name = 'compress'
  1066. 11:33:10.542 [XNIO-1 task-3] INFO p6spy - 2023-09-07 11:33:10 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  1067. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  1068. FROM
  1069. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  1070. FROM goaf_sensordata
  1071. WHERE goaf_sensor_id = 442135
  1072. ORDER BY goaf_datareport_time DESC
  1073. LIMIT 1) AS A
  1074. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  1075. LEFT JOIN goaf_sensor AS C ON A.goaf_sensor_id = C.goaf_sensor_id
  1076. 11:33:10.546 [XNIO-1 task-3] INFO p6spy - 2023-09-07 11:33:10 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  1077. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  1078. FROM
  1079. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  1080. FROM goaf_sensordata
  1081. WHERE goaf_sensor_id = 442139
  1082. ORDER BY goaf_datareport_time DESC
  1083. LIMIT 1) AS A
  1084. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  1085. LEFT JOIN goaf_sensor AS C ON A.goaf_sensor_id = C.goaf_sensor_id
  1086. 11:33:25.006 [XNIO-1 task-3] INFO p6spy - 2023-09-07 11:33:25 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT 1
  1087. 11:33:25.011 [XNIO-1 task-3] INFO p6spy - 2023-09-07 11:33:25 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT count(0) FROM goaf_sensor WHERE oc_id = 406283
  1088. 11:33:25.013 [XNIO-1 task-2] INFO p6spy - 2023-09-07 11:33:25 | Time Consuming: 4 ms | Connection: statement-6 | SQL: SELECT 1
  1089. 11:33:25.013 [XNIO-1 task-4] INFO p6spy - 2023-09-07 11:33:25 | Time Consuming: 4 ms | Connection: statement-7 | SQL: SELECT 1
  1090. 11:33:25.016 [XNIO-1 task-3] INFO p6spy - 2023-09-07 11:33:25 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT *
  1091. FROM goaf_sensor
  1092. where oc_id = 406283
  1093. LIMIT 10
  1094. 11:33:25.021 [XNIO-1 task-4] INFO p6spy - 2023-09-07 11:33:25 | Time Consuming: 3 ms | Connection: statement-7 | SQL: SELECT *
  1095. FROM goaf_devinfo
  1096. where oc_id = 406283
  1097. 11:33:25.021 [XNIO-1 task-2] INFO p6spy - 2023-09-07 11:33:25 | Time Consuming: 3 ms | Connection: statement-6 | SQL: SELECT *
  1098. FROM goaf_syscfg
  1099. WHERE oc_id = 406283
  1100. 11:34:11.038 [XNIO-1 task-4] INFO p6spy - 2023-09-07 11:34:11 | Time Consuming: 3 ms | Connection: statement-7 | SQL: SELECT 1
  1101. 11:34:11.038 [XNIO-1 task-3] INFO p6spy - 2023-09-07 11:34:11 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT 1
  1102. 11:34:11.040 [XNIO-1 task-2] INFO p6spy - 2023-09-07 11:34:11 | Time Consuming: 4 ms | Connection: statement-6 | SQL: SELECT 1
  1103. 11:34:11.045 [XNIO-1 task-2] INFO p6spy - 2023-09-07 11:34:11 | Time Consuming: 4 ms | Connection: statement-6 | SQL: SELECT count(0) FROM goaf_sensor WHERE oc_id = 406283
  1104. 11:34:11.048 [XNIO-1 task-3] INFO p6spy - 2023-09-07 11:34:11 | Time Consuming: 5 ms | Connection: statement-5 | SQL: SELECT *
  1105. FROM goaf_syscfg
  1106. WHERE oc_id = 406283
  1107. 11:34:11.048 [XNIO-1 task-4] INFO p6spy - 2023-09-07 11:34:11 | Time Consuming: 5 ms | Connection: statement-7 | SQL: SELECT *
  1108. FROM goaf_devinfo
  1109. where oc_id = 406283
  1110. 11:34:11.050 [XNIO-1 task-2] INFO p6spy - 2023-09-07 11:34:11 | Time Consuming: 4 ms | Connection: statement-6 | SQL: SELECT *
  1111. FROM goaf_sensor
  1112. where oc_id = 406283
  1113. LIMIT 10
  1114. 11:35:09.978 [XNIO-1 task-2] INFO p6spy - 2023-09-07 11:35:09 | Time Consuming: 4 ms | Connection: statement-6 | SQL: SELECT 1
  1115. 11:35:09.978 [XNIO-1 task-4] INFO p6spy - 2023-09-07 11:35:09 | Time Consuming: 4 ms | Connection: statement-7 | SQL: SELECT 1
  1116. 11:35:09.978 [XNIO-1 task-3] INFO p6spy - 2023-09-07 11:35:09 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT 1
  1117. 11:35:09.984 [XNIO-1 task-3] INFO p6spy - 2023-09-07 11:35:09 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT count(0) FROM goaf_sensor WHERE oc_id = 406283
  1118. 11:35:09.989 [XNIO-1 task-2] INFO p6spy - 2023-09-07 11:35:09 | Time Consuming: 4 ms | Connection: statement-6 | SQL: SELECT *
  1119. FROM goaf_syscfg
  1120. WHERE oc_id = 406283
  1121. 11:35:09.989 [XNIO-1 task-4] INFO p6spy - 2023-09-07 11:35:09 | Time Consuming: 4 ms | Connection: statement-7 | SQL: SELECT *
  1122. FROM goaf_devinfo
  1123. where oc_id = 406283
  1124. 11:35:09.990 [XNIO-1 task-3] INFO p6spy - 2023-09-07 11:35:09 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT *
  1125. FROM goaf_sensor
  1126. where oc_id = 406283
  1127. LIMIT 10
  1128. 11:35:31.708 [XNIO-1 task-4] INFO p6spy - 2023-09-07 11:35:31 | Time Consuming: 3 ms | Connection: statement-7 | SQL: SELECT 1
  1129. 11:35:31.708 [XNIO-1 task-2] INFO p6spy - 2023-09-07 11:35:31 | Time Consuming: 4 ms | Connection: statement-6 | SQL: SELECT 1
  1130. 11:35:31.708 [XNIO-1 task-3] INFO p6spy - 2023-09-07 11:35:31 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT 1
  1131. 11:35:31.713 [XNIO-1 task-4] INFO p6spy - 2023-09-07 11:35:31 | Time Consuming: 4 ms | Connection: statement-7 | SQL: SELECT count(0) FROM goaf_sensor WHERE oc_id = 406283
  1132. 11:35:31.717 [XNIO-1 task-2] INFO p6spy - 2023-09-07 11:35:31 | Time Consuming: 4 ms | Connection: statement-6 | SQL: SELECT *
  1133. FROM goaf_devinfo
  1134. where oc_id = 406283
  1135. 11:35:31.717 [XNIO-1 task-3] INFO p6spy - 2023-09-07 11:35:31 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT *
  1136. FROM goaf_syscfg
  1137. WHERE oc_id = 406283
  1138. 11:35:31.717 [XNIO-1 task-4] INFO p6spy - 2023-09-07 11:35:31 | Time Consuming: 4 ms | Connection: statement-7 | SQL: SELECT *
  1139. FROM goaf_sensor
  1140. where oc_id = 406283
  1141. LIMIT 10
  1142. 11:35:47.145 [XNIO-1 task-4] INFO p6spy - 2023-09-07 11:35:47 | Time Consuming: 3 ms | Connection: statement-7 | SQL: SELECT 1
  1143. 11:35:47.145 [XNIO-1 task-2] INFO p6spy - 2023-09-07 11:35:47 | Time Consuming: 3 ms | Connection: statement-6 | SQL: SELECT 1
  1144. 11:35:47.146 [XNIO-1 task-3] INFO p6spy - 2023-09-07 11:35:47 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT 1
  1145. 11:35:47.150 [XNIO-1 task-3] INFO p6spy - 2023-09-07 11:35:47 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT count(0) FROM goaf_sensor WHERE oc_id = 406283
  1146. 11:35:47.153 [XNIO-1 task-4] INFO p6spy - 2023-09-07 11:35:47 | Time Consuming: 3 ms | Connection: statement-7 | SQL: SELECT *
  1147. FROM goaf_syscfg
  1148. WHERE oc_id = 406283
  1149. 11:35:47.153 [XNIO-1 task-2] INFO p6spy - 2023-09-07 11:35:47 | Time Consuming: 3 ms | Connection: statement-6 | SQL: SELECT *
  1150. FROM goaf_devinfo
  1151. where oc_id = 406283
  1152. 11:35:47.154 [XNIO-1 task-3] INFO p6spy - 2023-09-07 11:35:47 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT *
  1153. FROM goaf_sensor
  1154. where oc_id = 406283
  1155. LIMIT 10
  1156. 11:36:57.094 [XNIO-1 task-4] INFO p6spy - 2023-09-07 11:36:57 | Time Consuming: 5 ms | Connection: statement-7 | SQL: SELECT 1
  1157. 11:36:57.094 [XNIO-1 task-3] INFO p6spy - 2023-09-07 11:36:57 | Time Consuming: 5 ms | Connection: statement-6 | SQL: SELECT 1
  1158. 11:36:57.103 [XNIO-1 task-4] INFO p6spy - 2023-09-07 11:36:57 | Time Consuming: 4 ms | Connection: statement-7 | SQL: SELECT *
  1159. FROM goaf_devinfo
  1160. where oc_id = 406283
  1161. 11:36:57.103 [XNIO-1 task-3] INFO p6spy - 2023-09-07 11:36:57 | Time Consuming: 4 ms | Connection: statement-6 | SQL: SELECT *
  1162. FROM goaf_syscfg
  1163. WHERE oc_id = 406283
  1164. 11:37:00.556 [XNIO-1 task-4] INFO p6spy - 2023-09-07 11:37:00 | Time Consuming: 5 ms | Connection: statement-7 | SQL: SELECT 1
  1165. 11:37:00.569 [XNIO-1 task-4] INFO p6spy - 2023-09-07 11:37:00 | Time Consuming: 6 ms | Connection: statement-7 | SQL: SELECT
  1166. client_id,
  1167. client_title,
  1168. client_app_id,
  1169. client_app_key,
  1170. client_app_secret,
  1171. client_desc,
  1172. status,
  1173. is_fixed
  1174. FROM client
  1175. WHERE deleted_flag = 0
  1176. AND client_app_id = '10001'
  1177. AND client_app_key = '82a8bf439373e305'
  1178. 11:37:00.588 [XNIO-1 task-4] INFO p6spy - 2023-09-07 11:37:00 | Time Consuming: 5 ms | Connection: statement-7 | SQL: SELECT
  1179. A.client_id,
  1180. A.role_id,
  1181. A.permit_id,
  1182. A.permit_title,
  1183. A.permit_code,
  1184. A.permit_entry,
  1185. A.permit_desc,
  1186. A.permit_type,
  1187. A.parent_id,
  1188. A.root_id,
  1189. A.sort_no,
  1190. A.is_home
  1191. FROM s_role_permit AS A
  1192. WHERE 1 = 1
  1193. AND A.client_id = 2
  1194. AND A.role_id = 6
  1195. ORDER BY A.parent_id ASC ,A.sort_no ASC
  1196. 11:37:00.720 [XNIO-1 task-3] INFO p6spy - 2023-09-07 11:37:00 | Time Consuming: 8 ms | Connection: statement-6 | SQL: SELECT 1
  1197. 11:37:00.724 [XNIO-1 task-5] INFO p6spy - 2023-09-07 11:37:00 | Time Consuming: 4 ms | Connection: statement-10 | SQL: SELECT 1
  1198. 11:37:00.726 [XNIO-1 task-3] INFO p6spy - 2023-09-07 11:37:00 | Time Consuming: 5 ms | Connection: statement-6 | SQL: SELECT count(0) FROM goaf_sensor WHERE oc_id = 406283
  1199. 11:37:00.732 [XNIO-1 task-3] INFO p6spy - 2023-09-07 11:37:00 | Time Consuming: 5 ms | Connection: statement-6 | SQL: SELECT *
  1200. FROM goaf_sensor
  1201. where oc_id = 406283
  1202. LIMIT 10
  1203. 11:37:00.734 [XNIO-1 task-5] INFO p6spy - 2023-09-07 11:37:00 | Time Consuming: 4 ms | Connection: statement-10 | SQL: SELECT *
  1204. FROM goaf_syscfg
  1205. WHERE oc_id = 406283
  1206. 11:37:00.753 [XNIO-1 task-4] INFO p6spy - 2023-09-07 11:37:00 | Time Consuming: 33 ms | Connection: statement-7 | SQL: SELECT count(*)
  1207. FROM msg AS M
  1208. WHERE M.oc_id = 406283
  1209. AND (
  1210. EXISTS (
  1211. SELECT 1 FROM msg_to TT
  1212. WHERE M.oc_id = TT.oc_id AND M.msg_id = TT.msg_id AND TT.msg_to_id = 406283 AND TT.status=0
  1213. ) OR
  1214. EXISTS (
  1215. SELECT 1 FROM msg_cc CC
  1216. WHERE M.oc_id = CC.oc_id AND M.msg_id = CC.msg_id AND CC.msg_cc_id = 406283 AND CC.status=0
  1217. )
  1218. )
  1219. 11:37:02.092 [XNIO-1 task-2] INFO p6spy - 2023-09-07 11:37:02 | Time Consuming: 5003 ms | Connection: statement-8 | SQL: SELECT 1
  1220. 11:37:02.097 [XNIO-1 task-2] INFO p6spy - 2023-09-07 11:37:02 | Time Consuming: 4 ms | Connection: statement-6 | SQL: SELECT 1
  1221. 11:37:02.102 [XNIO-1 task-2] INFO p6spy - 2023-09-07 11:37:02 | Time Consuming: 4 ms | Connection: statement-6 | SQL: SELECT count(0) FROM goaf_sensor WHERE oc_id = 406283
  1222. 11:37:02.107 [XNIO-1 task-2] INFO p6spy - 2023-09-07 11:37:02 | Time Consuming: 5 ms | Connection: statement-6 | SQL: SELECT *
  1223. FROM goaf_sensor
  1224. where oc_id = 406283
  1225. LIMIT 10
  1226. 11:37:05.725 [XNIO-1 task-6] INFO p6spy - 2023-09-07 11:37:05 | Time Consuming: 5006 ms | Connection: statement-9 | SQL: SELECT 1
  1227. 11:37:05.731 [XNIO-1 task-6] INFO p6spy - 2023-09-07 11:37:05 | Time Consuming: 4 ms | Connection: statement-6 | SQL: SELECT 1
  1228. 11:37:05.740 [XNIO-1 task-6] INFO p6spy - 2023-09-07 11:37:05 | Time Consuming: 4 ms | Connection: statement-6 | SQL: SELECT *
  1229. FROM goaf_devinfo
  1230. where oc_id = 406283
  1231. 11:37:23.804 [XNIO-1 task-2] INFO p6spy - 2023-09-07 11:37:23 | Time Consuming: 4 ms | Connection: statement-6 | SQL: SELECT 1
  1232. 11:37:23.804 [XNIO-1 task-4] INFO p6spy - 2023-09-07 11:37:23 | Time Consuming: 4 ms | Connection: statement-7 | SQL: SELECT 1
  1233. 11:37:23.805 [XNIO-1 task-6] INFO p6spy - 2023-09-07 11:37:23 | Time Consuming: 3 ms | Connection: statement-10 | SQL: SELECT 1
  1234. 11:37:23.809 [XNIO-1 task-6] INFO p6spy - 2023-09-07 11:37:23 | Time Consuming: 3 ms | Connection: statement-10 | SQL: SELECT count(0) FROM goaf_sensor WHERE oc_id = 406283
  1235. 11:37:23.813 [XNIO-1 task-4] INFO p6spy - 2023-09-07 11:37:23 | Time Consuming: 3 ms | Connection: statement-7 | SQL: SELECT *
  1236. FROM goaf_syscfg
  1237. WHERE oc_id = 406283
  1238. 11:37:23.814 [XNIO-1 task-2] INFO p6spy - 2023-09-07 11:37:23 | Time Consuming: 4 ms | Connection: statement-6 | SQL: SELECT *
  1239. FROM goaf_devinfo
  1240. where oc_id = 406283
  1241. 11:37:23.814 [XNIO-1 task-6] INFO p6spy - 2023-09-07 11:37:23 | Time Consuming: 4 ms | Connection: statement-10 | SQL: SELECT *
  1242. FROM goaf_sensor
  1243. where oc_id = 406283
  1244. LIMIT 10
  1245. 11:41:04.443 [XNIO-1 task-2] INFO p6spy - 2023-09-07 11:41:04 | Time Consuming: 5 ms | Connection: statement-10 | SQL: SELECT 1
  1246. 11:41:04.453 [XNIO-1 task-2] INFO p6spy - 2023-09-07 11:41:04 | Time Consuming: 4 ms | Connection: statement-10 | SQL: SELECT
  1247. client_id,
  1248. client_title,
  1249. client_app_id,
  1250. client_app_key,
  1251. client_app_secret,
  1252. client_desc,
  1253. status,
  1254. is_fixed
  1255. FROM client
  1256. WHERE deleted_flag = 0
  1257. AND client_app_id = '10001'
  1258. AND client_app_key = '82a8bf439373e305'
  1259. 11:41:04.474 [XNIO-1 task-2] INFO p6spy - 2023-09-07 11:41:04 | Time Consuming: 8 ms | Connection: statement-10 | SQL: SELECT
  1260. A.oc_id,
  1261. B.oc_type_id,
  1262. B.oc_name,
  1263. A.account_id,
  1264. A.account_name,
  1265. A.account_real_name,
  1266. A.password,
  1267. A.account_type,
  1268. A.account_staff_no,
  1269. A.account_phone,
  1270. A.account_last_ip,
  1271. A.account_loc,
  1272. A.status,
  1273. A.account_avatar,
  1274. A.account_photo,
  1275. A.account_real_name,
  1276. A.account_intro,
  1277. A.wx_id,
  1278. A.is_fixed
  1279. FROM account AS A
  1280. LEFT JOIN oc AS B ON (A.oc_id = B.oc_id )
  1281. WHERE A.deleted_flag = 0
  1282. AND (A.account_name = 'sxky'
  1283. OR A.account_phone = 'sxky'
  1284. OR A.account_mail = 'sxky'
  1285. OR A.account_staff_no = 'sxky')
  1286. 11:41:04.482 [XNIO-1 task-2] INFO p6spy - 2023-09-07 11:41:04 | Time Consuming: 4 ms | Connection: statement-10 | SQL: SELECT
  1287. A.oc_id,
  1288. A.oc_name,
  1289. A.oc_type_id,
  1290. A.root_id,
  1291. A.parent_id,
  1292. A.admin_id,
  1293. B.account_name AS admin_name,
  1294. A.group_id,
  1295. A.node_left,
  1296. A.node_right,
  1297. A.node_level,
  1298. A.is_leaf,
  1299. A.status,
  1300. A.if_lic
  1301. FROM oc AS A
  1302. LEFT JOIN account AS B ON (A.oc_id = B.oc_id AND A.admin_id = B.account_id)
  1303. WHERE A.oc_id = 406283
  1304. 11:41:04.487 [XNIO-1 task-2] INFO p6spy - 2023-09-07 11:41:04 | Time Consuming: 4 ms | Connection: statement-10 | SQL: SELECT
  1305. A.rm_id,
  1306. A.role_id,
  1307. B.role_type_id,
  1308. B.role_code,
  1309. B.role_name,
  1310. A.account_id
  1311. FROM s_role_member AS A
  1312. LEFT JOIN s_role AS B ON (A.role_id = B.role_id)
  1313. WHERE account_id = 406283
  1314. LIMIT 1
  1315. 11:41:04.498 [XNIO-1 task-2] INFO p6spy - 2023-09-07 11:41:04 | Time Consuming: 9 ms | Connection: statement-10 | SQL: SELECT
  1316. A.gm_id,
  1317. A.oc_id,
  1318. A.group_id,
  1319. B.group_name,
  1320. B.node_left ,
  1321. B.node_right,
  1322. A.account_id
  1323. FROM s_group_member AS A
  1324. LEFT JOIN s_group AS B ON (A.oc_id = B.oc_id AND A.group_id = B.group_id)
  1325. WHERE B.deleted_flag = 0
  1326. AND A.oc_id = 406283
  1327. AND A.account_id = 406283
  1328. LIMIT 1
  1329. 11:41:04.504 [XNIO-1 task-2] INFO p6spy - 2023-09-07 11:41:04 | Time Consuming: 5 ms | Connection: statement-10 | SQL: SELECT
  1330. A.gmp_id,
  1331. A.oc_id,
  1332. A.group_id,
  1333. B.group_name,
  1334. A.account_id,
  1335. D.account_name,
  1336. D.account_real_name,
  1337. A.position_id,
  1338. C.position_name
  1339. FROM s_group_member_position A
  1340. LEFT JOIN s_group B ON (A.oc_id = B.oc_id AND A.group_id = B.group_id)
  1341. LEFT JOIN s_position C ON (A.oc_id = C.oc_id AND A.position_id = C.position_id)
  1342. LEFT JOIN account D ON (A.oc_id = D.oc_id AND A.account_id = D.account_id)
  1343. WHERE A.deleted_flag = 0
  1344. AND A.oc_id = 406283
  1345. AND A.group_id = 406283
  1346. AND A.account_id = 406283
  1347. LIMIT 1
  1348. 11:41:04.512 [XNIO-1 task-2] INFO p6spy - 2023-09-07 11:41:04 | Time Consuming: 5 ms | Connection: statement-10 | SQL: SELECT
  1349. A.gmpg_id,
  1350. A.oc_id,
  1351. A.group_id,
  1352. A.account_id,
  1353. A.position_id,
  1354. A.grant_group_id,
  1355. B.group_name AS grant_group_name
  1356. FROM s_group_member_position_grant A
  1357. LEFT JOIN s_group B ON(A.oc_id = B.oc_id AND A.grant_group_id = B.group_id)
  1358. WHERE A.deleted_flag = 0
  1359. AND A.oc_id = 406283
  1360. AND A.group_id = 406283
  1361. AND A.account_id = 406283
  1362. AND A.position_id = 406283
  1363. LIMIT 1
  1364. 11:41:04.570 [XNIO-1 task-2] INFO p6spy - 2023-09-07 11:41:04 | Time Consuming: 3 ms | Connection: statement-10 | SQL: SELECT
  1365. client_id,
  1366. client_title,
  1367. client_app_id,
  1368. client_app_key,
  1369. client_app_secret,
  1370. client_desc,
  1371. status,
  1372. is_fixed
  1373. FROM client
  1374. WHERE deleted_flag = 0
  1375. AND client_app_id = '10001'
  1376. AND client_app_key = '82a8bf439373e305'
  1377. 11:41:04.585 [XNIO-1 task-2] INFO p6spy - 2023-09-07 11:41:04 | Time Consuming: 4 ms | Connection: statement-10 | SQL: SELECT
  1378. A.client_id,
  1379. A.role_id,
  1380. A.permit_id,
  1381. A.permit_title,
  1382. A.permit_code,
  1383. A.permit_entry,
  1384. A.permit_desc,
  1385. A.permit_type,
  1386. A.parent_id,
  1387. A.root_id,
  1388. A.sort_no,
  1389. A.is_home
  1390. FROM s_role_permit AS A
  1391. WHERE 1 = 1
  1392. AND A.client_id = 2
  1393. AND A.role_id = 6
  1394. ORDER BY A.parent_id ASC ,A.sort_no ASC
  1395. 11:41:04.894 [XNIO-1 task-2] INFO p6spy - 2023-09-07 11:41:04 | Time Consuming: 28 ms | Connection: statement-10 | SQL: SELECT count(*)
  1396. FROM msg AS M
  1397. WHERE M.oc_id = 406283
  1398. AND (
  1399. EXISTS (
  1400. SELECT 1 FROM msg_to TT
  1401. WHERE M.oc_id = TT.oc_id AND M.msg_id = TT.msg_id AND TT.msg_to_id = 406283 AND TT.status=0
  1402. ) OR
  1403. EXISTS (
  1404. SELECT 1 FROM msg_cc CC
  1405. WHERE M.oc_id = CC.oc_id AND M.msg_id = CC.msg_id AND CC.msg_cc_id = 406283 AND CC.status=0
  1406. )
  1407. )
  1408. 11:41:05.543 [XNIO-1 task-2] INFO p6spy - 2023-09-07 11:41:05 | Time Consuming: 3 ms | Connection: statement-10 | SQL: SELECT 1
  1409. 11:41:05.551 [XNIO-1 task-2] INFO p6spy - 2023-09-07 11:41:05 | Time Consuming: 3 ms | Connection: statement-10 | SQL: SELECT *
  1410. FROM goaf_devinfo
  1411. where oc_id = 406283
  1412. 11:41:05.557 [XNIO-1 task-2] INFO p6spy - 2023-09-07 11:41:05 | Time Consuming: 4 ms | Connection: statement-10 | SQL: SELECT *
  1413. FROM goaf_sensor
  1414. where oc_id = 406283
  1415. AND goaf_dev_name = 'other'
  1416. 11:41:05.564 [XNIO-1 task-2] INFO p6spy - 2023-09-07 11:41:05 | Time Consuming: 5 ms | Connection: statement-10 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  1417. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  1418. FROM
  1419. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  1420. FROM goaf_sensordata
  1421. WHERE goaf_sensor_id = 442129
  1422. ORDER BY goaf_datareport_time DESC
  1423. LIMIT 1) AS A
  1424. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  1425. LEFT JOIN goaf_sensor AS C ON A.goaf_sensor_id = C.goaf_sensor_id
  1426. 11:41:05.571 [XNIO-1 task-2] INFO p6spy - 2023-09-07 11:41:05 | Time Consuming: 6 ms | Connection: statement-10 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  1427. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  1428. FROM
  1429. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  1430. FROM goaf_sensordata
  1431. WHERE goaf_sensor_id = 442193
  1432. ORDER BY goaf_datareport_time DESC
  1433. LIMIT 1) AS A
  1434. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  1435. LEFT JOIN goaf_sensor AS C ON A.goaf_sensor_id = C.goaf_sensor_id
  1436. 11:41:05.580 [XNIO-1 task-2] INFO p6spy - 2023-09-07 11:41:05 | Time Consuming: 7 ms | Connection: statement-10 | SQL: SELECT *
  1437. FROM goaf_sensor
  1438. where oc_id = 406283
  1439. AND goaf_dev_name = 'waterpump'
  1440. 11:41:05.589 [XNIO-1 task-2] INFO p6spy - 2023-09-07 11:41:05 | Time Consuming: 7 ms | Connection: statement-10 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  1441. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  1442. FROM
  1443. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  1444. FROM goaf_sensordata
  1445. WHERE goaf_sensor_id = 442136
  1446. ORDER BY goaf_datareport_time DESC
  1447. LIMIT 1) AS A
  1448. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  1449. LEFT JOIN goaf_sensor AS C ON A.goaf_sensor_id = C.goaf_sensor_id
  1450. 11:41:05.596 [XNIO-1 task-2] INFO p6spy - 2023-09-07 11:41:05 | Time Consuming: 5 ms | Connection: statement-10 | SQL: SELECT *
  1451. FROM goaf_sensor
  1452. where oc_id = 406283
  1453. AND goaf_dev_name = 'machinery'
  1454. 11:41:05.603 [XNIO-1 task-2] INFO p6spy - 2023-09-07 11:41:05 | Time Consuming: 6 ms | Connection: statement-10 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  1455. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  1456. FROM
  1457. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  1458. FROM goaf_sensordata
  1459. WHERE goaf_sensor_id = 442137
  1460. ORDER BY goaf_datareport_time DESC
  1461. LIMIT 1) AS A
  1462. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  1463. LEFT JOIN goaf_sensor AS C ON A.goaf_sensor_id = C.goaf_sensor_id
  1464. 11:41:05.611 [XNIO-1 task-2] INFO p6spy - 2023-09-07 11:41:05 | Time Consuming: 5 ms | Connection: statement-10 | SQL: SELECT *
  1465. FROM goaf_sensor
  1466. where oc_id = 406283
  1467. AND goaf_dev_name = 'compress'
  1468. 11:41:05.616 [XNIO-1 task-2] INFO p6spy - 2023-09-07 11:41:05 | Time Consuming: 4 ms | Connection: statement-10 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  1469. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  1470. FROM
  1471. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  1472. FROM goaf_sensordata
  1473. WHERE goaf_sensor_id = 442135
  1474. ORDER BY goaf_datareport_time DESC
  1475. LIMIT 1) AS A
  1476. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  1477. LEFT JOIN goaf_sensor AS C ON A.goaf_sensor_id = C.goaf_sensor_id
  1478. 11:41:05.622 [XNIO-1 task-2] INFO p6spy - 2023-09-07 11:41:05 | Time Consuming: 4 ms | Connection: statement-10 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  1479. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  1480. FROM
  1481. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  1482. FROM goaf_sensordata
  1483. WHERE goaf_sensor_id = 442139
  1484. ORDER BY goaf_datareport_time DESC
  1485. LIMIT 1) AS A
  1486. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  1487. LEFT JOIN goaf_sensor AS C ON A.goaf_sensor_id = C.goaf_sensor_id
  1488. 11:41:10.222 [XNIO-1 task-2] INFO p6spy - 2023-09-07 11:41:10 | Time Consuming: 3 ms | Connection: statement-10 | SQL: SELECT 1
  1489. 11:41:10.230 [XNIO-1 task-2] INFO p6spy - 2023-09-07 11:41:10 | Time Consuming: 3 ms | Connection: statement-10 | SQL: SELECT *
  1490. FROM goaf_devinfo
  1491. where oc_id = 406283
  1492. 11:41:10.235 [XNIO-1 task-2] INFO p6spy - 2023-09-07 11:41:10 | Time Consuming: 4 ms | Connection: statement-10 | SQL: SELECT *
  1493. FROM goaf_sensor
  1494. where oc_id = 406283
  1495. AND goaf_dev_name = 'other'
  1496. 11:41:10.240 [XNIO-1 task-2] INFO p6spy - 2023-09-07 11:41:10 | Time Consuming: 3 ms | Connection: statement-10 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  1497. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  1498. FROM
  1499. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  1500. FROM goaf_sensordata
  1501. WHERE goaf_sensor_id = 442129
  1502. ORDER BY goaf_datareport_time DESC
  1503. LIMIT 1) AS A
  1504. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  1505. LEFT JOIN goaf_sensor AS C ON A.goaf_sensor_id = C.goaf_sensor_id
  1506. 11:41:10.245 [XNIO-1 task-2] INFO p6spy - 2023-09-07 11:41:10 | Time Consuming: 4 ms | Connection: statement-10 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  1507. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  1508. FROM
  1509. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  1510. FROM goaf_sensordata
  1511. WHERE goaf_sensor_id = 442193
  1512. ORDER BY goaf_datareport_time DESC
  1513. LIMIT 1) AS A
  1514. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  1515. LEFT JOIN goaf_sensor AS C ON A.goaf_sensor_id = C.goaf_sensor_id
  1516. 11:41:10.252 [XNIO-1 task-2] INFO p6spy - 2023-09-07 11:41:10 | Time Consuming: 5 ms | Connection: statement-10 | SQL: SELECT *
  1517. FROM goaf_sensor
  1518. where oc_id = 406283
  1519. AND goaf_dev_name = 'waterpump'
  1520. 11:41:10.258 [XNIO-1 task-2] INFO p6spy - 2023-09-07 11:41:10 | Time Consuming: 5 ms | Connection: statement-10 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  1521. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  1522. FROM
  1523. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  1524. FROM goaf_sensordata
  1525. WHERE goaf_sensor_id = 442136
  1526. ORDER BY goaf_datareport_time DESC
  1527. LIMIT 1) AS A
  1528. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  1529. LEFT JOIN goaf_sensor AS C ON A.goaf_sensor_id = C.goaf_sensor_id
  1530. 11:41:10.264 [XNIO-1 task-2] INFO p6spy - 2023-09-07 11:41:10 | Time Consuming: 4 ms | Connection: statement-10 | SQL: SELECT *
  1531. FROM goaf_sensor
  1532. where oc_id = 406283
  1533. AND goaf_dev_name = 'machinery'
  1534. 11:41:10.271 [XNIO-1 task-2] INFO p6spy - 2023-09-07 11:41:10 | Time Consuming: 4 ms | Connection: statement-10 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  1535. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  1536. FROM
  1537. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  1538. FROM goaf_sensordata
  1539. WHERE goaf_sensor_id = 442137
  1540. ORDER BY goaf_datareport_time DESC
  1541. LIMIT 1) AS A
  1542. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  1543. LEFT JOIN goaf_sensor AS C ON A.goaf_sensor_id = C.goaf_sensor_id
  1544. 11:41:10.277 [XNIO-1 task-2] INFO p6spy - 2023-09-07 11:41:10 | Time Consuming: 5 ms | Connection: statement-10 | SQL: SELECT *
  1545. FROM goaf_sensor
  1546. where oc_id = 406283
  1547. AND goaf_dev_name = 'compress'
  1548. 11:41:10.286 [XNIO-1 task-2] INFO p6spy - 2023-09-07 11:41:10 | Time Consuming: 5 ms | Connection: statement-10 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  1549. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  1550. FROM
  1551. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  1552. FROM goaf_sensordata
  1553. WHERE goaf_sensor_id = 442135
  1554. ORDER BY goaf_datareport_time DESC
  1555. LIMIT 1) AS A
  1556. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  1557. LEFT JOIN goaf_sensor AS C ON A.goaf_sensor_id = C.goaf_sensor_id
  1558. 11:41:10.293 [XNIO-1 task-2] INFO p6spy - 2023-09-07 11:41:10 | Time Consuming: 5 ms | Connection: statement-10 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  1559. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  1560. FROM
  1561. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  1562. FROM goaf_sensordata
  1563. WHERE goaf_sensor_id = 442139
  1564. ORDER BY goaf_datareport_time DESC
  1565. LIMIT 1) AS A
  1566. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  1567. LEFT JOIN goaf_sensor AS C ON A.goaf_sensor_id = C.goaf_sensor_id
  1568. 11:41:26.979 [XNIO-1 task-6] INFO p6spy - 2023-09-07 11:41:26 | Time Consuming: 4 ms | Connection: statement-10 | SQL: SELECT 1
  1569. 11:41:26.989 [XNIO-1 task-6] INFO p6spy - 2023-09-07 11:41:26 | Time Consuming: 4 ms | Connection: statement-10 | SQL: SELECT *
  1570. FROM goaf_syscfg
  1571. WHERE oc_id = 406283
  1572. 11:41:31.985 [XNIO-1 task-2] INFO p6spy - 2023-09-07 11:41:31 | Time Consuming: 5009 ms | Connection: statement-11 | SQL: SELECT 1
  1573. 11:41:31.985 [XNIO-1 task-4] INFO p6spy - 2023-09-07 11:41:31 | Time Consuming: 5007 ms | Connection: statement-12 | SQL: SELECT 1
  1574. 11:41:31.990 [XNIO-1 task-4] INFO p6spy - 2023-09-07 11:41:31 | Time Consuming: 3 ms | Connection: statement-10 | SQL: SELECT 1
  1575. 11:41:31.990 [XNIO-1 task-2] INFO p6spy - 2023-09-07 11:41:31 | Time Consuming: 3 ms | Connection: statement-14 | SQL: SELECT 1
  1576. 11:41:31.995 [XNIO-1 task-2] INFO p6spy - 2023-09-07 11:41:31 | Time Consuming: 4 ms | Connection: statement-14 | SQL: SELECT count(0) FROM goaf_sensor WHERE oc_id = 406283
  1577. 11:41:31.998 [XNIO-1 task-4] INFO p6spy - 2023-09-07 11:41:31 | Time Consuming: 4 ms | Connection: statement-10 | SQL: SELECT *
  1578. FROM goaf_devinfo
  1579. where oc_id = 406283
  1580. 11:41:32.000 [XNIO-1 task-2] INFO p6spy - 2023-09-07 11:41:32 | Time Consuming: 4 ms | Connection: statement-14 | SQL: SELECT *
  1581. FROM goaf_sensor
  1582. where oc_id = 406283
  1583. LIMIT 10
  1584. 11:41:35.589 [XNIO-1 task-2] INFO p6spy - 2023-09-07 11:41:35 | Time Consuming: 3 ms | Connection: statement-14 | SQL: SELECT 1
  1585. 11:41:35.589 [XNIO-1 task-6] INFO p6spy - 2023-09-07 11:41:35 | Time Consuming: 3 ms | Connection: statement-10 | SQL: SELECT 1
  1586. 11:41:35.590 [XNIO-1 task-4] INFO p6spy - 2023-09-07 11:41:35 | Time Consuming: 3 ms | Connection: statement-15 | SQL: SELECT 1
  1587. 11:41:35.593 [XNIO-1 task-4] INFO p6spy - 2023-09-07 11:41:35 | Time Consuming: 3 ms | Connection: statement-15 | SQL: SELECT count(0) FROM goaf_sensor WHERE oc_id = 406283
  1588. 11:41:35.597 [XNIO-1 task-2] INFO p6spy - 2023-09-07 11:41:35 | Time Consuming: 4 ms | Connection: statement-14 | SQL: SELECT *
  1589. FROM goaf_devinfo
  1590. where oc_id = 406283
  1591. 11:41:35.597 [XNIO-1 task-6] INFO p6spy - 2023-09-07 11:41:35 | Time Consuming: 4 ms | Connection: statement-10 | SQL: SELECT *
  1592. FROM goaf_syscfg
  1593. WHERE oc_id = 406283
  1594. 11:41:35.600 [XNIO-1 task-4] INFO p6spy - 2023-09-07 11:41:35 | Time Consuming: 5 ms | Connection: statement-15 | SQL: SELECT *
  1595. FROM goaf_sensor
  1596. where oc_id = 406283
  1597. LIMIT 10
  1598. 11:41:44.231 [XNIO-1 task-4] INFO p6spy - 2023-09-07 11:41:44 | Time Consuming: 3 ms | Connection: statement-15 | SQL: SELECT 1
  1599. 11:41:44.231 [XNIO-1 task-2] INFO p6spy - 2023-09-07 11:41:44 | Time Consuming: 3 ms | Connection: statement-14 | SQL: SELECT 1
  1600. 11:41:44.232 [XNIO-1 task-6] INFO p6spy - 2023-09-07 11:41:44 | Time Consuming: 3 ms | Connection: statement-10 | SQL: SELECT 1
  1601. 11:41:44.237 [XNIO-1 task-6] INFO p6spy - 2023-09-07 11:41:44 | Time Consuming: 4 ms | Connection: statement-10 | SQL: SELECT count(0) FROM goaf_sensor WHERE oc_id = 406283
  1602. 11:41:44.240 [XNIO-1 task-4] INFO p6spy - 2023-09-07 11:41:44 | Time Consuming: 4 ms | Connection: statement-15 | SQL: SELECT *
  1603. FROM goaf_devinfo
  1604. where oc_id = 406283
  1605. 11:41:44.240 [XNIO-1 task-2] INFO p6spy - 2023-09-07 11:41:44 | Time Consuming: 4 ms | Connection: statement-14 | SQL: SELECT *
  1606. FROM goaf_syscfg
  1607. WHERE oc_id = 406283
  1608. 11:41:44.241 [XNIO-1 task-6] INFO p6spy - 2023-09-07 11:41:44 | Time Consuming: 4 ms | Connection: statement-10 | SQL: SELECT *
  1609. FROM goaf_sensor
  1610. where oc_id = 406283
  1611. LIMIT 10
  1612. 11:42:04.943 [XNIO-1 task-6] INFO p6spy - 2023-09-07 11:42:04 | Time Consuming: 4 ms | Connection: statement-10 | SQL: SELECT 1
  1613. 11:42:04.943 [XNIO-1 task-4] INFO p6spy - 2023-09-07 11:42:04 | Time Consuming: 4 ms | Connection: statement-15 | SQL: SELECT 1
  1614. 11:42:04.944 [XNIO-1 task-2] INFO p6spy - 2023-09-07 11:42:04 | Time Consuming: 4 ms | Connection: statement-14 | SQL: SELECT 1
  1615. 11:42:04.948 [XNIO-1 task-2] INFO p6spy - 2023-09-07 11:42:04 | Time Consuming: 3 ms | Connection: statement-14 | SQL: SELECT count(0) FROM goaf_sensor WHERE oc_id = 406283
  1616. 11:42:04.952 [XNIO-1 task-4] INFO p6spy - 2023-09-07 11:42:04 | Time Consuming: 3 ms | Connection: statement-15 | SQL: SELECT *
  1617. FROM goaf_syscfg
  1618. WHERE oc_id = 406283
  1619. 11:42:04.952 [XNIO-1 task-6] INFO p6spy - 2023-09-07 11:42:04 | Time Consuming: 3 ms | Connection: statement-10 | SQL: SELECT *
  1620. FROM goaf_devinfo
  1621. where oc_id = 406283
  1622. 11:42:04.953 [XNIO-1 task-2] INFO p6spy - 2023-09-07 11:42:04 | Time Consuming: 3 ms | Connection: statement-14 | SQL: SELECT *
  1623. FROM goaf_sensor
  1624. where oc_id = 406283
  1625. LIMIT 10
  1626. 11:42:13.838 [XNIO-1 task-2] INFO p6spy - 2023-09-07 11:42:13 | Time Consuming: 5 ms | Connection: statement-14 | SQL: SELECT 1
  1627. 11:42:13.838 [XNIO-1 task-4] INFO p6spy - 2023-09-07 11:42:13 | Time Consuming: 5 ms | Connection: statement-15 | SQL: SELECT 1
  1628. 11:42:13.838 [XNIO-1 task-6] INFO p6spy - 2023-09-07 11:42:13 | Time Consuming: 3 ms | Connection: statement-10 | SQL: SELECT 1
  1629. 11:42:13.843 [XNIO-1 task-6] INFO p6spy - 2023-09-07 11:42:13 | Time Consuming: 3 ms | Connection: statement-10 | SQL: SELECT count(0) FROM goaf_sensor WHERE oc_id = 406283
  1630. 11:42:13.846 [XNIO-1 task-4] INFO p6spy - 2023-09-07 11:42:13 | Time Consuming: 3 ms | Connection: statement-15 | SQL: SELECT *
  1631. FROM goaf_syscfg
  1632. WHERE oc_id = 406283
  1633. 11:42:13.846 [XNIO-1 task-2] INFO p6spy - 2023-09-07 11:42:13 | Time Consuming: 3 ms | Connection: statement-14 | SQL: SELECT *
  1634. FROM goaf_devinfo
  1635. where oc_id = 406283
  1636. 11:42:13.848 [XNIO-1 task-6] INFO p6spy - 2023-09-07 11:42:13 | Time Consuming: 5 ms | Connection: statement-10 | SQL: SELECT *
  1637. FROM goaf_sensor
  1638. where oc_id = 406283
  1639. LIMIT 10
  1640. 11:42:16.170 [XNIO-1 task-4] INFO p6spy - 2023-09-07 11:42:16 | Time Consuming: 4 ms | Connection: statement-15 | SQL: SELECT 1
  1641. 11:42:16.170 [XNIO-1 task-6] INFO p6spy - 2023-09-07 11:42:16 | Time Consuming: 4 ms | Connection: statement-10 | SQL: SELECT 1
  1642. 11:42:16.172 [XNIO-1 task-2] INFO p6spy - 2023-09-07 11:42:16 | Time Consuming: 3 ms | Connection: statement-14 | SQL: SELECT 1
  1643. 11:42:16.177 [XNIO-1 task-2] INFO p6spy - 2023-09-07 11:42:16 | Time Consuming: 3 ms | Connection: statement-14 | SQL: SELECT count(0) FROM goaf_sensor WHERE oc_id = 406283
  1644. 11:42:16.177 [XNIO-1 task-6] INFO p6spy - 2023-09-07 11:42:16 | Time Consuming: 2 ms | Connection: statement-10 | SQL: SELECT *
  1645. FROM goaf_syscfg
  1646. WHERE oc_id = 406283
  1647. 11:42:16.179 [XNIO-1 task-4] INFO p6spy - 2023-09-07 11:42:16 | Time Consuming: 5 ms | Connection: statement-15 | SQL: SELECT *
  1648. FROM goaf_devinfo
  1649. where oc_id = 406283
  1650. 11:42:16.182 [XNIO-1 task-2] INFO p6spy - 2023-09-07 11:42:16 | Time Consuming: 4 ms | Connection: statement-14 | SQL: SELECT *
  1651. FROM goaf_sensor
  1652. where oc_id = 406283
  1653. LIMIT 10
  1654. 11:42:21.872 [XNIO-1 task-6] INFO p6spy - 2023-09-07 11:42:21 | Time Consuming: 3 ms | Connection: statement-10 | SQL: SELECT 1
  1655. 11:42:21.872 [XNIO-1 task-2] INFO p6spy - 2023-09-07 11:42:21 | Time Consuming: 4 ms | Connection: statement-14 | SQL: SELECT 1
  1656. 11:42:21.874 [XNIO-1 task-4] INFO p6spy - 2023-09-07 11:42:21 | Time Consuming: 4 ms | Connection: statement-15 | SQL: SELECT 1
  1657. 11:42:21.881 [XNIO-1 task-4] INFO p6spy - 2023-09-07 11:42:21 | Time Consuming: 6 ms | Connection: statement-15 | SQL: SELECT count(0) FROM goaf_sensor WHERE oc_id = 406283
  1658. 11:42:21.881 [XNIO-1 task-6] INFO p6spy - 2023-09-07 11:42:21 | Time Consuming: 4 ms | Connection: statement-10 | SQL: SELECT *
  1659. FROM goaf_syscfg
  1660. WHERE oc_id = 406283
  1661. 11:42:21.881 [XNIO-1 task-2] INFO p6spy - 2023-09-07 11:42:21 | Time Consuming: 4 ms | Connection: statement-14 | SQL: SELECT *
  1662. FROM goaf_devinfo
  1663. where oc_id = 406283
  1664. 11:42:21.890 [XNIO-1 task-4] INFO p6spy - 2023-09-07 11:42:21 | Time Consuming: 9 ms | Connection: statement-15 | SQL: SELECT *
  1665. FROM goaf_sensor
  1666. where oc_id = 406283
  1667. LIMIT 10
  1668. 11:42:27.963 [XNIO-1 task-4] INFO p6spy - 2023-09-07 11:42:27 | Time Consuming: 4 ms | Connection: statement-15 | SQL: SELECT 1
  1669. 11:42:27.963 [XNIO-1 task-6] INFO p6spy - 2023-09-07 11:42:27 | Time Consuming: 4 ms | Connection: statement-10 | SQL: SELECT 1
  1670. 11:42:27.964 [XNIO-1 task-2] INFO p6spy - 2023-09-07 11:42:27 | Time Consuming: 3 ms | Connection: statement-14 | SQL: SELECT 1
  1671. 11:42:27.969 [XNIO-1 task-2] INFO p6spy - 2023-09-07 11:42:27 | Time Consuming: 4 ms | Connection: statement-14 | SQL: SELECT count(0) FROM goaf_sensor WHERE oc_id = 406283
  1672. 11:42:27.972 [XNIO-1 task-6] INFO p6spy - 2023-09-07 11:42:27 | Time Consuming: 3 ms | Connection: statement-10 | SQL: SELECT *
  1673. FROM goaf_syscfg
  1674. WHERE oc_id = 406283
  1675. 11:42:27.973 [XNIO-1 task-4] INFO p6spy - 2023-09-07 11:42:27 | Time Consuming: 4 ms | Connection: statement-15 | SQL: SELECT *
  1676. FROM goaf_devinfo
  1677. where oc_id = 406283
  1678. 11:42:27.973 [XNIO-1 task-2] INFO p6spy - 2023-09-07 11:42:27 | Time Consuming: 3 ms | Connection: statement-14 | SQL: SELECT *
  1679. FROM goaf_sensor
  1680. where oc_id = 406283
  1681. LIMIT 10
  1682. 11:43:10.072 [XNIO-1 task-6] INFO p6spy - 2023-09-07 11:43:10 | Time Consuming: 4 ms | Connection: statement-10 | SQL: SELECT 1
  1683. 11:43:10.072 [XNIO-1 task-2] INFO p6spy - 2023-09-07 11:43:10 | Time Consuming: 4 ms | Connection: statement-14 | SQL: SELECT 1
  1684. 11:43:10.074 [XNIO-1 task-4] INFO p6spy - 2023-09-07 11:43:10 | Time Consuming: 4 ms | Connection: statement-15 | SQL: SELECT 1
  1685. 11:43:10.079 [XNIO-1 task-4] INFO p6spy - 2023-09-07 11:43:10 | Time Consuming: 4 ms | Connection: statement-15 | SQL: SELECT count(0) FROM goaf_sensor WHERE oc_id = 406283
  1686. 11:43:10.082 [XNIO-1 task-2] INFO p6spy - 2023-09-07 11:43:10 | Time Consuming: 4 ms | Connection: statement-14 | SQL: SELECT *
  1687. FROM goaf_devinfo
  1688. where oc_id = 406283
  1689. 11:43:10.082 [XNIO-1 task-6] INFO p6spy - 2023-09-07 11:43:10 | Time Consuming: 4 ms | Connection: statement-10 | SQL: SELECT *
  1690. FROM goaf_syscfg
  1691. WHERE oc_id = 406283
  1692. 11:43:10.083 [XNIO-1 task-4] INFO p6spy - 2023-09-07 11:43:10 | Time Consuming: 4 ms | Connection: statement-15 | SQL: SELECT *
  1693. FROM goaf_sensor
  1694. where oc_id = 406283
  1695. LIMIT 10
  1696. 11:43:32.351 [XNIO-1 task-4] INFO p6spy - 2023-09-07 11:43:32 | Time Consuming: 5 ms | Connection: statement-15 | SQL: SELECT 1
  1697. 11:43:32.351 [XNIO-1 task-2] INFO p6spy - 2023-09-07 11:43:32 | Time Consuming: 3 ms | Connection: statement-14 | SQL: SELECT 1
  1698. 11:43:32.351 [XNIO-1 task-6] INFO p6spy - 2023-09-07 11:43:32 | Time Consuming: 5 ms | Connection: statement-10 | SQL: SELECT 1
  1699. 11:43:32.357 [XNIO-1 task-2] INFO p6spy - 2023-09-07 11:43:32 | Time Consuming: 5 ms | Connection: statement-14 | SQL: SELECT count(0) FROM goaf_sensor WHERE oc_id = 406283
  1700. 11:43:32.361 [XNIO-1 task-6] INFO p6spy - 2023-09-07 11:43:32 | Time Consuming: 5 ms | Connection: statement-10 | SQL: SELECT *
  1701. FROM goaf_syscfg
  1702. WHERE oc_id = 406283
  1703. 11:43:32.361 [XNIO-1 task-4] INFO p6spy - 2023-09-07 11:43:32 | Time Consuming: 5 ms | Connection: statement-15 | SQL: SELECT *
  1704. FROM goaf_devinfo
  1705. where oc_id = 406283
  1706. 11:43:32.362 [XNIO-1 task-2] INFO p6spy - 2023-09-07 11:43:32 | Time Consuming: 4 ms | Connection: statement-14 | SQL: SELECT *
  1707. FROM goaf_sensor
  1708. where oc_id = 406283
  1709. LIMIT 10
  1710. 11:43:39.223 [XNIO-1 task-4] INFO p6spy - 2023-09-07 11:43:39 | Time Consuming: 7 ms | Connection: statement-15 | SQL: SELECT 1
  1711. 11:43:39.223 [XNIO-1 task-6] INFO p6spy - 2023-09-07 11:43:39 | Time Consuming: 7 ms | Connection: statement-10 | SQL: SELECT 1
  1712. 11:43:39.223 [XNIO-1 task-2] INFO p6spy - 2023-09-07 11:43:39 | Time Consuming: 7 ms | Connection: statement-14 | SQL: SELECT 1
  1713. 11:43:39.231 [XNIO-1 task-6] INFO p6spy - 2023-09-07 11:43:39 | Time Consuming: 7 ms | Connection: statement-10 | SQL: SELECT count(0) FROM goaf_sensor WHERE oc_id = 406283
  1714. 11:43:39.240 [XNIO-1 task-4] INFO p6spy - 2023-09-07 11:43:39 | Time Consuming: 8 ms | Connection: statement-15 | SQL: SELECT *
  1715. FROM goaf_syscfg
  1716. WHERE oc_id = 406283
  1717. 11:43:39.240 [XNIO-1 task-6] INFO p6spy - 2023-09-07 11:43:39 | Time Consuming: 8 ms | Connection: statement-10 | SQL: SELECT *
  1718. FROM goaf_sensor
  1719. where oc_id = 406283
  1720. LIMIT 10
  1721. 11:43:39.240 [XNIO-1 task-2] INFO p6spy - 2023-09-07 11:43:39 | Time Consuming: 8 ms | Connection: statement-14 | SQL: SELECT *
  1722. FROM goaf_devinfo
  1723. where oc_id = 406283
  1724. 11:44:06.426 [XNIO-1 task-6] INFO p6spy - 2023-09-07 11:44:06 | Time Consuming: 4 ms | Connection: statement-10 | SQL: SELECT 1
  1725. 11:44:06.426 [XNIO-1 task-4] INFO p6spy - 2023-09-07 11:44:06 | Time Consuming: 4 ms | Connection: statement-15 | SQL: SELECT 1
  1726. 11:44:06.430 [XNIO-1 task-2] INFO p6spy - 2023-09-07 11:44:06 | Time Consuming: 3 ms | Connection: statement-14 | SQL: SELECT 1
  1727. 11:44:06.434 [XNIO-1 task-4] INFO p6spy - 2023-09-07 11:44:06 | Time Consuming: 3 ms | Connection: statement-15 | SQL: SELECT *
  1728. FROM goaf_syscfg
  1729. WHERE oc_id = 406283
  1730. 11:44:06.435 [XNIO-1 task-2] INFO p6spy - 2023-09-07 11:44:06 | Time Consuming: 4 ms | Connection: statement-14 | SQL: SELECT count(0) FROM goaf_sensor WHERE oc_id = 406283
  1731. 11:44:06.435 [XNIO-1 task-6] INFO p6spy - 2023-09-07 11:44:06 | Time Consuming: 4 ms | Connection: statement-10 | SQL: SELECT *
  1732. FROM goaf_devinfo
  1733. where oc_id = 406283
  1734. 11:44:06.440 [XNIO-1 task-2] INFO p6spy - 2023-09-07 11:44:06 | Time Consuming: 4 ms | Connection: statement-14 | SQL: SELECT *
  1735. FROM goaf_sensor
  1736. where oc_id = 406283
  1737. LIMIT 10
  1738. 11:44:13.047 [XNIO-1 task-2] INFO p6spy - 2023-09-07 11:44:13 | Time Consuming: 4 ms | Connection: statement-14 | SQL: SELECT 1
  1739. 11:44:13.047 [XNIO-1 task-4] INFO p6spy - 2023-09-07 11:44:13 | Time Consuming: 3 ms | Connection: statement-15 | SQL: SELECT 1
  1740. 11:44:13.047 [XNIO-1 task-6] INFO p6spy - 2023-09-07 11:44:13 | Time Consuming: 3 ms | Connection: statement-10 | SQL: SELECT 1
  1741. 11:44:13.052 [XNIO-1 task-6] INFO p6spy - 2023-09-07 11:44:13 | Time Consuming: 4 ms | Connection: statement-10 | SQL: SELECT count(0) FROM goaf_sensor WHERE oc_id = 406283
  1742. 11:44:13.055 [XNIO-1 task-2] INFO p6spy - 2023-09-07 11:44:13 | Time Consuming: 4 ms | Connection: statement-14 | SQL: SELECT *
  1743. FROM goaf_devinfo
  1744. where oc_id = 406283
  1745. 11:44:13.055 [XNIO-1 task-4] INFO p6spy - 2023-09-07 11:44:13 | Time Consuming: 3 ms | Connection: statement-15 | SQL: SELECT *
  1746. FROM goaf_syscfg
  1747. WHERE oc_id = 406283
  1748. 11:44:13.058 [XNIO-1 task-6] INFO p6spy - 2023-09-07 11:44:13 | Time Consuming: 4 ms | Connection: statement-10 | SQL: SELECT *
  1749. FROM goaf_sensor
  1750. where oc_id = 406283
  1751. LIMIT 10
  1752. 11:44:46.782 [XNIO-1 task-4] INFO p6spy - 2023-09-07 11:44:46 | Time Consuming: 10 ms | Connection: statement-15 | SQL: SELECT 1
  1753. 11:44:46.809 [XNIO-1 task-4] INFO p6spy - 2023-09-07 11:44:46 | Time Consuming: 12 ms | Connection: statement-15 | SQL: SELECT
  1754. client_id,
  1755. client_title,
  1756. client_app_id,
  1757. client_app_key,
  1758. client_app_secret,
  1759. client_desc,
  1760. status,
  1761. is_fixed
  1762. FROM client
  1763. WHERE deleted_flag = 0
  1764. AND client_app_id = '10001'
  1765. AND client_app_key = '82a8bf439373e305'
  1766. 11:44:46.884 [XNIO-1 task-4] INFO p6spy - 2023-09-07 11:44:46 | Time Consuming: 6 ms | Connection: statement-15 | SQL: SELECT
  1767. A.client_id,
  1768. A.role_id,
  1769. A.permit_id,
  1770. A.permit_title,
  1771. A.permit_code,
  1772. A.permit_entry,
  1773. A.permit_desc,
  1774. A.permit_type,
  1775. A.parent_id,
  1776. A.root_id,
  1777. A.sort_no,
  1778. A.is_home
  1779. FROM s_role_permit AS A
  1780. WHERE 1 = 1
  1781. AND A.client_id = 2
  1782. AND A.role_id = 6
  1783. ORDER BY A.parent_id ASC ,A.sort_no ASC
  1784. 11:44:47.155 [XNIO-1 task-4] INFO p6spy - 2023-09-07 11:44:47 | Time Consuming: 38 ms | Connection: statement-15 | SQL: SELECT count(*)
  1785. FROM msg AS M
  1786. WHERE M.oc_id = 406283
  1787. AND (
  1788. EXISTS (
  1789. SELECT 1 FROM msg_to TT
  1790. WHERE M.oc_id = TT.oc_id AND M.msg_id = TT.msg_id AND TT.msg_to_id = 406283 AND TT.status=0
  1791. ) OR
  1792. EXISTS (
  1793. SELECT 1 FROM msg_cc CC
  1794. WHERE M.oc_id = CC.oc_id AND M.msg_id = CC.msg_id AND CC.msg_cc_id = 406283 AND CC.status=0
  1795. )
  1796. )
  1797. 11:44:47.752 [XNIO-1 task-4] INFO p6spy - 2023-09-07 11:44:47 | Time Consuming: 7 ms | Connection: statement-15 | SQL: SELECT 1
  1798. 11:44:47.767 [XNIO-1 task-4] INFO p6spy - 2023-09-07 11:44:47 | Time Consuming: 6 ms | Connection: statement-15 | SQL: SELECT *
  1799. FROM goaf_devinfo
  1800. where oc_id = 406283
  1801. 11:44:47.778 [XNIO-1 task-4] INFO p6spy - 2023-09-07 11:44:47 | Time Consuming: 9 ms | Connection: statement-15 | SQL: SELECT *
  1802. FROM goaf_sensor
  1803. where oc_id = 406283
  1804. AND goaf_dev_name = 'other'
  1805. 11:44:47.786 [XNIO-1 task-4] INFO p6spy - 2023-09-07 11:44:47 | Time Consuming: 6 ms | Connection: statement-15 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  1806. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  1807. FROM
  1808. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  1809. FROM goaf_sensordata
  1810. WHERE goaf_sensor_id = 442129
  1811. ORDER BY goaf_datareport_time DESC
  1812. LIMIT 1) AS A
  1813. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  1814. LEFT JOIN goaf_sensor AS C ON A.goaf_sensor_id = C.goaf_sensor_id
  1815. 11:44:47.792 [XNIO-1 task-4] INFO p6spy - 2023-09-07 11:44:47 | Time Consuming: 5 ms | Connection: statement-15 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  1816. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  1817. FROM
  1818. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  1819. FROM goaf_sensordata
  1820. WHERE goaf_sensor_id = 442193
  1821. ORDER BY goaf_datareport_time DESC
  1822. LIMIT 1) AS A
  1823. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  1824. LEFT JOIN goaf_sensor AS C ON A.goaf_sensor_id = C.goaf_sensor_id
  1825. 11:44:47.802 [XNIO-1 task-4] INFO p6spy - 2023-09-07 11:44:47 | Time Consuming: 9 ms | Connection: statement-15 | SQL: SELECT *
  1826. FROM goaf_sensor
  1827. where oc_id = 406283
  1828. AND goaf_dev_name = 'waterpump'
  1829. 11:44:47.827 [XNIO-1 task-4] INFO p6spy - 2023-09-07 11:44:47 | Time Consuming: 24 ms | Connection: statement-15 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  1830. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  1831. FROM
  1832. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  1833. FROM goaf_sensordata
  1834. WHERE goaf_sensor_id = 442136
  1835. ORDER BY goaf_datareport_time DESC
  1836. LIMIT 1) AS A
  1837. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  1838. LEFT JOIN goaf_sensor AS C ON A.goaf_sensor_id = C.goaf_sensor_id
  1839. 11:44:47.835 [XNIO-1 task-4] INFO p6spy - 2023-09-07 11:44:47 | Time Consuming: 7 ms | Connection: statement-15 | SQL: SELECT *
  1840. FROM goaf_sensor
  1841. where oc_id = 406283
  1842. AND goaf_dev_name = 'machinery'
  1843. 11:44:47.844 [XNIO-1 task-4] INFO p6spy - 2023-09-07 11:44:47 | Time Consuming: 8 ms | Connection: statement-15 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  1844. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  1845. FROM
  1846. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  1847. FROM goaf_sensordata
  1848. WHERE goaf_sensor_id = 442137
  1849. ORDER BY goaf_datareport_time DESC
  1850. LIMIT 1) AS A
  1851. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  1852. LEFT JOIN goaf_sensor AS C ON A.goaf_sensor_id = C.goaf_sensor_id
  1853. 11:44:47.850 [XNIO-1 task-4] INFO p6spy - 2023-09-07 11:44:47 | Time Consuming: 5 ms | Connection: statement-15 | SQL: SELECT *
  1854. FROM goaf_sensor
  1855. where oc_id = 406283
  1856. AND goaf_dev_name = 'compress'
  1857. 11:44:47.858 [XNIO-1 task-4] INFO p6spy - 2023-09-07 11:44:47 | Time Consuming: 6 ms | Connection: statement-15 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  1858. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  1859. FROM
  1860. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  1861. FROM goaf_sensordata
  1862. WHERE goaf_sensor_id = 442135
  1863. ORDER BY goaf_datareport_time DESC
  1864. LIMIT 1) AS A
  1865. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  1866. LEFT JOIN goaf_sensor AS C ON A.goaf_sensor_id = C.goaf_sensor_id
  1867. 11:44:47.867 [XNIO-1 task-4] INFO p6spy - 2023-09-07 11:44:47 | Time Consuming: 9 ms | Connection: statement-15 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  1868. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  1869. FROM
  1870. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  1871. FROM goaf_sensordata
  1872. WHERE goaf_sensor_id = 442139
  1873. ORDER BY goaf_datareport_time DESC
  1874. LIMIT 1) AS A
  1875. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  1876. LEFT JOIN goaf_sensor AS C ON A.goaf_sensor_id = C.goaf_sensor_id
  1877. 11:44:48.655 [XNIO-1 task-4] INFO p6spy - 2023-09-07 11:44:48 | Time Consuming: 7 ms | Connection: statement-15 | SQL: SELECT 1
  1878. 11:44:48.672 [XNIO-1 task-4] INFO p6spy - 2023-09-07 11:44:48 | Time Consuming: 6 ms | Connection: statement-15 | SQL: SELECT
  1879. client_id,
  1880. client_title,
  1881. client_app_id,
  1882. client_app_key,
  1883. client_app_secret,
  1884. client_desc,
  1885. status,
  1886. is_fixed
  1887. FROM client
  1888. WHERE deleted_flag = 0
  1889. AND client_app_id = '10001'
  1890. AND client_app_key = '82a8bf439373e305'
  1891. 11:44:48.718 [XNIO-1 task-4] INFO p6spy - 2023-09-07 11:44:48 | Time Consuming: 10 ms | Connection: statement-15 | SQL: SELECT
  1892. A.client_id,
  1893. A.role_id,
  1894. A.permit_id,
  1895. A.permit_title,
  1896. A.permit_code,
  1897. A.permit_entry,
  1898. A.permit_desc,
  1899. A.permit_type,
  1900. A.parent_id,
  1901. A.root_id,
  1902. A.sort_no,
  1903. A.is_home
  1904. FROM s_role_permit AS A
  1905. WHERE 1 = 1
  1906. AND A.client_id = 2
  1907. AND A.role_id = 6
  1908. ORDER BY A.parent_id ASC ,A.sort_no ASC
  1909. 11:44:48.885 [XNIO-1 task-6] INFO p6spy - 2023-09-07 11:44:48 | Time Consuming: 10 ms | Connection: statement-16 | SQL: SELECT 1
  1910. 11:44:48.885 [XNIO-1 task-4] INFO p6spy - 2023-09-07 11:44:48 | Time Consuming: 10 ms | Connection: statement-17 | SQL: SELECT 1
  1911. 11:44:48.885 [XNIO-1 task-5] INFO p6spy - 2023-09-07 11:44:48 | Time Consuming: 10 ms | Connection: statement-14 | SQL: SELECT 1
  1912. 11:44:48.895 [XNIO-1 task-2] INFO p6spy - 2023-09-07 11:44:48 | Time Consuming: 9 ms | Connection: statement-15 | SQL: SELECT *
  1913. FROM goaf_syscfg
  1914. WHERE oc_id = 406283
  1915. 11:44:48.895 [XNIO-1 task-4] INFO p6spy - 2023-09-07 11:44:48 | Time Consuming: 9 ms | Connection: statement-17 | SQL: SELECT count(0) FROM goaf_sensor WHERE oc_id = 406283
  1916. 11:44:48.906 [XNIO-1 task-4] INFO p6spy - 2023-09-07 11:44:48 | Time Consuming: 10 ms | Connection: statement-17 | SQL: SELECT *
  1917. FROM goaf_sensor
  1918. where oc_id = 406283
  1919. LIMIT 10
  1920. 11:44:48.906 [XNIO-1 task-5] INFO p6spy - 2023-09-07 11:44:48 | Time Consuming: 10 ms | Connection: statement-14 | SQL: SELECT *
  1921. FROM goaf_devinfo
  1922. where oc_id = 406283
  1923. 11:44:48.927 [XNIO-1 task-6] INFO p6spy - 2023-09-07 11:44:48 | Time Consuming: 31 ms | Connection: statement-16 | SQL: SELECT count(*)
  1924. FROM msg AS M
  1925. WHERE M.oc_id = 406283
  1926. AND (
  1927. EXISTS (
  1928. SELECT 1 FROM msg_to TT
  1929. WHERE M.oc_id = TT.oc_id AND M.msg_id = TT.msg_id AND TT.msg_to_id = 406283 AND TT.status=0
  1930. ) OR
  1931. EXISTS (
  1932. SELECT 1 FROM msg_cc CC
  1933. WHERE M.oc_id = CC.oc_id AND M.msg_id = CC.msg_id AND CC.msg_cc_id = 406283 AND CC.status=0
  1934. )
  1935. )
  1936. 11:49:24.306 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  1937. 11:49:24.307 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.4.Final
  1938. 11:49:24.310 [SpringApplicationShutdownHook] INFO io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
  1939. 11:49:24.311 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - Removing {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  1940. 11:49:24.311 [SpringApplicationShutdownHook] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 0 subscriber(s).
  1941. 11:49:24.311 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - stopped bean '_org.springframework.integration.errorLogger'
  1942. 11:49:24.319 [SpringApplicationShutdownHook] INFO o.s.j.e.a.AnnotationMBeanExporter - Could not unregister MBean [com.github.tobato.fastdfs.domain.conn:name=fdfsConnectionPool,type=FdfsConnectionPool] as said MBean is not registered (perhaps already unregistered by an external process)
  1943. 11:49:24.320 [SpringApplicationShutdownHook] INFO o.s.s.quartz.SchedulerFactoryBean - Shutting down Quartz Scheduler
  1944. 11:49:24.320 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
  1945. 11:49:24.320 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  1946. 11:49:24.320 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
  1947. 11:49:24.333 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown initiated...
  1948. 11:49:24.335 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown completed.
  1949. 12:59:02.234 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.0.Final
  1950. 12:59:02.280 [restartedMain] INFO com.zhyc.xps.XPSApplication - Starting XPSApplication using Java 17.0.6 with PID 16372 (E:\zhycnewprj\iotplatform\xps-server-3\xps-application\target\classes started by qzz19 in E:\zhycnewprj\iotplatform\xps-server-3)
  1951. 12:59:02.280 [restartedMain] INFO com.zhyc.xps.XPSApplication - The following 1 profile is active: "local"
  1952. 12:59:02.334 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
  1953. 12:59:02.334 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
  1954. 12:59:04.111 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
  1955. 12:59:04.114 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  1956. 12:59:04.200 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 73 ms. Found 0 Redis repository interfaces.
  1957. 12:59:04.361 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created.
  1958. 12:59:04.377 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created.
  1959. 12:59:05.129 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  1960. 12:59:05.130 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 2795 ms
  1961. 12:59:07.441 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor
  1962. 12:59:07.450 [restartedMain] INFO o.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  1963. 12:59:07.451 [restartedMain] INFO org.quartz.core.QuartzScheduler - Quartz Scheduler v.2.3.2 created.
  1964. 12:59:07.451 [restartedMain] INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized.
  1965. 12:59:07.452 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
  1966. Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  1967. NOT STARTED.
  1968. Currently in standby mode.
  1969. Number of jobs executed: 0
  1970. Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  1971. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
  1972. 12:59:07.452 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  1973. 12:59:07.452 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2
  1974. 12:59:07.452 [restartedMain] INFO org.quartz.core.QuartzScheduler - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@49f79a87
  1975. 12:59:09.154 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer - LiveReload server is running on port 35729
  1976. 12:59:09.160 [restartedMain] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 15 endpoint(s) beneath base path '/actuator/z'
  1977. 12:59:09.304 [restartedMain] INFO io.undertow.websockets.jsr - UT026003: Adding annotated server endpoint class com.zhyc.xps.common.ws.WebSocketServer for path /websocket/link
  1978. 12:59:09.333 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  1979. 12:59:09.333 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 1 subscriber(s).
  1980. 12:59:09.333 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - started bean '_org.springframework.integration.errorLogger'
  1981. 12:59:09.353 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  1982. 12:59:09.362 [restartedMain] INFO org.xnio - XNIO version 3.8.8.Final
  1983. 12:59:09.371 [restartedMain] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.8.Final
  1984. 12:59:09.400 [restartedMain] INFO org.jboss.threads - JBoss Threads version 3.5.0.Final
  1985. 12:59:09.449 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 1788 (http)
  1986. 12:59:09.450 [restartedMain] INFO o.s.s.quartz.SchedulerFactoryBean - Starting Quartz Scheduler now
  1987. 12:59:09.451 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  1988. 12:59:09.475 [restartedMain] INFO com.zhyc.xps.XPSApplication - Started XPSApplication in 7.702 seconds (process running for 8.682)
  1989. 12:59:09.477 [restartedMain] INFO com.zhyc.xps.sys.job.InitSystemJob - 初始化系统定时任务
  1990. 12:59:09.484 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Starting...
  1991. 12:59:09.801 [restartedMain] INFO p6spy - 2023-09-07 12:59:09 | Time Consuming: 14 ms | Connection: statement-0 | SQL: SELECT 1
  1992. 12:59:09.805 [restartedMain] INFO com.zaxxer.hikari.pool.HikariPool - DatebookHikariCP - Added connection com.p6spy.engine.wrapper.ConnectionWrapper@445bee41
  1993. 12:59:09.808 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Start completed.
  1994. 12:59:09.875 [restartedMain] INFO p6spy - 2023-09-07 12:59:09 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT
  1995. A.job_id,
  1996. A.job_title,
  1997. A.job_desc,
  1998. A.status,
  1999. A.job_type,
  2000. A.job_code,
  2001. A.job_cron,
  2002. A.job_class_id,
  2003. B.job_class,
  2004. A.cycle_title,
  2005. A.cycle_period,
  2006. A.cycle_unit
  2007. FROM job AS A
  2008. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  2009. WHERE A.deleted_flag = 0
  2010. AND A.status = 1
  2011. ORDER BY A.job_id ASC
  2012. 12:59:09.896 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  2013. 12:59:09.898 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  2014. 12:59:10.590 [RMI TCP Connection(7)-192.168.3.5] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
  2015. 12:59:10.591 [RMI TCP Connection(7)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
  2016. 12:59:10.596 [RMI TCP Connection(7)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 5 ms
  2017. 12:59:10.600 [RMI TCP Connection(6)-192.168.3.5] INFO p6spy - 2023-09-07 12:59:10 | Time Consuming: 17 ms | Connection: statement-0 | SQL: SELECT 1
  2018. 12:59:10.617 [RMI TCP Connection(6)-192.168.3.5] INFO p6spy - 2023-09-07 12:59:10 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  2019. 12:59:39.431 [XNIO-1 task-3] INFO p6spy - 2023-09-07 12:59:39 | Time Consuming: 10 ms | Connection: statement-0 | SQL: SELECT 1
  2020. 12:59:39.455 [XNIO-1 task-3] INFO p6spy - 2023-09-07 12:59:39 | Time Consuming: 11 ms | Connection: statement-0 | SQL: SELECT
  2021. client_id,
  2022. client_title,
  2023. client_app_id,
  2024. client_app_key,
  2025. client_app_secret,
  2026. client_desc,
  2027. status,
  2028. is_fixed
  2029. FROM client
  2030. WHERE deleted_flag = 0
  2031. AND client_app_id = '10001'
  2032. AND client_app_key = '82a8bf439373e305'
  2033. 12:59:39.500 [XNIO-1 task-3] INFO p6spy - 2023-09-07 12:59:39 | Time Consuming: 12 ms | Connection: statement-0 | SQL: SELECT
  2034. A.client_id,
  2035. A.role_id,
  2036. A.permit_id,
  2037. A.permit_title,
  2038. A.permit_code,
  2039. A.permit_entry,
  2040. A.permit_desc,
  2041. A.permit_type,
  2042. A.parent_id,
  2043. A.root_id,
  2044. A.sort_no,
  2045. A.is_home
  2046. FROM s_role_permit AS A
  2047. WHERE 1 = 1
  2048. AND A.client_id = 2
  2049. AND A.role_id = 6
  2050. ORDER BY A.parent_id ASC ,A.sort_no ASC
  2051. 12:59:39.779 [XNIO-1 task-2] INFO p6spy - 2023-09-07 12:59:39 | Time Consuming: 8 ms | Connection: statement-1 | SQL: SELECT 1
  2052. 12:59:39.804 [XNIO-1 task-2] INFO p6spy - 2023-09-07 12:59:39 | Time Consuming: 10 ms | Connection: statement-1 | SQL: SELECT *
  2053. FROM goaf_devinfo
  2054. where oc_id = 406283
  2055. 13:00:07.923 [XNIO-1 task-3] INFO p6spy - 2023-09-07 13:00:07 | Time Consuming: 28141 ms | Connection: statement-0 | SQL: SELECT count(*)
  2056. FROM msg AS M
  2057. WHERE M.oc_id = 406283
  2058. AND (
  2059. EXISTS (
  2060. SELECT 1 FROM msg_to TT
  2061. WHERE M.oc_id = TT.oc_id AND M.msg_id = TT.msg_id AND TT.msg_to_id = 406283 AND TT.status=0
  2062. ) OR
  2063. EXISTS (
  2064. SELECT 1 FROM msg_cc CC
  2065. WHERE M.oc_id = CC.oc_id AND M.msg_id = CC.msg_id AND CC.msg_cc_id = 406283 AND CC.status=0
  2066. )
  2067. )
  2068. 13:00:07.946 [XNIO-1 task-2] INFO p6spy - 2023-09-07 13:00:07 | Time Consuming: 12 ms | Connection: statement-1 | SQL: SELECT *
  2069. FROM goaf_sensor
  2070. where oc_id = 406283
  2071. AND goaf_dev_name = 'other'
  2072. 13:05:11.230 [XNIO-1 task-2] INFO p6spy - 2023-09-07 13:05:11 | Time Consuming: 18984 ms | Connection: statement-1 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  2073. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  2074. FROM
  2075. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  2076. FROM goaf_sensordata
  2077. WHERE goaf_sensor_id = 442129
  2078. ORDER BY goaf_datareport_time DESC
  2079. LIMIT 1) AS A
  2080. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  2081. LEFT JOIN goaf_sensor AS C ON A.goaf_sensor_id = C.goaf_sensor_id
  2082. 13:05:15.374 [XNIO-1 task-4] INFO p6spy - 2023-09-07 13:05:15 | Time Consuming: 5001 ms | Connection: statement-0 | SQL: SELECT 1
  2083. 13:05:15.375 [XNIO-1 task-5] INFO p6spy - 2023-09-07 13:05:15 | Time Consuming: 5002 ms | Connection: statement-2 | SQL: SELECT 1
  2084. 13:05:15.379 [XNIO-1 task-5] INFO p6spy - 2023-09-07 13:05:15 | Time Consuming: 3 ms | Connection: statement-6 | SQL: SELECT 1
  2085. 13:05:15.379 [XNIO-1 task-4] INFO p6spy - 2023-09-07 13:05:15 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT 1
  2086. 13:05:15.389 [XNIO-1 task-5] INFO p6spy - 2023-09-07 13:05:15 | Time Consuming: 4 ms | Connection: statement-6 | SQL: SELECT *
  2087. FROM goaf_devinfo
  2088. where oc_id = 406283
  2089. 13:05:15.389 [XNIO-1 task-4] INFO p6spy - 2023-09-07 13:05:15 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT *
  2090. FROM goaf_syscfg
  2091. WHERE oc_id = 406283
  2092. 13:05:15.453 [XNIO-1 task-3] INFO p6spy - 2023-09-07 13:05:15 | Time Consuming: 5001 ms | Connection: statement-3 | SQL: SELECT 1
  2093. 13:05:15.459 [XNIO-1 task-3] INFO p6spy - 2023-09-07 13:05:15 | Time Consuming: 5 ms | Connection: statement-5 | SQL: SELECT count(0) FROM goaf_sensor WHERE oc_id = 406283
  2094. 13:05:15.467 [XNIO-1 task-3] INFO p6spy - 2023-09-07 13:05:15 | Time Consuming: 5 ms | Connection: statement-5 | SQL: SELECT *
  2095. FROM goaf_sensor
  2096. where oc_id = 406283
  2097. LIMIT 10
  2098. 13:05:16.525 [XNIO-1 task-2] INFO p6spy - 2023-09-07 13:05:16 | Time Consuming: 5005 ms | Connection: statement-4 | SQL: SELECT 1
  2099. 13:05:16.531 [XNIO-1 task-2] INFO p6spy - 2023-09-07 13:05:16 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT 1
  2100. 13:05:36.491 [XNIO-1 task-3] INFO p6spy - 2023-09-07 13:05:36 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT 1
  2101. 13:05:36.503 [XNIO-1 task-3] INFO p6spy - 2023-09-07 13:05:36 | Time Consuming: 7 ms | Connection: statement-5 | SQL: SELECT *
  2102. FROM goaf_devinfo
  2103. where oc_id = 406283
  2104. 13:05:43.824 [XNIO-1 task-3] INFO p6spy - 2023-09-07 13:05:43 | Time Consuming: 5 ms | Connection: statement-5 | SQL: SELECT *
  2105. FROM goaf_sensor
  2106. where oc_id = 406283
  2107. AND goaf_dev_name = 'other'
  2108. 13:05:43.830 [XNIO-1 task-3] INFO p6spy - 2023-09-07 13:05:43 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  2109. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  2110. FROM
  2111. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  2112. FROM goaf_sensordata
  2113. WHERE goaf_sensor_id = 442129
  2114. ORDER BY goaf_datareport_time DESC
  2115. LIMIT 1) AS A
  2116. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  2117. LEFT JOIN goaf_sensor AS C ON A.goaf_sensor_id = C.goaf_sensor_id
  2118. 13:05:43.835 [XNIO-1 task-3] INFO p6spy - 2023-09-07 13:05:43 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  2119. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  2120. FROM
  2121. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  2122. FROM goaf_sensordata
  2123. WHERE goaf_sensor_id = 442198
  2124. ORDER BY goaf_datareport_time DESC
  2125. LIMIT 1) AS A
  2126. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  2127. LEFT JOIN goaf_sensor AS C ON A.goaf_sensor_id = C.goaf_sensor_id
  2128. 13:05:44.467 [XNIO-1 task-3] INFO p6spy - 2023-09-07 13:05:44 | Time Consuming: 5 ms | Connection: statement-5 | SQL: SELECT *
  2129. FROM goaf_sensor
  2130. where oc_id = 406283
  2131. AND goaf_dev_name = 'waterpump'
  2132. 13:05:44.473 [XNIO-1 task-3] INFO p6spy - 2023-09-07 13:05:44 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  2133. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  2134. FROM
  2135. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  2136. FROM goaf_sensordata
  2137. WHERE goaf_sensor_id = 442136
  2138. ORDER BY goaf_datareport_time DESC
  2139. LIMIT 1) AS A
  2140. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  2141. LEFT JOIN goaf_sensor AS C ON A.goaf_sensor_id = C.goaf_sensor_id
  2142. 13:05:44.928 [XNIO-1 task-3] INFO p6spy - 2023-09-07 13:05:44 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT *
  2143. FROM goaf_sensor
  2144. where oc_id = 406283
  2145. AND goaf_dev_name = 'machinery'
  2146. 13:05:44.935 [XNIO-1 task-3] INFO p6spy - 2023-09-07 13:05:44 | Time Consuming: 6 ms | Connection: statement-5 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  2147. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  2148. FROM
  2149. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  2150. FROM goaf_sensordata
  2151. WHERE goaf_sensor_id = 442137
  2152. ORDER BY goaf_datareport_time DESC
  2153. LIMIT 1) AS A
  2154. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  2155. LEFT JOIN goaf_sensor AS C ON A.goaf_sensor_id = C.goaf_sensor_id
  2156. 13:05:46.287 [XNIO-1 task-3] INFO p6spy - 2023-09-07 13:05:46 | Time Consuming: 5 ms | Connection: statement-5 | SQL: SELECT *
  2157. FROM goaf_sensor
  2158. where oc_id = 406283
  2159. AND goaf_dev_name = 'compress'
  2160. 13:05:46.293 [XNIO-1 task-3] INFO p6spy - 2023-09-07 13:05:46 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  2161. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  2162. FROM
  2163. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  2164. FROM goaf_sensordata
  2165. WHERE goaf_sensor_id = 442135
  2166. ORDER BY goaf_datareport_time DESC
  2167. LIMIT 1) AS A
  2168. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  2169. LEFT JOIN goaf_sensor AS C ON A.goaf_sensor_id = C.goaf_sensor_id
  2170. 13:05:46.298 [XNIO-1 task-3] INFO p6spy - 2023-09-07 13:05:46 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  2171. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  2172. FROM
  2173. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  2174. FROM goaf_sensordata
  2175. WHERE goaf_sensor_id = 442139
  2176. ORDER BY goaf_datareport_time DESC
  2177. LIMIT 1) AS A
  2178. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  2179. LEFT JOIN goaf_sensor AS C ON A.goaf_sensor_id = C.goaf_sensor_id
  2180. 13:05:52.416 [XNIO-1 task-5] INFO p6spy - 2023-09-07 13:05:52 | Time Consuming: 3 ms | Connection: statement-6 | SQL: SELECT 1
  2181. 13:05:52.416 [XNIO-1 task-2] INFO p6spy - 2023-09-07 13:05:52 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT 1
  2182. 13:05:52.419 [XNIO-1 task-3] INFO p6spy - 2023-09-07 13:05:52 | Time Consuming: 4 ms | Connection: statement-7 | SQL: SELECT 1
  2183. 13:05:52.423 [XNIO-1 task-3] INFO p6spy - 2023-09-07 13:05:52 | Time Consuming: 3 ms | Connection: statement-7 | SQL: SELECT count(0) FROM goaf_sensor WHERE oc_id = 406283
  2184. 13:05:52.426 [XNIO-1 task-2] INFO p6spy - 2023-09-07 13:05:52 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT *
  2185. FROM goaf_syscfg
  2186. WHERE oc_id = 406283
  2187. 13:05:52.427 [XNIO-1 task-5] INFO p6spy - 2023-09-07 13:05:52 | Time Consuming: 3 ms | Connection: statement-6 | SQL: SELECT *
  2188. FROM goaf_devinfo
  2189. where oc_id = 406283
  2190. 13:05:52.427 [XNIO-1 task-3] INFO p6spy - 2023-09-07 13:05:52 | Time Consuming: 4 ms | Connection: statement-7 | SQL: SELECT *
  2191. FROM goaf_sensor
  2192. where oc_id = 406283
  2193. LIMIT 10
  2194. 13:05:54.267 [XNIO-1 task-5] INFO p6spy - 2023-09-07 13:05:54 | Time Consuming: 4 ms | Connection: statement-6 | SQL: SELECT 1
  2195. 13:05:54.278 [XNIO-1 task-5] INFO p6spy - 2023-09-07 13:05:54 | Time Consuming: 4 ms | Connection: statement-6 | SQL: SELECT *
  2196. FROM goaf_devinfo
  2197. where oc_id = 406283
  2198. 13:05:54.284 [XNIO-1 task-5] INFO p6spy - 2023-09-07 13:05:54 | Time Consuming: 5 ms | Connection: statement-6 | SQL: SELECT *
  2199. FROM goaf_sensor
  2200. where oc_id = 406283
  2201. AND goaf_dev_name = 'other'
  2202. 13:05:54.290 [XNIO-1 task-5] INFO p6spy - 2023-09-07 13:05:54 | Time Consuming: 4 ms | Connection: statement-6 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  2203. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  2204. FROM
  2205. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  2206. FROM goaf_sensordata
  2207. WHERE goaf_sensor_id = 442129
  2208. ORDER BY goaf_datareport_time DESC
  2209. LIMIT 1) AS A
  2210. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  2211. LEFT JOIN goaf_sensor AS C ON A.goaf_sensor_id = C.goaf_sensor_id
  2212. 13:05:54.298 [XNIO-1 task-5] INFO p6spy - 2023-09-07 13:05:54 | Time Consuming: 6 ms | Connection: statement-6 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  2213. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  2214. FROM
  2215. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  2216. FROM goaf_sensordata
  2217. WHERE goaf_sensor_id = 442198
  2218. ORDER BY goaf_datareport_time DESC
  2219. LIMIT 1) AS A
  2220. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  2221. LEFT JOIN goaf_sensor AS C ON A.goaf_sensor_id = C.goaf_sensor_id
  2222. 13:05:54.304 [XNIO-1 task-5] INFO p6spy - 2023-09-07 13:05:54 | Time Consuming: 4 ms | Connection: statement-6 | SQL: SELECT *
  2223. FROM goaf_sensor
  2224. where oc_id = 406283
  2225. AND goaf_dev_name = 'waterpump'
  2226. 13:05:54.311 [XNIO-1 task-5] INFO p6spy - 2023-09-07 13:05:54 | Time Consuming: 4 ms | Connection: statement-6 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  2227. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  2228. FROM
  2229. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  2230. FROM goaf_sensordata
  2231. WHERE goaf_sensor_id = 442136
  2232. ORDER BY goaf_datareport_time DESC
  2233. LIMIT 1) AS A
  2234. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  2235. LEFT JOIN goaf_sensor AS C ON A.goaf_sensor_id = C.goaf_sensor_id
  2236. 13:05:54.317 [XNIO-1 task-5] INFO p6spy - 2023-09-07 13:05:54 | Time Consuming: 4 ms | Connection: statement-6 | SQL: SELECT *
  2237. FROM goaf_sensor
  2238. where oc_id = 406283
  2239. AND goaf_dev_name = 'machinery'
  2240. 13:05:54.322 [XNIO-1 task-5] INFO p6spy - 2023-09-07 13:05:54 | Time Consuming: 4 ms | Connection: statement-6 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  2241. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  2242. FROM
  2243. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  2244. FROM goaf_sensordata
  2245. WHERE goaf_sensor_id = 442137
  2246. ORDER BY goaf_datareport_time DESC
  2247. LIMIT 1) AS A
  2248. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  2249. LEFT JOIN goaf_sensor AS C ON A.goaf_sensor_id = C.goaf_sensor_id
  2250. 13:05:54.327 [XNIO-1 task-5] INFO p6spy - 2023-09-07 13:05:54 | Time Consuming: 3 ms | Connection: statement-6 | SQL: SELECT *
  2251. FROM goaf_sensor
  2252. where oc_id = 406283
  2253. AND goaf_dev_name = 'compress'
  2254. 13:05:54.333 [XNIO-1 task-5] INFO p6spy - 2023-09-07 13:05:54 | Time Consuming: 3 ms | Connection: statement-6 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  2255. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  2256. FROM
  2257. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  2258. FROM goaf_sensordata
  2259. WHERE goaf_sensor_id = 442135
  2260. ORDER BY goaf_datareport_time DESC
  2261. LIMIT 1) AS A
  2262. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  2263. LEFT JOIN goaf_sensor AS C ON A.goaf_sensor_id = C.goaf_sensor_id
  2264. 13:05:54.338 [XNIO-1 task-5] INFO p6spy - 2023-09-07 13:05:54 | Time Consuming: 4 ms | Connection: statement-6 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  2265. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  2266. FROM
  2267. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  2268. FROM goaf_sensordata
  2269. WHERE goaf_sensor_id = 442139
  2270. ORDER BY goaf_datareport_time DESC
  2271. LIMIT 1) AS A
  2272. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  2273. LEFT JOIN goaf_sensor AS C ON A.goaf_sensor_id = C.goaf_sensor_id
  2274. 13:05:57.519 [XNIO-1 task-5] INFO p6spy - 2023-09-07 13:05:57 | Time Consuming: 3 ms | Connection: statement-6 | SQL: SELECT 1
  2275. 13:05:57.519 [XNIO-1 task-2] INFO p6spy - 2023-09-07 13:05:57 | Time Consuming: 5 ms | Connection: statement-5 | SQL: SELECT 1
  2276. 13:05:57.519 [XNIO-1 task-3] INFO p6spy - 2023-09-07 13:05:57 | Time Consuming: 5 ms | Connection: statement-7 | SQL: SELECT 1
  2277. 13:05:57.524 [XNIO-1 task-5] INFO p6spy - 2023-09-07 13:05:57 | Time Consuming: 4 ms | Connection: statement-6 | SQL: SELECT count(0) FROM goaf_sensor WHERE oc_id = 406283
  2278. 13:05:57.529 [XNIO-1 task-3] INFO p6spy - 2023-09-07 13:05:57 | Time Consuming: 4 ms | Connection: statement-7 | SQL: SELECT *
  2279. FROM goaf_syscfg
  2280. WHERE oc_id = 406283
  2281. 13:05:57.529 [XNIO-1 task-2] INFO p6spy - 2023-09-07 13:05:57 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT *
  2282. FROM goaf_devinfo
  2283. where oc_id = 406283
  2284. 13:05:57.530 [XNIO-1 task-5] INFO p6spy - 2023-09-07 13:05:57 | Time Consuming: 4 ms | Connection: statement-6 | SQL: SELECT *
  2285. FROM goaf_sensor
  2286. where oc_id = 406283
  2287. LIMIT 10
  2288. 13:05:58.989 [XNIO-1 task-2] INFO p6spy - 2023-09-07 13:05:58 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT 1
  2289. 13:05:59.001 [XNIO-1 task-2] INFO p6spy - 2023-09-07 13:05:59 | Time Consuming: 7 ms | Connection: statement-5 | SQL: SELECT *
  2290. FROM goaf_devinfo
  2291. where oc_id = 406283
  2292. 13:05:59.007 [XNIO-1 task-2] INFO p6spy - 2023-09-07 13:05:59 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT *
  2293. FROM goaf_sensor
  2294. where oc_id = 406283
  2295. AND goaf_dev_name = 'other'
  2296. 13:05:59.012 [XNIO-1 task-2] INFO p6spy - 2023-09-07 13:05:59 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  2297. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  2298. FROM
  2299. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  2300. FROM goaf_sensordata
  2301. WHERE goaf_sensor_id = 442129
  2302. ORDER BY goaf_datareport_time DESC
  2303. LIMIT 1) AS A
  2304. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  2305. LEFT JOIN goaf_sensor AS C ON A.goaf_sensor_id = C.goaf_sensor_id
  2306. 13:05:59.017 [XNIO-1 task-2] INFO p6spy - 2023-09-07 13:05:59 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  2307. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  2308. FROM
  2309. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  2310. FROM goaf_sensordata
  2311. WHERE goaf_sensor_id = 442198
  2312. ORDER BY goaf_datareport_time DESC
  2313. LIMIT 1) AS A
  2314. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  2315. LEFT JOIN goaf_sensor AS C ON A.goaf_sensor_id = C.goaf_sensor_id
  2316. 13:05:59.024 [XNIO-1 task-2] INFO p6spy - 2023-09-07 13:05:59 | Time Consuming: 5 ms | Connection: statement-5 | SQL: SELECT *
  2317. FROM goaf_sensor
  2318. where oc_id = 406283
  2319. AND goaf_dev_name = 'waterpump'
  2320. 13:05:59.030 [XNIO-1 task-2] INFO p6spy - 2023-09-07 13:05:59 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  2321. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  2322. FROM
  2323. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  2324. FROM goaf_sensordata
  2325. WHERE goaf_sensor_id = 442136
  2326. ORDER BY goaf_datareport_time DESC
  2327. LIMIT 1) AS A
  2328. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  2329. LEFT JOIN goaf_sensor AS C ON A.goaf_sensor_id = C.goaf_sensor_id
  2330. 13:05:59.037 [XNIO-1 task-2] INFO p6spy - 2023-09-07 13:05:59 | Time Consuming: 5 ms | Connection: statement-5 | SQL: SELECT *
  2331. FROM goaf_sensor
  2332. where oc_id = 406283
  2333. AND goaf_dev_name = 'machinery'
  2334. 13:05:59.043 [XNIO-1 task-2] INFO p6spy - 2023-09-07 13:05:59 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  2335. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  2336. FROM
  2337. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  2338. FROM goaf_sensordata
  2339. WHERE goaf_sensor_id = 442137
  2340. ORDER BY goaf_datareport_time DESC
  2341. LIMIT 1) AS A
  2342. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  2343. LEFT JOIN goaf_sensor AS C ON A.goaf_sensor_id = C.goaf_sensor_id
  2344. 13:05:59.049 [XNIO-1 task-2] INFO p6spy - 2023-09-07 13:05:59 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT *
  2345. FROM goaf_sensor
  2346. where oc_id = 406283
  2347. AND goaf_dev_name = 'compress'
  2348. 13:05:59.055 [XNIO-1 task-2] INFO p6spy - 2023-09-07 13:05:59 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  2349. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  2350. FROM
  2351. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  2352. FROM goaf_sensordata
  2353. WHERE goaf_sensor_id = 442135
  2354. ORDER BY goaf_datareport_time DESC
  2355. LIMIT 1) AS A
  2356. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  2357. LEFT JOIN goaf_sensor AS C ON A.goaf_sensor_id = C.goaf_sensor_id
  2358. 13:05:59.062 [XNIO-1 task-2] INFO p6spy - 2023-09-07 13:05:59 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  2359. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  2360. FROM
  2361. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  2362. FROM goaf_sensordata
  2363. WHERE goaf_sensor_id = 442139
  2364. ORDER BY goaf_datareport_time DESC
  2365. LIMIT 1) AS A
  2366. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  2367. LEFT JOIN goaf_sensor AS C ON A.goaf_sensor_id = C.goaf_sensor_id
  2368. 13:06:02.939 [XNIO-1 task-5] INFO p6spy - 2023-09-07 13:06:02 | Time Consuming: 4 ms | Connection: statement-6 | SQL: SELECT 1
  2369. 13:06:02.939 [XNIO-1 task-3] INFO p6spy - 2023-09-07 13:06:02 | Time Consuming: 4 ms | Connection: statement-7 | SQL: SELECT 1
  2370. 13:06:02.941 [XNIO-1 task-2] INFO p6spy - 2023-09-07 13:06:02 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT 1
  2371. 13:06:02.945 [XNIO-1 task-2] INFO p6spy - 2023-09-07 13:06:02 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT count(0) FROM goaf_sensor WHERE oc_id = 406283
  2372. 13:06:02.949 [XNIO-1 task-5] INFO p6spy - 2023-09-07 13:06:02 | Time Consuming: 4 ms | Connection: statement-6 | SQL: SELECT *
  2373. FROM goaf_syscfg
  2374. WHERE oc_id = 406283
  2375. 13:06:02.949 [XNIO-1 task-2] INFO p6spy - 2023-09-07 13:06:02 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT *
  2376. FROM goaf_sensor
  2377. where oc_id = 406283
  2378. LIMIT 10
  2379. 13:06:02.950 [XNIO-1 task-3] INFO p6spy - 2023-09-07 13:06:02 | Time Consuming: 5 ms | Connection: statement-7 | SQL: SELECT *
  2380. FROM goaf_devinfo
  2381. where oc_id = 406283
  2382. 13:06:19.493 [XNIO-1 task-5] INFO p6spy - 2023-09-07 13:06:19 | Time Consuming: 5 ms | Connection: statement-6 | SQL: SELECT 1
  2383. 13:06:19.507 [XNIO-1 task-5] INFO p6spy - 2023-09-07 13:06:19 | Time Consuming: 7 ms | Connection: statement-6 | SQL: SELECT *
  2384. FROM goaf_devinfo
  2385. where oc_id = 406283
  2386. 13:06:19.520 [XNIO-1 task-5] INFO p6spy - 2023-09-07 13:06:19 | Time Consuming: 9 ms | Connection: statement-6 | SQL: SELECT *
  2387. FROM goaf_sensor
  2388. where oc_id = 406283
  2389. AND goaf_dev_name = 'other'
  2390. 13:06:31.502 [XNIO-1 task-5] INFO p6spy - 2023-09-07 13:06:31 | Time Consuming: 6 ms | Connection: statement-6 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  2391. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  2392. FROM
  2393. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  2394. FROM goaf_sensordata
  2395. WHERE goaf_sensor_id = 442129
  2396. ORDER BY goaf_datareport_time DESC
  2397. LIMIT 1) AS A
  2398. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  2399. LEFT JOIN goaf_sensor AS C ON A.goaf_sensor_id = C.goaf_sensor_id
  2400. 13:07:01.738 [XNIO-1 task-5] INFO p6spy - 2023-09-07 13:07:01 | Time Consuming: 5 ms | Connection: statement-6 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  2401. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  2402. FROM
  2403. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  2404. FROM goaf_sensordata
  2405. WHERE goaf_sensor_id = 442198
  2406. ORDER BY goaf_datareport_time DESC
  2407. LIMIT 1) AS A
  2408. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  2409. LEFT JOIN goaf_sensor AS C ON A.goaf_sensor_id = C.goaf_sensor_id
  2410. 13:09:41.165 [XNIO-1 task-5] INFO p6spy - 2023-09-07 13:09:41 | Time Consuming: 9 ms | Connection: statement-6 | SQL: SELECT *
  2411. FROM goaf_sensor
  2412. where oc_id = 406283
  2413. AND goaf_dev_name = 'waterpump'
  2414. 13:09:43.739 [XNIO-1 task-5] INFO p6spy - 2023-09-07 13:09:43 | Time Consuming: 7 ms | Connection: statement-6 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  2415. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  2416. FROM
  2417. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  2418. FROM goaf_sensordata
  2419. WHERE goaf_sensor_id = 442136
  2420. ORDER BY goaf_datareport_time DESC
  2421. LIMIT 1) AS A
  2422. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  2423. LEFT JOIN goaf_sensor AS C ON A.goaf_sensor_id = C.goaf_sensor_id
  2424. 13:09:43.756 [XNIO-1 task-5] INFO p6spy - 2023-09-07 13:09:43 | Time Consuming: 9 ms | Connection: statement-6 | SQL: SELECT *
  2425. FROM goaf_sensor
  2426. where oc_id = 406283
  2427. AND goaf_dev_name = 'machinery'
  2428. 13:09:43.780 [XNIO-1 task-5] INFO p6spy - 2023-09-07 13:09:43 | Time Consuming: 6 ms | Connection: statement-6 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  2429. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  2430. FROM
  2431. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  2432. FROM goaf_sensordata
  2433. WHERE goaf_sensor_id = 442137
  2434. ORDER BY goaf_datareport_time DESC
  2435. LIMIT 1) AS A
  2436. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  2437. LEFT JOIN goaf_sensor AS C ON A.goaf_sensor_id = C.goaf_sensor_id
  2438. 13:09:43.797 [XNIO-1 task-5] INFO p6spy - 2023-09-07 13:09:43 | Time Consuming: 9 ms | Connection: statement-6 | SQL: SELECT *
  2439. FROM goaf_sensor
  2440. where oc_id = 406283
  2441. AND goaf_dev_name = 'compress'
  2442. 13:09:43.820 [XNIO-1 task-5] INFO p6spy - 2023-09-07 13:09:43 | Time Consuming: 6 ms | Connection: statement-6 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  2443. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  2444. FROM
  2445. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  2446. FROM goaf_sensordata
  2447. WHERE goaf_sensor_id = 442135
  2448. ORDER BY goaf_datareport_time DESC
  2449. LIMIT 1) AS A
  2450. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  2451. LEFT JOIN goaf_sensor AS C ON A.goaf_sensor_id = C.goaf_sensor_id
  2452. 13:09:43.837 [XNIO-1 task-5] INFO p6spy - 2023-09-07 13:09:43 | Time Consuming: 6 ms | Connection: statement-6 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  2453. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  2454. FROM
  2455. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  2456. FROM goaf_sensordata
  2457. WHERE goaf_sensor_id = 442139
  2458. ORDER BY goaf_datareport_time DESC
  2459. LIMIT 1) AS A
  2460. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  2461. LEFT JOIN goaf_sensor AS C ON A.goaf_sensor_id = C.goaf_sensor_id
  2462. 13:13:46.222 [XNIO-1 task-3] INFO p6spy - 2023-09-07 13:13:46 | Time Consuming: 4 ms | Connection: statement-12 | SQL: SELECT 1
  2463. 13:13:46.222 [XNIO-1 task-2] INFO p6spy - 2023-09-07 13:13:46 | Time Consuming: 3 ms | Connection: statement-13 | SQL: SELECT 1
  2464. 13:13:46.223 [XNIO-1 task-5] INFO p6spy - 2023-09-07 13:13:46 | Time Consuming: 3 ms | Connection: statement-14 | SQL: SELECT 1
  2465. 13:13:46.228 [XNIO-1 task-5] INFO p6spy - 2023-09-07 13:13:46 | Time Consuming: 4 ms | Connection: statement-14 | SQL: SELECT count(0) FROM goaf_sensor WHERE oc_id = 406283
  2466. 13:13:46.231 [XNIO-1 task-2] INFO p6spy - 2023-09-07 13:13:46 | Time Consuming: 4 ms | Connection: statement-13 | SQL: SELECT *
  2467. FROM goaf_devinfo
  2468. where oc_id = 406283
  2469. 13:13:46.231 [XNIO-1 task-3] INFO p6spy - 2023-09-07 13:13:46 | Time Consuming: 4 ms | Connection: statement-12 | SQL: SELECT *
  2470. FROM goaf_syscfg
  2471. WHERE oc_id = 406283
  2472. 13:13:46.234 [XNIO-1 task-5] INFO p6spy - 2023-09-07 13:13:46 | Time Consuming: 5 ms | Connection: statement-14 | SQL: SELECT *
  2473. FROM goaf_sensor
  2474. where oc_id = 406283
  2475. LIMIT 10
  2476. 13:13:48.353 [XNIO-1 task-3] INFO p6spy - 2023-09-07 13:13:48 | Time Consuming: 4 ms | Connection: statement-12 | SQL: SELECT 1
  2477. 13:13:48.363 [XNIO-1 task-3] INFO p6spy - 2023-09-07 13:13:48 | Time Consuming: 4 ms | Connection: statement-12 | SQL: SELECT *
  2478. FROM goaf_devinfo
  2479. where oc_id = 406283
  2480. 13:13:48.368 [XNIO-1 task-3] INFO p6spy - 2023-09-07 13:13:48 | Time Consuming: 4 ms | Connection: statement-12 | SQL: SELECT *
  2481. FROM goaf_sensor
  2482. where oc_id = 406283
  2483. AND goaf_dev_name = 'other'
  2484. 13:13:48.375 [XNIO-1 task-3] INFO p6spy - 2023-09-07 13:13:48 | Time Consuming: 5 ms | Connection: statement-12 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  2485. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  2486. FROM
  2487. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  2488. FROM goaf_sensordata
  2489. WHERE goaf_sensor_id = 442129
  2490. ORDER BY goaf_datareport_time DESC
  2491. LIMIT 1) AS A
  2492. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  2493. LEFT JOIN goaf_sensor AS C ON A.goaf_sensor_id = C.goaf_sensor_id
  2494. 13:13:48.383 [XNIO-1 task-3] INFO p6spy - 2023-09-07 13:13:48 | Time Consuming: 6 ms | Connection: statement-12 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  2495. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  2496. FROM
  2497. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  2498. FROM goaf_sensordata
  2499. WHERE goaf_sensor_id = 442198
  2500. ORDER BY goaf_datareport_time DESC
  2501. LIMIT 1) AS A
  2502. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  2503. LEFT JOIN goaf_sensor AS C ON A.goaf_sensor_id = C.goaf_sensor_id
  2504. 13:13:48.388 [XNIO-1 task-3] INFO p6spy - 2023-09-07 13:13:48 | Time Consuming: 4 ms | Connection: statement-12 | SQL: SELECT *
  2505. FROM goaf_sensor
  2506. where oc_id = 406283
  2507. AND goaf_dev_name = 'waterpump'
  2508. 13:13:48.395 [XNIO-1 task-3] INFO p6spy - 2023-09-07 13:13:48 | Time Consuming: 5 ms | Connection: statement-12 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  2509. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  2510. FROM
  2511. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  2512. FROM goaf_sensordata
  2513. WHERE goaf_sensor_id = 442136
  2514. ORDER BY goaf_datareport_time DESC
  2515. LIMIT 1) AS A
  2516. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  2517. LEFT JOIN goaf_sensor AS C ON A.goaf_sensor_id = C.goaf_sensor_id
  2518. 13:13:48.401 [XNIO-1 task-3] INFO p6spy - 2023-09-07 13:13:48 | Time Consuming: 4 ms | Connection: statement-12 | SQL: SELECT *
  2519. FROM goaf_sensor
  2520. where oc_id = 406283
  2521. AND goaf_dev_name = 'machinery'
  2522. 13:13:48.408 [XNIO-1 task-3] INFO p6spy - 2023-09-07 13:13:48 | Time Consuming: 5 ms | Connection: statement-12 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  2523. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  2524. FROM
  2525. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  2526. FROM goaf_sensordata
  2527. WHERE goaf_sensor_id = 442137
  2528. ORDER BY goaf_datareport_time DESC
  2529. LIMIT 1) AS A
  2530. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  2531. LEFT JOIN goaf_sensor AS C ON A.goaf_sensor_id = C.goaf_sensor_id
  2532. 13:13:48.415 [XNIO-1 task-3] INFO p6spy - 2023-09-07 13:13:48 | Time Consuming: 5 ms | Connection: statement-12 | SQL: SELECT *
  2533. FROM goaf_sensor
  2534. where oc_id = 406283
  2535. AND goaf_dev_name = 'compress'
  2536. 13:13:48.420 [XNIO-1 task-3] INFO p6spy - 2023-09-07 13:13:48 | Time Consuming: 3 ms | Connection: statement-12 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  2537. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  2538. FROM
  2539. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  2540. FROM goaf_sensordata
  2541. WHERE goaf_sensor_id = 442135
  2542. ORDER BY goaf_datareport_time DESC
  2543. LIMIT 1) AS A
  2544. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  2545. LEFT JOIN goaf_sensor AS C ON A.goaf_sensor_id = C.goaf_sensor_id
  2546. 13:13:48.427 [XNIO-1 task-3] INFO p6spy - 2023-09-07 13:13:48 | Time Consuming: 5 ms | Connection: statement-12 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  2547. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  2548. FROM
  2549. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  2550. FROM goaf_sensordata
  2551. WHERE goaf_sensor_id = 442139
  2552. ORDER BY goaf_datareport_time DESC
  2553. LIMIT 1) AS A
  2554. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  2555. LEFT JOIN goaf_sensor AS C ON A.goaf_sensor_id = C.goaf_sensor_id
  2556. 13:13:50.465 [XNIO-1 task-3] INFO p6spy - 2023-09-07 13:13:50 | Time Consuming: 4 ms | Connection: statement-12 | SQL: SELECT 1
  2557. 13:13:50.465 [XNIO-1 task-2] INFO p6spy - 2023-09-07 13:13:50 | Time Consuming: 4 ms | Connection: statement-13 | SQL: SELECT 1
  2558. 13:13:50.465 [XNIO-1 task-5] INFO p6spy - 2023-09-07 13:13:50 | Time Consuming: 4 ms | Connection: statement-14 | SQL: SELECT 1
  2559. 13:13:50.468 [XNIO-1 task-3] INFO p6spy - 2023-09-07 13:13:50 | Time Consuming: 3 ms | Connection: statement-12 | SQL: SELECT count(0) FROM goaf_sensor WHERE oc_id = 406283
  2560. 13:13:50.473 [XNIO-1 task-5] INFO p6spy - 2023-09-07 13:13:50 | Time Consuming: 4 ms | Connection: statement-14 | SQL: SELECT *
  2561. FROM goaf_devinfo
  2562. where oc_id = 406283
  2563. 13:13:50.473 [XNIO-1 task-3] INFO p6spy - 2023-09-07 13:13:50 | Time Consuming: 4 ms | Connection: statement-12 | SQL: SELECT *
  2564. FROM goaf_sensor
  2565. where oc_id = 406283
  2566. LIMIT 10
  2567. 13:13:50.473 [XNIO-1 task-2] INFO p6spy - 2023-09-07 13:13:50 | Time Consuming: 4 ms | Connection: statement-13 | SQL: SELECT *
  2568. FROM goaf_syscfg
  2569. WHERE oc_id = 406283
  2570. 13:13:57.579 [XNIO-1 task-5] INFO p6spy - 2023-09-07 13:13:57 | Time Consuming: 4 ms | Connection: statement-14 | SQL: SELECT 1
  2571. 13:13:57.591 [XNIO-1 task-5] INFO p6spy - 2023-09-07 13:13:57 | Time Consuming: 6 ms | Connection: statement-14 | SQL: SELECT *
  2572. FROM goaf_devinfo
  2573. where oc_id = 406283
  2574. 13:13:57.597 [XNIO-1 task-5] INFO p6spy - 2023-09-07 13:13:57 | Time Consuming: 4 ms | Connection: statement-14 | SQL: SELECT *
  2575. FROM goaf_sensor
  2576. where oc_id = 406283
  2577. AND goaf_dev_name = 'other'
  2578. 13:14:02.189 [XNIO-1 task-5] INFO p6spy - 2023-09-07 13:14:02 | Time Consuming: 7 ms | Connection: statement-14 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  2579. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  2580. FROM
  2581. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  2582. FROM goaf_sensordata
  2583. WHERE goaf_sensor_id = 442129
  2584. ORDER BY goaf_datareport_time DESC
  2585. LIMIT 1) AS A
  2586. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  2587. LEFT JOIN goaf_sensor AS C ON A.goaf_sensor_id = C.goaf_sensor_id
  2588. 13:14:02.195 [XNIO-1 task-5] INFO p6spy - 2023-09-07 13:14:02 | Time Consuming: 5 ms | Connection: statement-14 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  2589. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  2590. FROM
  2591. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  2592. FROM goaf_sensordata
  2593. WHERE goaf_sensor_id = 442198
  2594. ORDER BY goaf_datareport_time DESC
  2595. LIMIT 1) AS A
  2596. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  2597. LEFT JOIN goaf_sensor AS C ON A.goaf_sensor_id = C.goaf_sensor_id
  2598. 13:14:02.202 [XNIO-1 task-5] INFO p6spy - 2023-09-07 13:14:02 | Time Consuming: 6 ms | Connection: statement-14 | SQL: SELECT *
  2599. FROM goaf_sensor
  2600. where oc_id = 406283
  2601. AND goaf_dev_name = 'waterpump'
  2602. 13:16:51.161 [XNIO-1 task-5] INFO p6spy - 2023-09-07 13:16:51 | Time Consuming: 6 ms | Connection: statement-14 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  2603. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  2604. FROM
  2605. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  2606. FROM goaf_sensordata
  2607. WHERE goaf_sensor_id = 442136
  2608. ORDER BY goaf_datareport_time DESC
  2609. LIMIT 1) AS A
  2610. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  2611. LEFT JOIN goaf_sensor AS C ON A.goaf_sensor_id = C.goaf_sensor_id
  2612. 13:16:51.167 [XNIO-1 task-5] INFO p6spy - 2023-09-07 13:16:51 | Time Consuming: 5 ms | Connection: statement-14 | SQL: SELECT *
  2613. FROM goaf_sensor
  2614. where oc_id = 406283
  2615. AND goaf_dev_name = 'machinery'
  2616. 13:16:51.175 [XNIO-1 task-5] INFO p6spy - 2023-09-07 13:16:51 | Time Consuming: 6 ms | Connection: statement-14 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  2617. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  2618. FROM
  2619. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  2620. FROM goaf_sensordata
  2621. WHERE goaf_sensor_id = 442137
  2622. ORDER BY goaf_datareport_time DESC
  2623. LIMIT 1) AS A
  2624. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  2625. LEFT JOIN goaf_sensor AS C ON A.goaf_sensor_id = C.goaf_sensor_id
  2626. 13:16:51.180 [XNIO-1 task-5] INFO p6spy - 2023-09-07 13:16:51 | Time Consuming: 5 ms | Connection: statement-14 | SQL: SELECT *
  2627. FROM goaf_sensor
  2628. where oc_id = 406283
  2629. AND goaf_dev_name = 'compress'
  2630. 13:16:51.185 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  2631. 13:16:51.186 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.4.Final
  2632. 13:16:51.186 [XNIO-1 task-5] INFO p6spy - 2023-09-07 13:16:51 | Time Consuming: 4 ms | Connection: statement-14 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  2633. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  2634. FROM
  2635. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  2636. FROM goaf_sensordata
  2637. WHERE goaf_sensor_id = 442135
  2638. ORDER BY goaf_datareport_time DESC
  2639. LIMIT 1) AS A
  2640. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  2641. LEFT JOIN goaf_sensor AS C ON A.goaf_sensor_id = C.goaf_sensor_id
  2642. 13:16:51.189 [SpringApplicationShutdownHook] INFO io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
  2643. 13:16:51.191 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - Removing {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  2644. 13:16:51.191 [SpringApplicationShutdownHook] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 0 subscriber(s).
  2645. 13:16:51.191 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - stopped bean '_org.springframework.integration.errorLogger'
  2646. 13:16:51.192 [XNIO-1 task-5] INFO p6spy - 2023-09-07 13:16:51 | Time Consuming: 4 ms | Connection: statement-14 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  2647. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  2648. FROM
  2649. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  2650. FROM goaf_sensordata
  2651. WHERE goaf_sensor_id = 442139
  2652. ORDER BY goaf_datareport_time DESC
  2653. LIMIT 1) AS A
  2654. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  2655. LEFT JOIN goaf_sensor AS C ON A.goaf_sensor_id = C.goaf_sensor_id
  2656. 13:16:51.306 [SpringApplicationShutdownHook] INFO o.s.j.e.a.AnnotationMBeanExporter - Could not unregister MBean [com.github.tobato.fastdfs.domain.conn:name=fdfsConnectionPool,type=FdfsConnectionPool] as said MBean is not registered (perhaps already unregistered by an external process)
  2657. 13:16:51.307 [SpringApplicationShutdownHook] INFO o.s.s.quartz.SchedulerFactoryBean - Shutting down Quartz Scheduler
  2658. 13:16:51.307 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
  2659. 13:16:51.307 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  2660. 13:16:51.308 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
  2661. 13:16:51.335 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown initiated...
  2662. 13:16:51.339 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown completed.
  2663. 13:17:35.832 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.0.Final
  2664. 13:17:35.881 [restartedMain] INFO com.zhyc.xps.XPSApplication - Starting XPSApplication using Java 17.0.6 with PID 16844 (E:\zhycnewprj\iotplatform\xps-server-3\xps-application\target\classes started by qzz19 in E:\zhycnewprj\iotplatform\xps-server-3)
  2665. 13:17:35.881 [restartedMain] INFO com.zhyc.xps.XPSApplication - The following 1 profile is active: "local"
  2666. 13:17:35.935 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
  2667. 13:17:35.935 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
  2668. 13:17:37.687 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
  2669. 13:17:37.691 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  2670. 13:17:37.774 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 69 ms. Found 0 Redis repository interfaces.
  2671. 13:17:37.939 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created.
  2672. 13:17:37.956 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created.
  2673. 13:17:38.719 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  2674. 13:17:38.719 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 2783 ms
  2675. 13:17:41.038 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor
  2676. 13:17:41.049 [restartedMain] INFO o.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  2677. 13:17:41.049 [restartedMain] INFO org.quartz.core.QuartzScheduler - Quartz Scheduler v.2.3.2 created.
  2678. 13:17:41.049 [restartedMain] INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized.
  2679. 13:17:41.050 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
  2680. Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  2681. NOT STARTED.
  2682. Currently in standby mode.
  2683. Number of jobs executed: 0
  2684. Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  2685. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
  2686. 13:17:41.050 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  2687. 13:17:41.050 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2
  2688. 13:17:41.050 [restartedMain] INFO org.quartz.core.QuartzScheduler - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@476706e5
  2689. 13:17:42.728 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer - LiveReload server is running on port 35729
  2690. 13:17:42.734 [restartedMain] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 15 endpoint(s) beneath base path '/actuator/z'
  2691. 13:17:42.874 [restartedMain] INFO io.undertow.websockets.jsr - UT026003: Adding annotated server endpoint class com.zhyc.xps.common.ws.WebSocketServer for path /websocket/link
  2692. 13:17:42.904 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  2693. 13:17:42.904 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 1 subscriber(s).
  2694. 13:17:42.905 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - started bean '_org.springframework.integration.errorLogger'
  2695. 13:17:42.924 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  2696. 13:17:42.933 [restartedMain] INFO org.xnio - XNIO version 3.8.8.Final
  2697. 13:17:42.943 [restartedMain] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.8.Final
  2698. 13:17:42.972 [restartedMain] INFO org.jboss.threads - JBoss Threads version 3.5.0.Final
  2699. 13:17:43.025 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 1788 (http)
  2700. 13:17:43.027 [restartedMain] INFO o.s.s.quartz.SchedulerFactoryBean - Starting Quartz Scheduler now
  2701. 13:17:43.027 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  2702. 13:17:43.052 [restartedMain] INFO com.zhyc.xps.XPSApplication - Started XPSApplication in 7.675 seconds (process running for 8.636)
  2703. 13:17:43.054 [restartedMain] INFO com.zhyc.xps.sys.job.InitSystemJob - 初始化系统定时任务
  2704. 13:17:43.062 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Starting...
  2705. 13:17:43.395 [restartedMain] INFO p6spy - 2023-09-07 13:17:43 | Time Consuming: 13 ms | Connection: statement-0 | SQL: SELECT 1
  2706. 13:17:43.399 [restartedMain] INFO com.zaxxer.hikari.pool.HikariPool - DatebookHikariCP - Added connection com.p6spy.engine.wrapper.ConnectionWrapper@52751eb8
  2707. 13:17:43.402 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Start completed.
  2708. 13:17:43.468 [restartedMain] INFO p6spy - 2023-09-07 13:17:43 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT
  2709. A.job_id,
  2710. A.job_title,
  2711. A.job_desc,
  2712. A.status,
  2713. A.job_type,
  2714. A.job_code,
  2715. A.job_cron,
  2716. A.job_class_id,
  2717. B.job_class,
  2718. A.cycle_title,
  2719. A.cycle_period,
  2720. A.cycle_unit
  2721. FROM job AS A
  2722. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  2723. WHERE A.deleted_flag = 0
  2724. AND A.status = 1
  2725. ORDER BY A.job_id ASC
  2726. 13:17:43.490 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  2727. 13:17:43.491 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  2728. 13:17:43.855 [RMI TCP Connection(2)-192.168.3.5] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
  2729. 13:17:43.856 [RMI TCP Connection(2)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
  2730. 13:17:43.860 [RMI TCP Connection(2)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 4 ms
  2731. 13:17:43.870 [RMI TCP Connection(3)-192.168.3.5] INFO p6spy - 2023-09-07 13:17:43 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  2732. 13:17:55.279 [XNIO-1 task-2] INFO p6spy - 2023-09-07 13:17:55 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT 1
  2733. 13:17:55.280 [XNIO-1 task-4] INFO p6spy - 2023-09-07 13:17:55 | Time Consuming: 5 ms | Connection: statement-1 | SQL: SELECT 1
  2734. 13:17:55.289 [XNIO-1 task-2] INFO p6spy - 2023-09-07 13:17:55 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT *
  2735. FROM goaf_devinfo
  2736. where oc_id = 406283
  2737. 13:17:55.294 [XNIO-1 task-4] INFO p6spy - 2023-09-07 13:17:55 | Time Consuming: 4 ms | Connection: statement-1 | SQL: SELECT *
  2738. FROM goaf_syscfg
  2739. WHERE oc_id = 406283
  2740. 13:17:55.332 [XNIO-1 task-3] INFO p6spy - 2023-09-07 13:17:55 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT count(0) FROM goaf_sensor WHERE oc_id = 406283
  2741. 13:17:55.338 [XNIO-1 task-3] INFO p6spy - 2023-09-07 13:17:55 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT *
  2742. FROM goaf_sensor
  2743. where oc_id = 406283
  2744. LIMIT 10
  2745. 13:18:00.444 [XNIO-1 task-3] INFO p6spy - 2023-09-07 13:18:00 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  2746. 13:18:00.452 [XNIO-1 task-3] INFO p6spy - 2023-09-07 13:18:00 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT *
  2747. FROM goaf_devinfo
  2748. where oc_id = 406283
  2749. 13:18:00.463 [XNIO-1 task-3] INFO p6spy - 2023-09-07 13:18:00 | Time Consuming: 7 ms | Connection: statement-0 | SQL: SELECT *
  2750. FROM goaf_sensor
  2751. where oc_id = 406283
  2752. AND goaf_dev_name = 'other'
  2753. 13:18:00.473 [XNIO-1 task-3] INFO p6spy - 2023-09-07 13:18:00 | Time Consuming: 6 ms | Connection: statement-0 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  2754. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  2755. FROM
  2756. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  2757. FROM goaf_sensordata
  2758. WHERE goaf_sensor_id = 442129
  2759. ORDER BY goaf_datareport_time DESC
  2760. LIMIT 1) AS A
  2761. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  2762. LEFT JOIN goaf_sensor AS C ON A.goaf_sensor_id = C.goaf_sensor_id
  2763. 13:18:23.537 [XNIO-1 task-3] INFO p6spy - 2023-09-07 13:18:23 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  2764. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  2765. FROM
  2766. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  2767. FROM goaf_sensordata
  2768. WHERE goaf_sensor_id = 442198
  2769. ORDER BY goaf_datareport_time DESC
  2770. LIMIT 1) AS A
  2771. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  2772. LEFT JOIN goaf_sensor AS C ON A.goaf_sensor_id = C.goaf_sensor_id
  2773. 13:19:30.201 [XNIO-1 task-3] INFO p6spy - 2023-09-07 13:19:30 | Time Consuming: 8 ms | Connection: statement-0 | SQL: SELECT *
  2774. FROM goaf_sensor
  2775. where oc_id = 406283
  2776. AND goaf_dev_name = 'waterpump'
  2777. 13:19:30.207 [XNIO-1 task-3] INFO p6spy - 2023-09-07 13:19:30 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  2778. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  2779. FROM
  2780. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  2781. FROM goaf_sensordata
  2782. WHERE goaf_sensor_id = 442136
  2783. ORDER BY goaf_datareport_time DESC
  2784. LIMIT 1) AS A
  2785. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  2786. LEFT JOIN goaf_sensor AS C ON A.goaf_sensor_id = C.goaf_sensor_id
  2787. 13:19:30.213 [XNIO-1 task-3] INFO p6spy - 2023-09-07 13:19:30 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT *
  2788. FROM goaf_sensor
  2789. where oc_id = 406283
  2790. AND goaf_dev_name = 'machinery'
  2791. 13:19:30.217 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  2792. 13:19:30.219 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.4.Final
  2793. 13:19:30.221 [XNIO-1 task-3] INFO p6spy - 2023-09-07 13:19:30 | Time Consuming: 6 ms | Connection: statement-0 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  2794. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  2795. FROM
  2796. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  2797. FROM goaf_sensordata
  2798. WHERE goaf_sensor_id = 442137
  2799. ORDER BY goaf_datareport_time DESC
  2800. LIMIT 1) AS A
  2801. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  2802. LEFT JOIN goaf_sensor AS C ON A.goaf_sensor_id = C.goaf_sensor_id
  2803. 13:19:30.222 [SpringApplicationShutdownHook] INFO io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
  2804. 13:19:30.225 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - Removing {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  2805. 13:19:30.226 [SpringApplicationShutdownHook] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 0 subscriber(s).
  2806. 13:19:30.226 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - stopped bean '_org.springframework.integration.errorLogger'
  2807. 13:19:30.228 [XNIO-1 task-3] INFO p6spy - 2023-09-07 13:19:30 | Time Consuming: 6 ms | Connection: statement-0 | SQL: SELECT *
  2808. FROM goaf_sensor
  2809. where oc_id = 406283
  2810. AND goaf_dev_name = 'compress'
  2811. 13:19:30.235 [XNIO-1 task-3] INFO p6spy - 2023-09-07 13:19:30 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  2812. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  2813. FROM
  2814. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  2815. FROM goaf_sensordata
  2816. WHERE goaf_sensor_id = 442135
  2817. ORDER BY goaf_datareport_time DESC
  2818. LIMIT 1) AS A
  2819. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  2820. LEFT JOIN goaf_sensor AS C ON A.goaf_sensor_id = C.goaf_sensor_id
  2821. 13:19:30.241 [XNIO-1 task-3] INFO p6spy - 2023-09-07 13:19:30 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  2822. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  2823. FROM
  2824. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  2825. FROM goaf_sensordata
  2826. WHERE goaf_sensor_id = 442139
  2827. ORDER BY goaf_datareport_time DESC
  2828. LIMIT 1) AS A
  2829. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  2830. LEFT JOIN goaf_sensor AS C ON A.goaf_sensor_id = C.goaf_sensor_id
  2831. 13:19:30.375 [SpringApplicationShutdownHook] INFO o.s.j.e.a.AnnotationMBeanExporter - Could not unregister MBean [com.github.tobato.fastdfs.domain.conn:name=fdfsConnectionPool,type=FdfsConnectionPool] as said MBean is not registered (perhaps already unregistered by an external process)
  2832. 13:19:30.377 [SpringApplicationShutdownHook] INFO o.s.s.quartz.SchedulerFactoryBean - Shutting down Quartz Scheduler
  2833. 13:19:30.378 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
  2834. 13:19:30.378 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  2835. 13:19:30.378 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
  2836. 13:19:30.397 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown initiated...
  2837. 13:19:30.404 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown completed.
  2838. 13:20:17.000 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.0.Final
  2839. 13:20:17.047 [restartedMain] INFO com.zhyc.xps.XPSApplication - Starting XPSApplication using Java 17.0.6 with PID 3876 (E:\zhycnewprj\iotplatform\xps-server-3\xps-application\target\classes started by qzz19 in E:\zhycnewprj\iotplatform\xps-server-3)
  2840. 13:20:17.048 [restartedMain] INFO com.zhyc.xps.XPSApplication - The following 1 profile is active: "local"
  2841. 13:20:17.101 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
  2842. 13:20:17.101 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
  2843. 13:20:18.909 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
  2844. 13:20:18.913 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  2845. 13:20:18.995 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 69 ms. Found 0 Redis repository interfaces.
  2846. 13:20:19.155 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created.
  2847. 13:20:19.174 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created.
  2848. 13:20:19.939 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  2849. 13:20:19.940 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 2838 ms
  2850. 13:20:22.299 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor
  2851. 13:20:22.309 [restartedMain] INFO o.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  2852. 13:20:22.310 [restartedMain] INFO org.quartz.core.QuartzScheduler - Quartz Scheduler v.2.3.2 created.
  2853. 13:20:22.310 [restartedMain] INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized.
  2854. 13:20:22.311 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
  2855. Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  2856. NOT STARTED.
  2857. Currently in standby mode.
  2858. Number of jobs executed: 0
  2859. Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  2860. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
  2861. 13:20:22.311 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  2862. 13:20:22.311 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2
  2863. 13:20:22.311 [restartedMain] INFO org.quartz.core.QuartzScheduler - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@6995aace
  2864. 13:20:24.008 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer - LiveReload server is running on port 35729
  2865. 13:20:24.013 [restartedMain] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 15 endpoint(s) beneath base path '/actuator/z'
  2866. 13:20:24.154 [restartedMain] INFO io.undertow.websockets.jsr - UT026003: Adding annotated server endpoint class com.zhyc.xps.common.ws.WebSocketServer for path /websocket/link
  2867. 13:20:24.186 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  2868. 13:20:24.187 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 1 subscriber(s).
  2869. 13:20:24.187 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - started bean '_org.springframework.integration.errorLogger'
  2870. 13:20:24.206 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  2871. 13:20:24.215 [restartedMain] INFO org.xnio - XNIO version 3.8.8.Final
  2872. 13:20:24.225 [restartedMain] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.8.Final
  2873. 13:20:24.256 [restartedMain] INFO org.jboss.threads - JBoss Threads version 3.5.0.Final
  2874. 13:20:24.319 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 1788 (http)
  2875. 13:20:24.321 [restartedMain] INFO o.s.s.quartz.SchedulerFactoryBean - Starting Quartz Scheduler now
  2876. 13:20:24.321 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  2877. 13:20:24.348 [restartedMain] INFO com.zhyc.xps.XPSApplication - Started XPSApplication in 7.807 seconds (process running for 8.772)
  2878. 13:20:24.350 [restartedMain] INFO com.zhyc.xps.sys.job.InitSystemJob - 初始化系统定时任务
  2879. 13:20:24.357 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Starting...
  2880. 13:20:24.699 [restartedMain] INFO p6spy - 2023-09-07 13:20:24 | Time Consuming: 13 ms | Connection: statement-0 | SQL: SELECT 1
  2881. 13:20:24.703 [restartedMain] INFO com.zaxxer.hikari.pool.HikariPool - DatebookHikariCP - Added connection com.p6spy.engine.wrapper.ConnectionWrapper@320739a3
  2882. 13:20:24.706 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Start completed.
  2883. 13:20:24.771 [restartedMain] INFO p6spy - 2023-09-07 13:20:24 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT
  2884. A.job_id,
  2885. A.job_title,
  2886. A.job_desc,
  2887. A.status,
  2888. A.job_type,
  2889. A.job_code,
  2890. A.job_cron,
  2891. A.job_class_id,
  2892. B.job_class,
  2893. A.cycle_title,
  2894. A.cycle_period,
  2895. A.cycle_unit
  2896. FROM job AS A
  2897. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  2898. WHERE A.deleted_flag = 0
  2899. AND A.status = 1
  2900. ORDER BY A.job_id ASC
  2901. 13:20:24.791 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  2902. 13:20:24.793 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  2903. 13:20:25.531 [RMI TCP Connection(6)-192.168.3.5] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
  2904. 13:20:25.531 [RMI TCP Connection(6)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
  2905. 13:20:25.536 [RMI TCP Connection(6)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 5 ms
  2906. 13:20:25.542 [RMI TCP Connection(7)-192.168.3.5] INFO p6spy - 2023-09-07 13:20:25 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  2907. 13:20:25.554 [RMI TCP Connection(7)-192.168.3.5] INFO p6spy - 2023-09-07 13:20:25 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  2908. 13:20:30.355 [XNIO-1 task-2] INFO p6spy - 2023-09-07 13:20:30 | Time Consuming: 7 ms | Connection: statement-1 | SQL: SELECT 1
  2909. 13:20:30.355 [XNIO-1 task-3] INFO p6spy - 2023-09-07 13:20:30 | Time Consuming: 7 ms | Connection: statement-0 | SQL: SELECT 1
  2910. 13:20:30.367 [XNIO-1 task-2] INFO p6spy - 2023-09-07 13:20:30 | Time Consuming: 5 ms | Connection: statement-1 | SQL: SELECT *
  2911. FROM goaf_devinfo
  2912. where oc_id = 406283
  2913. 13:20:30.367 [XNIO-1 task-3] INFO p6spy - 2023-09-07 13:20:30 | Time Consuming: 6 ms | Connection: statement-0 | SQL: SELECT *
  2914. FROM goaf_syscfg
  2915. WHERE oc_id = 406283
  2916. 13:20:30.419 [XNIO-1 task-4] INFO p6spy - 2023-09-07 13:20:30 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT count(0) FROM goaf_sensor WHERE oc_id = 406283
  2917. 13:20:30.426 [XNIO-1 task-4] INFO p6spy - 2023-09-07 13:20:30 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT *
  2918. FROM goaf_sensor
  2919. where oc_id = 406283
  2920. LIMIT 10
  2921. 13:20:35.450 [XNIO-1 task-4] INFO p6spy - 2023-09-07 13:20:35 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  2922. 13:20:35.458 [XNIO-1 task-4] INFO p6spy - 2023-09-07 13:20:35 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT *
  2923. FROM goaf_devinfo
  2924. where oc_id = 406283
  2925. 13:20:35.466 [XNIO-1 task-4] INFO p6spy - 2023-09-07 13:20:35 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT *
  2926. FROM goaf_sensor
  2927. where oc_id = 406283
  2928. AND goaf_dev_name = 'other'
  2929. 13:20:35.472 [XNIO-1 task-4] INFO p6spy - 2023-09-07 13:20:35 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  2930. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  2931. FROM
  2932. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  2933. FROM goaf_sensordata
  2934. WHERE goaf_sensor_id = 442129
  2935. ORDER BY goaf_datareport_time DESC
  2936. LIMIT 1) AS A
  2937. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  2938. LEFT JOIN goaf_sensor AS C ON A.goaf_sensor_id = C.goaf_sensor_id
  2939. 13:20:54.267 [XNIO-1 task-4] INFO p6spy - 2023-09-07 13:20:54 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  2940. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  2941. FROM
  2942. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  2943. FROM goaf_sensordata
  2944. WHERE goaf_sensor_id = 442198
  2945. ORDER BY goaf_datareport_time DESC
  2946. LIMIT 1) AS A
  2947. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  2948. LEFT JOIN goaf_sensor AS C ON A.goaf_sensor_id = C.goaf_sensor_id
  2949. 13:22:58.768 [XNIO-1 task-4] INFO p6spy - 2023-09-07 13:22:58 | Time Consuming: 6 ms | Connection: statement-0 | SQL: SELECT *
  2950. FROM goaf_sensor
  2951. where oc_id = 406283
  2952. AND goaf_dev_name = 'waterpump'
  2953. 13:22:58.775 [XNIO-1 task-4] INFO p6spy - 2023-09-07 13:22:58 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  2954. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  2955. FROM
  2956. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  2957. FROM goaf_sensordata
  2958. WHERE goaf_sensor_id = 442136
  2959. ORDER BY goaf_datareport_time DESC
  2960. LIMIT 1) AS A
  2961. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  2962. LEFT JOIN goaf_sensor AS C ON A.goaf_sensor_id = C.goaf_sensor_id
  2963. 13:22:58.781 [XNIO-1 task-4] INFO p6spy - 2023-09-07 13:22:58 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT *
  2964. FROM goaf_sensor
  2965. where oc_id = 406283
  2966. AND goaf_dev_name = 'machinery'
  2967. 13:22:58.787 [XNIO-1 task-4] INFO p6spy - 2023-09-07 13:22:58 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  2968. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  2969. FROM
  2970. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  2971. FROM goaf_sensordata
  2972. WHERE goaf_sensor_id = 442137
  2973. ORDER BY goaf_datareport_time DESC
  2974. LIMIT 1) AS A
  2975. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  2976. LEFT JOIN goaf_sensor AS C ON A.goaf_sensor_id = C.goaf_sensor_id
  2977. 13:22:58.792 [XNIO-1 task-4] INFO p6spy - 2023-09-07 13:22:58 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT *
  2978. FROM goaf_sensor
  2979. where oc_id = 406283
  2980. AND goaf_dev_name = 'compress'
  2981. 13:22:58.798 [XNIO-1 task-4] INFO p6spy - 2023-09-07 13:22:58 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  2982. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  2983. FROM
  2984. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  2985. FROM goaf_sensordata
  2986. WHERE goaf_sensor_id = 442135
  2987. ORDER BY goaf_datareport_time DESC
  2988. LIMIT 1) AS A
  2989. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  2990. LEFT JOIN goaf_sensor AS C ON A.goaf_sensor_id = C.goaf_sensor_id
  2991. 13:22:58.802 [XNIO-1 task-4] INFO p6spy - 2023-09-07 13:22:58 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  2992. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  2993. FROM
  2994. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  2995. FROM goaf_sensordata
  2996. WHERE goaf_sensor_id = 442139
  2997. ORDER BY goaf_datareport_time DESC
  2998. LIMIT 1) AS A
  2999. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  3000. LEFT JOIN goaf_sensor AS C ON A.goaf_sensor_id = C.goaf_sensor_id
  3001. 13:23:05.394 [XNIO-1 task-3] INFO p6spy - 2023-09-07 13:23:05 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  3002. 13:23:05.394 [XNIO-1 task-2] INFO p6spy - 2023-09-07 13:23:05 | Time Consuming: 4 ms | Connection: statement-1 | SQL: SELECT 1
  3003. 13:23:05.396 [XNIO-1 task-4] INFO p6spy - 2023-09-07 13:23:05 | Time Consuming: 5 ms | Connection: statement-2 | SQL: SELECT 1
  3004. 13:23:05.401 [XNIO-1 task-4] INFO p6spy - 2023-09-07 13:23:05 | Time Consuming: 4 ms | Connection: statement-2 | SQL: SELECT count(0) FROM goaf_sensor WHERE oc_id = 406283
  3005. 13:23:05.403 [XNIO-1 task-3] INFO p6spy - 2023-09-07 13:23:05 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT *
  3006. FROM goaf_syscfg
  3007. WHERE oc_id = 406283
  3008. 13:23:05.403 [XNIO-1 task-2] INFO p6spy - 2023-09-07 13:23:05 | Time Consuming: 4 ms | Connection: statement-1 | SQL: SELECT *
  3009. FROM goaf_devinfo
  3010. where oc_id = 406283
  3011. 13:23:05.408 [XNIO-1 task-4] INFO p6spy - 2023-09-07 13:23:05 | Time Consuming: 5 ms | Connection: statement-2 | SQL: SELECT *
  3012. FROM goaf_sensor
  3013. where oc_id = 406283
  3014. LIMIT 10
  3015. 13:23:06.687 [XNIO-1 task-4] INFO p6spy - 2023-09-07 13:23:06 | Time Consuming: 4 ms | Connection: statement-2 | SQL: SELECT 1
  3016. 13:23:06.696 [XNIO-1 task-4] INFO p6spy - 2023-09-07 13:23:06 | Time Consuming: 4 ms | Connection: statement-2 | SQL: SELECT *
  3017. FROM goaf_devinfo
  3018. where oc_id = 406283
  3019. 13:23:06.704 [XNIO-1 task-4] INFO p6spy - 2023-09-07 13:23:06 | Time Consuming: 5 ms | Connection: statement-2 | SQL: SELECT *
  3020. FROM goaf_sensor
  3021. where oc_id = 406283
  3022. AND goaf_dev_name = 'other'
  3023. 13:23:06.711 [XNIO-1 task-4] INFO p6spy - 2023-09-07 13:23:06 | Time Consuming: 4 ms | Connection: statement-2 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  3024. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  3025. FROM
  3026. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  3027. FROM goaf_sensordata
  3028. WHERE goaf_sensor_id = 442129
  3029. ORDER BY goaf_datareport_time DESC
  3030. LIMIT 1) AS A
  3031. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  3032. LEFT JOIN goaf_sensor AS C ON A.goaf_sensor_id = C.goaf_sensor_id
  3033. 13:23:06.717 [XNIO-1 task-4] INFO p6spy - 2023-09-07 13:23:06 | Time Consuming: 5 ms | Connection: statement-2 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  3034. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  3035. FROM
  3036. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  3037. FROM goaf_sensordata
  3038. WHERE goaf_sensor_id = 442198
  3039. ORDER BY goaf_datareport_time DESC
  3040. LIMIT 1) AS A
  3041. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  3042. LEFT JOIN goaf_sensor AS C ON A.goaf_sensor_id = C.goaf_sensor_id
  3043. 13:23:06.724 [XNIO-1 task-4] INFO p6spy - 2023-09-07 13:23:06 | Time Consuming: 5 ms | Connection: statement-2 | SQL: SELECT *
  3044. FROM goaf_sensor
  3045. where oc_id = 406283
  3046. AND goaf_dev_name = 'waterpump'
  3047. 13:23:06.730 [XNIO-1 task-4] INFO p6spy - 2023-09-07 13:23:06 | Time Consuming: 4 ms | Connection: statement-2 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  3048. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  3049. FROM
  3050. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  3051. FROM goaf_sensordata
  3052. WHERE goaf_sensor_id = 442136
  3053. ORDER BY goaf_datareport_time DESC
  3054. LIMIT 1) AS A
  3055. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  3056. LEFT JOIN goaf_sensor AS C ON A.goaf_sensor_id = C.goaf_sensor_id
  3057. 13:23:06.736 [XNIO-1 task-4] INFO p6spy - 2023-09-07 13:23:06 | Time Consuming: 4 ms | Connection: statement-2 | SQL: SELECT *
  3058. FROM goaf_sensor
  3059. where oc_id = 406283
  3060. AND goaf_dev_name = 'machinery'
  3061. 13:23:06.742 [XNIO-1 task-4] INFO p6spy - 2023-09-07 13:23:06 | Time Consuming: 4 ms | Connection: statement-2 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  3062. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  3063. FROM
  3064. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  3065. FROM goaf_sensordata
  3066. WHERE goaf_sensor_id = 442137
  3067. ORDER BY goaf_datareport_time DESC
  3068. LIMIT 1) AS A
  3069. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  3070. LEFT JOIN goaf_sensor AS C ON A.goaf_sensor_id = C.goaf_sensor_id
  3071. 13:23:06.748 [XNIO-1 task-4] INFO p6spy - 2023-09-07 13:23:06 | Time Consuming: 4 ms | Connection: statement-2 | SQL: SELECT *
  3072. FROM goaf_sensor
  3073. where oc_id = 406283
  3074. AND goaf_dev_name = 'compress'
  3075. 13:23:06.755 [XNIO-1 task-4] INFO p6spy - 2023-09-07 13:23:06 | Time Consuming: 5 ms | Connection: statement-2 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  3076. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  3077. FROM
  3078. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  3079. FROM goaf_sensordata
  3080. WHERE goaf_sensor_id = 442135
  3081. ORDER BY goaf_datareport_time DESC
  3082. LIMIT 1) AS A
  3083. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  3084. LEFT JOIN goaf_sensor AS C ON A.goaf_sensor_id = C.goaf_sensor_id
  3085. 13:23:06.762 [XNIO-1 task-4] INFO p6spy - 2023-09-07 13:23:06 | Time Consuming: 5 ms | Connection: statement-2 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  3086. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  3087. FROM
  3088. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  3089. FROM goaf_sensordata
  3090. WHERE goaf_sensor_id = 442139
  3091. ORDER BY goaf_datareport_time DESC
  3092. LIMIT 1) AS A
  3093. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  3094. LEFT JOIN goaf_sensor AS C ON A.goaf_sensor_id = C.goaf_sensor_id
  3095. 14:44:56.084 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  3096. 14:44:56.085 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.4.Final
  3097. 14:44:56.088 [SpringApplicationShutdownHook] INFO io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
  3098. 14:44:56.102 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - Removing {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  3099. 14:44:56.102 [SpringApplicationShutdownHook] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 0 subscriber(s).
  3100. 14:44:56.103 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - stopped bean '_org.springframework.integration.errorLogger'
  3101. 14:44:56.111 [SpringApplicationShutdownHook] INFO o.s.j.e.a.AnnotationMBeanExporter - Could not unregister MBean [com.github.tobato.fastdfs.domain.conn:name=fdfsConnectionPool,type=FdfsConnectionPool] as said MBean is not registered (perhaps already unregistered by an external process)
  3102. 14:44:56.113 [SpringApplicationShutdownHook] INFO o.s.s.quartz.SchedulerFactoryBean - Shutting down Quartz Scheduler
  3103. 14:44:56.113 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
  3104. 14:44:56.113 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  3105. 14:44:56.113 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
  3106. 14:44:56.129 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown initiated...
  3107. 14:44:56.132 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown completed.
  3108. 14:45:05.581 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.0.Final
  3109. 14:45:05.630 [restartedMain] INFO com.zhyc.xps.XPSApplication - Starting XPSApplication using Java 17.0.6 with PID 9920 (E:\zhycnewprj\iotplatform\xps-server-3\xps-application\target\classes started by qzz19 in E:\zhycnewprj\iotplatform\xps-server-3)
  3110. 14:45:05.631 [restartedMain] INFO com.zhyc.xps.XPSApplication - The following 1 profile is active: "local"
  3111. 14:45:05.687 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
  3112. 14:45:05.687 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
  3113. 14:45:07.500 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
  3114. 14:45:07.503 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  3115. 14:45:07.598 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 83 ms. Found 0 Redis repository interfaces.
  3116. 14:45:07.770 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created.
  3117. 14:45:07.786 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created.
  3118. 14:45:08.543 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  3119. 14:45:08.544 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 2855 ms
  3120. 14:45:10.950 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor
  3121. 14:45:10.960 [restartedMain] INFO o.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  3122. 14:45:10.960 [restartedMain] INFO org.quartz.core.QuartzScheduler - Quartz Scheduler v.2.3.2 created.
  3123. 14:45:10.961 [restartedMain] INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized.
  3124. 14:45:10.962 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
  3125. Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  3126. NOT STARTED.
  3127. Currently in standby mode.
  3128. Number of jobs executed: 0
  3129. Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  3130. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
  3131. 14:45:10.962 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  3132. 14:45:10.962 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2
  3133. 14:45:10.962 [restartedMain] INFO org.quartz.core.QuartzScheduler - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@61340355
  3134. 14:45:12.747 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer - LiveReload server is running on port 35729
  3135. 14:45:12.757 [restartedMain] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 15 endpoint(s) beneath base path '/actuator/z'
  3136. 14:45:13.009 [restartedMain] INFO io.undertow.websockets.jsr - UT026003: Adding annotated server endpoint class com.zhyc.xps.common.ws.WebSocketServer for path /websocket/link
  3137. 14:45:13.047 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  3138. 14:45:13.047 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 1 subscriber(s).
  3139. 14:45:13.048 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - started bean '_org.springframework.integration.errorLogger'
  3140. 14:45:13.071 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  3141. 14:45:13.080 [restartedMain] INFO org.xnio - XNIO version 3.8.8.Final
  3142. 14:45:13.090 [restartedMain] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.8.Final
  3143. 14:45:13.121 [restartedMain] INFO org.jboss.threads - JBoss Threads version 3.5.0.Final
  3144. 14:45:13.179 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 1788 (http)
  3145. 14:45:13.181 [restartedMain] INFO o.s.s.quartz.SchedulerFactoryBean - Starting Quartz Scheduler now
  3146. 14:45:13.182 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  3147. 14:45:13.207 [restartedMain] INFO com.zhyc.xps.XPSApplication - Started XPSApplication in 8.086 seconds (process running for 15.006)
  3148. 14:45:13.210 [restartedMain] INFO com.zhyc.xps.sys.job.InitSystemJob - 初始化系统定时任务
  3149. 14:45:13.217 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Starting...
  3150. 14:45:13.692 [restartedMain] INFO p6spy - 2023-09-07 14:45:13 | Time Consuming: 17 ms | Connection: statement-0 | SQL: SELECT 1
  3151. 14:45:13.697 [restartedMain] INFO com.zaxxer.hikari.pool.HikariPool - DatebookHikariCP - Added connection com.p6spy.engine.wrapper.ConnectionWrapper@375252b0
  3152. 14:45:13.701 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Start completed.
  3153. 14:45:13.833 [restartedMain] INFO p6spy - 2023-09-07 14:45:13 | Time Consuming: 56 ms | Connection: statement-0 | SQL: SELECT
  3154. A.job_id,
  3155. A.job_title,
  3156. A.job_desc,
  3157. A.status,
  3158. A.job_type,
  3159. A.job_code,
  3160. A.job_cron,
  3161. A.job_class_id,
  3162. B.job_class,
  3163. A.cycle_title,
  3164. A.cycle_period,
  3165. A.cycle_unit
  3166. FROM job AS A
  3167. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  3168. WHERE A.deleted_flag = 0
  3169. AND A.status = 1
  3170. ORDER BY A.job_id ASC
  3171. 14:45:13.861 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  3172. 14:45:13.863 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  3173. 14:45:19.713 [XNIO-1 task-2] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
  3174. 14:45:19.713 [XNIO-1 task-2] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
  3175. 14:45:19.718 [XNIO-1 task-2] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 5 ms
  3176. 14:45:20.515 [XNIO-1 task-6] INFO p6spy - 2023-09-07 14:45:20 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT 1
  3177. 14:45:20.515 [XNIO-1 task-7] INFO p6spy - 2023-09-07 14:45:20 | Time Consuming: 6 ms | Connection: statement-1 | SQL: SELECT 1
  3178. 14:45:20.524 [XNIO-1 task-6] INFO p6spy - 2023-09-07 14:45:20 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT *
  3179. FROM goaf_devinfo
  3180. where oc_id = 406283
  3181. 14:45:20.524 [XNIO-1 task-7] INFO p6spy - 2023-09-07 14:45:20 | Time Consuming: 4 ms | Connection: statement-1 | SQL: SELECT *
  3182. FROM goaf_syscfg
  3183. WHERE oc_id = 406283
  3184. 14:45:20.578 [XNIO-1 task-5] INFO p6spy - 2023-09-07 14:45:20 | Time Consuming: 10 ms | Connection: statement-0 | SQL: SELECT count(0) FROM goaf_sensor WHERE oc_id = 406283
  3185. 14:45:20.585 [XNIO-1 task-5] INFO p6spy - 2023-09-07 14:45:20 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT *
  3186. FROM goaf_sensor
  3187. where oc_id = 406283
  3188. LIMIT 10
  3189. 14:45:22.712 [XNIO-1 task-5] INFO p6spy - 2023-09-07 14:45:22 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  3190. 14:45:22.723 [XNIO-1 task-5] INFO p6spy - 2023-09-07 14:45:22 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT *
  3191. FROM goaf_devinfo
  3192. where oc_id = 406283
  3193. 14:45:22.737 [XNIO-1 task-5] INFO p6spy - 2023-09-07 14:45:22 | Time Consuming: 11 ms | Connection: statement-0 | SQL: SELECT *
  3194. FROM goaf_sensor
  3195. where oc_id = 406283
  3196. AND goaf_dev_name = 'other'
  3197. 14:45:22.756 [XNIO-1 task-5] INFO p6spy - 2023-09-07 14:45:22 | Time Consuming: 18 ms | Connection: statement-0 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  3198. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  3199. FROM
  3200. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  3201. FROM goaf_sensordata
  3202. WHERE goaf_sensor_id = 442129
  3203. ORDER BY goaf_datareport_time DESC
  3204. LIMIT 1) AS A
  3205. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  3206. right JOIN goaf_sensor AS C ON A.goaf_sensor_id = C.goaf_sensor_id
  3207. 14:45:22.772 [XNIO-1 task-5] INFO p6spy - 2023-09-07 14:45:22 | Time Consuming: 6 ms | Connection: rollback-0 | SQL:
  3208. 15:10:10.349 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  3209. 15:10:10.351 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.4.Final
  3210. 15:10:10.365 [SpringApplicationShutdownHook] INFO io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
  3211. 15:10:10.368 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - Removing {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  3212. 15:10:10.368 [SpringApplicationShutdownHook] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 0 subscriber(s).
  3213. 15:10:10.368 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - stopped bean '_org.springframework.integration.errorLogger'
  3214. 15:10:10.375 [SpringApplicationShutdownHook] INFO o.s.j.e.a.AnnotationMBeanExporter - Could not unregister MBean [com.github.tobato.fastdfs.domain.conn:name=fdfsConnectionPool,type=FdfsConnectionPool] as said MBean is not registered (perhaps already unregistered by an external process)
  3215. 15:10:10.376 [SpringApplicationShutdownHook] INFO o.s.s.quartz.SchedulerFactoryBean - Shutting down Quartz Scheduler
  3216. 15:10:10.376 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
  3217. 15:10:10.376 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  3218. 15:10:10.376 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
  3219. 15:10:10.394 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown initiated...
  3220. 15:10:10.397 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown completed.
  3221. 15:10:13.880 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.0.Final
  3222. 15:10:13.929 [restartedMain] INFO com.zhyc.xps.XPSApplication - Starting XPSApplication using Java 17.0.6 with PID 6416 (E:\zhycnewprj\iotplatform\xps-server-3\xps-application\target\classes started by qzz19 in E:\zhycnewprj\iotplatform\xps-server-3)
  3223. 15:10:13.930 [restartedMain] INFO com.zhyc.xps.XPSApplication - The following 1 profile is active: "local"
  3224. 15:10:13.983 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
  3225. 15:10:13.984 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
  3226. 15:10:15.798 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
  3227. 15:10:15.801 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  3228. 15:10:15.891 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 76 ms. Found 0 Redis repository interfaces.
  3229. 15:10:16.064 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created.
  3230. 15:10:16.081 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created.
  3231. 15:10:16.848 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  3232. 15:10:16.848 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 2864 ms
  3233. 15:10:19.269 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor
  3234. 15:10:19.279 [restartedMain] INFO o.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  3235. 15:10:19.279 [restartedMain] INFO org.quartz.core.QuartzScheduler - Quartz Scheduler v.2.3.2 created.
  3236. 15:10:19.280 [restartedMain] INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized.
  3237. 15:10:19.280 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
  3238. Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  3239. NOT STARTED.
  3240. Currently in standby mode.
  3241. Number of jobs executed: 0
  3242. Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  3243. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
  3244. 15:10:19.280 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  3245. 15:10:19.280 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2
  3246. 15:10:19.280 [restartedMain] INFO org.quartz.core.QuartzScheduler - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@39b95b1f
  3247. 15:10:21.103 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer - LiveReload server is running on port 35729
  3248. 15:10:21.108 [restartedMain] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 15 endpoint(s) beneath base path '/actuator/z'
  3249. 15:10:21.254 [restartedMain] INFO io.undertow.websockets.jsr - UT026003: Adding annotated server endpoint class com.zhyc.xps.common.ws.WebSocketServer for path /websocket/link
  3250. 15:10:21.288 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  3251. 15:10:21.288 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 1 subscriber(s).
  3252. 15:10:21.288 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - started bean '_org.springframework.integration.errorLogger'
  3253. 15:10:21.309 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  3254. 15:10:21.318 [restartedMain] INFO org.xnio - XNIO version 3.8.8.Final
  3255. 15:10:21.328 [restartedMain] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.8.Final
  3256. 15:10:21.358 [restartedMain] INFO org.jboss.threads - JBoss Threads version 3.5.0.Final
  3257. 15:10:21.409 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 1788 (http)
  3258. 15:10:21.410 [restartedMain] INFO o.s.s.quartz.SchedulerFactoryBean - Starting Quartz Scheduler now
  3259. 15:10:21.410 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  3260. 15:10:21.435 [restartedMain] INFO com.zhyc.xps.XPSApplication - Started XPSApplication in 8.009 seconds (process running for 8.915)
  3261. 15:10:21.437 [restartedMain] INFO com.zhyc.xps.sys.job.InitSystemJob - 初始化系统定时任务
  3262. 15:10:21.444 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Starting...
  3263. 15:10:21.760 [restartedMain] INFO p6spy - 2023-09-07 15:10:21 | Time Consuming: 13 ms | Connection: statement-0 | SQL: SELECT 1
  3264. 15:10:21.764 [restartedMain] INFO com.zaxxer.hikari.pool.HikariPool - DatebookHikariCP - Added connection com.p6spy.engine.wrapper.ConnectionWrapper@57567aff
  3265. 15:10:21.775 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Start completed.
  3266. 15:10:21.842 [restartedMain] INFO p6spy - 2023-09-07 15:10:21 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT
  3267. A.job_id,
  3268. A.job_title,
  3269. A.job_desc,
  3270. A.status,
  3271. A.job_type,
  3272. A.job_code,
  3273. A.job_cron,
  3274. A.job_class_id,
  3275. B.job_class,
  3276. A.cycle_title,
  3277. A.cycle_period,
  3278. A.cycle_unit
  3279. FROM job AS A
  3280. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  3281. WHERE A.deleted_flag = 0
  3282. AND A.status = 1
  3283. ORDER BY A.job_id ASC
  3284. 15:10:21.863 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  3285. 15:10:21.865 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  3286. 15:10:22.421 [RMI TCP Connection(4)-192.168.3.5] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
  3287. 15:10:22.422 [RMI TCP Connection(4)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
  3288. 15:10:22.423 [RMI TCP Connection(5)-192.168.3.5] INFO p6spy - 2023-09-07 15:10:22 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  3289. 15:10:22.424 [RMI TCP Connection(4)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 2 ms
  3290. 15:10:22.435 [RMI TCP Connection(5)-192.168.3.5] INFO p6spy - 2023-09-07 15:10:22 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  3291. 15:10:31.464 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:10:31 | Time Consuming: 6 ms | Connection: statement-0 | SQL: SELECT 1
  3292. 15:10:31.464 [XNIO-1 task-3] INFO p6spy - 2023-09-07 15:10:31 | Time Consuming: 6 ms | Connection: statement-1 | SQL: SELECT 1
  3293. 15:10:31.474 [XNIO-1 task-3] INFO p6spy - 2023-09-07 15:10:31 | Time Consuming: 4 ms | Connection: statement-1 | SQL: SELECT *
  3294. FROM goaf_syscfg
  3295. WHERE oc_id = 406283
  3296. 15:10:31.474 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:10:31 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT *
  3297. FROM goaf_devinfo
  3298. where oc_id = 406283
  3299. 15:10:31.520 [XNIO-1 task-2] INFO p6spy - 2023-09-07 15:10:31 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT count(0) FROM goaf_sensor WHERE oc_id = 406283
  3300. 15:10:31.525 [XNIO-1 task-2] INFO p6spy - 2023-09-07 15:10:31 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT *
  3301. FROM goaf_sensor
  3302. where oc_id = 406283
  3303. LIMIT 10
  3304. 15:10:33.566 [XNIO-1 task-2] INFO p6spy - 2023-09-07 15:10:33 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  3305. 15:10:33.576 [XNIO-1 task-2] INFO p6spy - 2023-09-07 15:10:33 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT *
  3306. FROM goaf_devinfo
  3307. where oc_id = 406283
  3308. 15:10:33.587 [XNIO-1 task-2] INFO p6spy - 2023-09-07 15:10:33 | Time Consuming: 6 ms | Connection: statement-0 | SQL: SELECT *
  3309. FROM goaf_sensor
  3310. where oc_id = 406283
  3311. AND goaf_dev_name = 'other'
  3312. 15:10:33.595 [XNIO-1 task-2] INFO p6spy - 2023-09-07 15:10:33 | Time Consuming: 6 ms | Connection: statement-0 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  3313. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  3314. FROM goaf_sensor AS C
  3315. LEFT JOIN
  3316. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  3317. FROM goaf_sensordata
  3318. ORDER BY goaf_datareport_time DESC
  3319. LIMIT 1) AS A ON A.goaf_sensor_id = C.goaf_sensor_id
  3320. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  3321. WHERE C.goaf_sensor_id = 442129
  3322. 15:10:33.603 [XNIO-1 task-2] INFO p6spy - 2023-09-07 15:10:33 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  3323. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  3324. FROM goaf_sensor AS C
  3325. LEFT JOIN
  3326. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  3327. FROM goaf_sensordata
  3328. ORDER BY goaf_datareport_time DESC
  3329. LIMIT 1) AS A ON A.goaf_sensor_id = C.goaf_sensor_id
  3330. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  3331. WHERE C.goaf_sensor_id = 442198
  3332. 15:10:33.610 [XNIO-1 task-2] INFO p6spy - 2023-09-07 15:10:33 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT *
  3333. FROM goaf_sensor
  3334. where oc_id = 406283
  3335. AND goaf_dev_name = 'waterpump'
  3336. 15:10:33.616 [XNIO-1 task-2] INFO p6spy - 2023-09-07 15:10:33 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  3337. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  3338. FROM goaf_sensor AS C
  3339. LEFT JOIN
  3340. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  3341. FROM goaf_sensordata
  3342. ORDER BY goaf_datareport_time DESC
  3343. LIMIT 1) AS A ON A.goaf_sensor_id = C.goaf_sensor_id
  3344. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  3345. WHERE C.goaf_sensor_id = 442136
  3346. 15:10:33.623 [XNIO-1 task-2] INFO p6spy - 2023-09-07 15:10:33 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT *
  3347. FROM goaf_sensor
  3348. where oc_id = 406283
  3349. AND goaf_dev_name = 'machinery'
  3350. 15:10:33.630 [XNIO-1 task-2] INFO p6spy - 2023-09-07 15:10:33 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  3351. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  3352. FROM goaf_sensor AS C
  3353. LEFT JOIN
  3354. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  3355. FROM goaf_sensordata
  3356. ORDER BY goaf_datareport_time DESC
  3357. LIMIT 1) AS A ON A.goaf_sensor_id = C.goaf_sensor_id
  3358. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  3359. WHERE C.goaf_sensor_id = 442137
  3360. 15:10:33.637 [XNIO-1 task-2] INFO p6spy - 2023-09-07 15:10:33 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT *
  3361. FROM goaf_sensor
  3362. where oc_id = 406283
  3363. AND goaf_dev_name = 'compress'
  3364. 15:10:33.643 [XNIO-1 task-2] INFO p6spy - 2023-09-07 15:10:33 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  3365. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  3366. FROM goaf_sensor AS C
  3367. LEFT JOIN
  3368. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  3369. FROM goaf_sensordata
  3370. ORDER BY goaf_datareport_time DESC
  3371. LIMIT 1) AS A ON A.goaf_sensor_id = C.goaf_sensor_id
  3372. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  3373. WHERE C.goaf_sensor_id = 442135
  3374. 15:10:33.652 [XNIO-1 task-2] INFO p6spy - 2023-09-07 15:10:33 | Time Consuming: 7 ms | Connection: statement-0 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  3375. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  3376. FROM goaf_sensor AS C
  3377. LEFT JOIN
  3378. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  3379. FROM goaf_sensordata
  3380. ORDER BY goaf_datareport_time DESC
  3381. LIMIT 1) AS A ON A.goaf_sensor_id = C.goaf_sensor_id
  3382. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  3383. WHERE C.goaf_sensor_id = 442139
  3384. 15:11:36.849 [XNIO-1 task-2] INFO p6spy - 2023-09-07 15:11:36 | Time Consuming: 3 ms | Connection: statement-2 | SQL: SELECT 1
  3385. 15:11:36.849 [XNIO-1 task-3] INFO p6spy - 2023-09-07 15:11:36 | Time Consuming: 4 ms | Connection: statement-1 | SQL: SELECT 1
  3386. 15:11:36.849 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:11:36 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  3387. 15:11:36.855 [XNIO-1 task-2] INFO p6spy - 2023-09-07 15:11:36 | Time Consuming: 5 ms | Connection: statement-2 | SQL: SELECT count(0) FROM goaf_sensor WHERE oc_id = 406283
  3388. 15:11:36.861 [XNIO-1 task-2] INFO p6spy - 2023-09-07 15:11:36 | Time Consuming: 5 ms | Connection: statement-2 | SQL: SELECT *
  3389. FROM goaf_sensor
  3390. where oc_id = 406283
  3391. LIMIT 10
  3392. 15:11:36.861 [XNIO-1 task-3] INFO p6spy - 2023-09-07 15:11:36 | Time Consuming: 6 ms | Connection: statement-1 | SQL: SELECT *
  3393. FROM goaf_syscfg
  3394. WHERE oc_id = 406283
  3395. 15:11:36.861 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:11:36 | Time Consuming: 6 ms | Connection: statement-0 | SQL: SELECT *
  3396. FROM goaf_devinfo
  3397. where oc_id = 406283
  3398. 15:15:50.233 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:15:50 | Time Consuming: 5009 ms | Connection: statement-0 | SQL: SELECT 1
  3399. 15:15:55.236 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:15:55 | Time Consuming: 5001 ms | Connection: statement-1 | SQL: SELECT 1
  3400. 15:16:00.238 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:16:00 | Time Consuming: 5001 ms | Connection: statement-2 | SQL: SELECT 1
  3401. 15:16:05.240 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:16:05 | Time Consuming: 5001 ms | Connection: statement-3 | SQL: SELECT 1
  3402. 15:16:10.242 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:16:10 | Time Consuming: 5001 ms | Connection: statement-4 | SQL: SELECT 1
  3403. 15:16:10.246 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:16:10 | Time Consuming: 3 ms | Connection: statement-6 | SQL: SELECT 1
  3404. 15:16:10.258 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:16:10 | Time Consuming: 4 ms | Connection: statement-6 | SQL: SELECT *
  3405. FROM goaf_devinfo
  3406. where oc_id = 406283
  3407. 15:16:10.291 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:16:10 | Time Consuming: 30 ms | Connection: statement-6 | SQL: SELECT *
  3408. FROM goaf_sensor
  3409. where oc_id = 406283
  3410. AND goaf_dev_name = 'other'
  3411. 15:16:10.298 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:16:10 | Time Consuming: 5 ms | Connection: statement-6 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  3412. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  3413. FROM goaf_sensor AS C
  3414. LEFT JOIN
  3415. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  3416. FROM goaf_sensordata
  3417. ORDER BY goaf_datareport_time DESC
  3418. LIMIT 1) AS A ON A.goaf_sensor_id = C.goaf_sensor_id
  3419. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  3420. WHERE C.goaf_sensor_id = 442129
  3421. 15:16:10.305 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:16:10 | Time Consuming: 5 ms | Connection: statement-6 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  3422. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  3423. FROM goaf_sensor AS C
  3424. LEFT JOIN
  3425. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  3426. FROM goaf_sensordata
  3427. ORDER BY goaf_datareport_time DESC
  3428. LIMIT 1) AS A ON A.goaf_sensor_id = C.goaf_sensor_id
  3429. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  3430. WHERE C.goaf_sensor_id = 442198
  3431. 15:16:10.310 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:16:10 | Time Consuming: 3 ms | Connection: statement-6 | SQL: SELECT *
  3432. FROM goaf_sensor
  3433. where oc_id = 406283
  3434. AND goaf_dev_name = 'waterpump'
  3435. 15:16:10.316 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:16:10 | Time Consuming: 3 ms | Connection: statement-6 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  3436. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  3437. FROM goaf_sensor AS C
  3438. LEFT JOIN
  3439. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  3440. FROM goaf_sensordata
  3441. ORDER BY goaf_datareport_time DESC
  3442. LIMIT 1) AS A ON A.goaf_sensor_id = C.goaf_sensor_id
  3443. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  3444. WHERE C.goaf_sensor_id = 442136
  3445. 15:16:10.321 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:16:10 | Time Consuming: 4 ms | Connection: statement-6 | SQL: SELECT *
  3446. FROM goaf_sensor
  3447. where oc_id = 406283
  3448. AND goaf_dev_name = 'machinery'
  3449. 15:16:10.325 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:16:10 | Time Consuming: 3 ms | Connection: statement-6 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  3450. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  3451. FROM goaf_sensor AS C
  3452. LEFT JOIN
  3453. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  3454. FROM goaf_sensordata
  3455. ORDER BY goaf_datareport_time DESC
  3456. LIMIT 1) AS A ON A.goaf_sensor_id = C.goaf_sensor_id
  3457. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  3458. WHERE C.goaf_sensor_id = 442137
  3459. 15:16:10.330 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:16:10 | Time Consuming: 3 ms | Connection: statement-6 | SQL: SELECT *
  3460. FROM goaf_sensor
  3461. where oc_id = 406283
  3462. AND goaf_dev_name = 'compress'
  3463. 15:16:10.336 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:16:10 | Time Consuming: 4 ms | Connection: statement-6 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  3464. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  3465. FROM goaf_sensor AS C
  3466. LEFT JOIN
  3467. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  3468. FROM goaf_sensordata
  3469. ORDER BY goaf_datareport_time DESC
  3470. LIMIT 1) AS A ON A.goaf_sensor_id = C.goaf_sensor_id
  3471. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  3472. WHERE C.goaf_sensor_id = 442135
  3473. 15:16:10.341 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:16:10 | Time Consuming: 4 ms | Connection: statement-6 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  3474. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  3475. FROM goaf_sensor AS C
  3476. LEFT JOIN
  3477. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  3478. FROM goaf_sensordata
  3479. ORDER BY goaf_datareport_time DESC
  3480. LIMIT 1) AS A ON A.goaf_sensor_id = C.goaf_sensor_id
  3481. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  3482. WHERE C.goaf_sensor_id = 442139
  3483. 15:16:34.484 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:16:34 | Time Consuming: 5 ms | Connection: statement-6 | SQL: SELECT 1
  3484. 15:16:34.507 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:16:34 | Time Consuming: 4 ms | Connection: statement-6 | SQL: SELECT count(0) FROM goaf_devinfo WHERE oc_id = 406283
  3485. 15:16:34.516 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:16:34 | Time Consuming: 7 ms | Connection: statement-6 | SQL: SELECT *
  3486. FROM goaf_devinfo
  3487. where oc_id = 406283
  3488. LIMIT 10
  3489. 15:16:34.543 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:16:34 | Time Consuming: 26 ms | Connection: statement-6 | SQL: SELECT *
  3490. FROM goaf_sensor
  3491. where oc_id = 406283
  3492. AND goaf_dev_name = 'other'
  3493. 15:16:34.559 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:16:34 | Time Consuming: 13 ms | Connection: statement-6 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  3494. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  3495. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  3496. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  3497. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  3498. FROM goaf_sensordata AS A
  3499. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  3500. WHERE A.oc_id = 406283
  3501. AND A.goaf_sensor_id = 442129
  3502. ORDER BY A.goaf_datareport_time DESC
  3503. LIMIT 1
  3504. 15:16:34.572 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:16:34 | Time Consuming: 10 ms | Connection: statement-6 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  3505. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  3506. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  3507. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  3508. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  3509. FROM goaf_sensordata AS A
  3510. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  3511. WHERE A.oc_id = 406283
  3512. AND A.goaf_sensor_id = 442198
  3513. ORDER BY A.goaf_datareport_time DESC
  3514. LIMIT 1
  3515. 15:16:34.582 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:16:34 | Time Consuming: 8 ms | Connection: statement-6 | SQL: SELECT *
  3516. FROM goaf_sensor
  3517. where oc_id = 406283
  3518. AND goaf_dev_name = 'waterpump'
  3519. 15:16:34.593 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:16:34 | Time Consuming: 10 ms | Connection: statement-6 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  3520. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  3521. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  3522. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  3523. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  3524. FROM goaf_sensordata AS A
  3525. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  3526. WHERE A.oc_id = 406283
  3527. AND A.goaf_sensor_id = 442136
  3528. ORDER BY A.goaf_datareport_time DESC
  3529. LIMIT 1
  3530. 15:16:34.602 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:16:34 | Time Consuming: 7 ms | Connection: statement-6 | SQL: SELECT *
  3531. FROM goaf_sensor
  3532. where oc_id = 406283
  3533. AND goaf_dev_name = 'machinery'
  3534. 15:16:34.610 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:16:34 | Time Consuming: 6 ms | Connection: statement-6 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  3535. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  3536. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  3537. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  3538. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  3539. FROM goaf_sensordata AS A
  3540. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  3541. WHERE A.oc_id = 406283
  3542. AND A.goaf_sensor_id = 442137
  3543. ORDER BY A.goaf_datareport_time DESC
  3544. LIMIT 1
  3545. 15:16:34.617 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:16:34 | Time Consuming: 6 ms | Connection: statement-6 | SQL: SELECT *
  3546. FROM goaf_sensor
  3547. where oc_id = 406283
  3548. AND goaf_dev_name = 'compress'
  3549. 15:16:34.626 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:16:34 | Time Consuming: 6 ms | Connection: statement-6 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  3550. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  3551. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  3552. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  3553. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  3554. FROM goaf_sensordata AS A
  3555. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  3556. WHERE A.oc_id = 406283
  3557. AND A.goaf_sensor_id = 442135
  3558. ORDER BY A.goaf_datareport_time DESC
  3559. LIMIT 1
  3560. 15:16:34.633 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:16:34 | Time Consuming: 5 ms | Connection: statement-6 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  3561. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  3562. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  3563. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  3564. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  3565. FROM goaf_sensordata AS A
  3566. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  3567. WHERE A.oc_id = 406283
  3568. AND A.goaf_sensor_id = 442139
  3569. ORDER BY A.goaf_datareport_time DESC
  3570. LIMIT 1
  3571. 15:16:36.187 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:16:36 | Time Consuming: 3 ms | Connection: statement-6 | SQL: SELECT 1
  3572. 15:16:36.195 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:16:36 | Time Consuming: 3 ms | Connection: statement-6 | SQL: SELECT *
  3573. FROM goaf_devinfo
  3574. where oc_id = 406283
  3575. 15:16:36.200 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:16:36 | Time Consuming: 4 ms | Connection: statement-6 | SQL: SELECT *
  3576. FROM goaf_sensor
  3577. where oc_id = 406283
  3578. AND goaf_dev_name = 'other'
  3579. 15:16:36.205 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:16:36 | Time Consuming: 3 ms | Connection: statement-6 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  3580. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  3581. FROM goaf_sensor AS C
  3582. LEFT JOIN
  3583. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  3584. FROM goaf_sensordata
  3585. ORDER BY goaf_datareport_time DESC
  3586. LIMIT 1) AS A ON A.goaf_sensor_id = C.goaf_sensor_id
  3587. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  3588. WHERE C.goaf_sensor_id = 442129
  3589. 15:16:36.209 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:16:36 | Time Consuming: 3 ms | Connection: statement-6 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  3590. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  3591. FROM goaf_sensor AS C
  3592. LEFT JOIN
  3593. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  3594. FROM goaf_sensordata
  3595. ORDER BY goaf_datareport_time DESC
  3596. LIMIT 1) AS A ON A.goaf_sensor_id = C.goaf_sensor_id
  3597. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  3598. WHERE C.goaf_sensor_id = 442198
  3599. 15:16:36.214 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:16:36 | Time Consuming: 3 ms | Connection: statement-6 | SQL: SELECT *
  3600. FROM goaf_sensor
  3601. where oc_id = 406283
  3602. AND goaf_dev_name = 'waterpump'
  3603. 15:16:36.219 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:16:36 | Time Consuming: 4 ms | Connection: statement-6 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  3604. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  3605. FROM goaf_sensor AS C
  3606. LEFT JOIN
  3607. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  3608. FROM goaf_sensordata
  3609. ORDER BY goaf_datareport_time DESC
  3610. LIMIT 1) AS A ON A.goaf_sensor_id = C.goaf_sensor_id
  3611. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  3612. WHERE C.goaf_sensor_id = 442136
  3613. 15:16:36.224 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:16:36 | Time Consuming: 4 ms | Connection: statement-6 | SQL: SELECT *
  3614. FROM goaf_sensor
  3615. where oc_id = 406283
  3616. AND goaf_dev_name = 'machinery'
  3617. 15:16:36.230 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:16:36 | Time Consuming: 4 ms | Connection: statement-6 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  3618. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  3619. FROM goaf_sensor AS C
  3620. LEFT JOIN
  3621. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  3622. FROM goaf_sensordata
  3623. ORDER BY goaf_datareport_time DESC
  3624. LIMIT 1) AS A ON A.goaf_sensor_id = C.goaf_sensor_id
  3625. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  3626. WHERE C.goaf_sensor_id = 442137
  3627. 15:16:36.236 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:16:36 | Time Consuming: 3 ms | Connection: statement-6 | SQL: SELECT *
  3628. FROM goaf_sensor
  3629. where oc_id = 406283
  3630. AND goaf_dev_name = 'compress'
  3631. 15:16:36.240 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:16:36 | Time Consuming: 4 ms | Connection: statement-6 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  3632. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  3633. FROM goaf_sensor AS C
  3634. LEFT JOIN
  3635. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  3636. FROM goaf_sensordata
  3637. ORDER BY goaf_datareport_time DESC
  3638. LIMIT 1) AS A ON A.goaf_sensor_id = C.goaf_sensor_id
  3639. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  3640. WHERE C.goaf_sensor_id = 442135
  3641. 15:16:36.245 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:16:36 | Time Consuming: 4 ms | Connection: statement-6 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  3642. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  3643. FROM goaf_sensor AS C
  3644. LEFT JOIN
  3645. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  3646. FROM goaf_sensordata
  3647. ORDER BY goaf_datareport_time DESC
  3648. LIMIT 1) AS A ON A.goaf_sensor_id = C.goaf_sensor_id
  3649. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  3650. WHERE C.goaf_sensor_id = 442139
  3651. 15:16:43.811 [XNIO-1 task-2] INFO p6spy - 2023-09-07 15:16:43 | Time Consuming: 4 ms | Connection: statement-6 | SQL: SELECT 1
  3652. 15:16:43.814 [XNIO-1 task-3] INFO p6spy - 2023-09-07 15:16:43 | Time Consuming: 4 ms | Connection: statement-9 | SQL: SELECT 1
  3653. 15:16:43.814 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:16:43 | Time Consuming: 5 ms | Connection: statement-8 | SQL: SELECT 1
  3654. 15:16:43.825 [XNIO-1 task-2] INFO p6spy - 2023-09-07 15:16:43 | Time Consuming: 7 ms | Connection: statement-6 | SQL: SELECT *
  3655. FROM goaf_devinfo
  3656. where oc_id = 406283
  3657. 15:16:43.832 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:16:43 | Time Consuming: 6 ms | Connection: statement-8 | SQL: SELECT *
  3658. FROM goaf_devinfo
  3659. where oc_id = 406283
  3660. 15:16:43.832 [XNIO-1 task-2] INFO p6spy - 2023-09-07 15:16:43 | Time Consuming: 6 ms | Connection: statement-6 | SQL: SELECT *
  3661. FROM goaf_sensor
  3662. where oc_id = 406283
  3663. AND goaf_dev_name = 'other'
  3664. 15:16:43.832 [XNIO-1 task-3] INFO p6spy - 2023-09-07 15:16:43 | Time Consuming: 6 ms | Connection: statement-9 | SQL: SELECT
  3665. oc_id,
  3666. map_id,
  3667. map_title,
  3668. map_desc,
  3669. map_cat_id,
  3670. map_raster_layer,
  3671. map_type_id
  3672. FROM ent_map
  3673. WHERE 1 = 1 AND deleted_flag = 0
  3674. AND oc_id = 406283
  3675. 15:16:43.842 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:16:43 | Time Consuming: 8 ms | Connection: statement-8 | SQL: SELECT *
  3676. FROM goaf_sensor
  3677. where oc_id = 406283
  3678. AND goaf_dev_name = 'other'
  3679. 15:16:43.844 [XNIO-1 task-2] INFO p6spy - 2023-09-07 15:16:43 | Time Consuming: 10 ms | Connection: statement-6 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  3680. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  3681. FROM goaf_sensor AS C
  3682. LEFT JOIN
  3683. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  3684. FROM goaf_sensordata
  3685. ORDER BY goaf_datareport_time DESC
  3686. LIMIT 1) AS A ON A.goaf_sensor_id = C.goaf_sensor_id
  3687. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  3688. WHERE C.goaf_sensor_id = 442129
  3689. 15:16:43.855 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:16:43 | Time Consuming: 11 ms | Connection: statement-8 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  3690. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  3691. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  3692. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  3693. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  3694. FROM goaf_sensordata AS A
  3695. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  3696. WHERE A.oc_id = 406283
  3697. AND A.goaf_sensor_id = 442129
  3698. ORDER BY A.goaf_datareport_time DESC
  3699. LIMIT 1
  3700. 15:16:43.855 [XNIO-1 task-2] INFO p6spy - 2023-09-07 15:16:43 | Time Consuming: 9 ms | Connection: statement-6 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  3701. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  3702. FROM goaf_sensor AS C
  3703. LEFT JOIN
  3704. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  3705. FROM goaf_sensordata
  3706. ORDER BY goaf_datareport_time DESC
  3707. LIMIT 1) AS A ON A.goaf_sensor_id = C.goaf_sensor_id
  3708. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  3709. WHERE C.goaf_sensor_id = 442198
  3710. 15:16:43.865 [XNIO-1 task-2] INFO p6spy - 2023-09-07 15:16:43 | Time Consuming: 8 ms | Connection: statement-6 | SQL: SELECT *
  3711. FROM goaf_sensor
  3712. where oc_id = 406283
  3713. AND goaf_dev_name = 'waterpump'
  3714. 15:16:43.865 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:16:43 | Time Consuming: 8 ms | Connection: statement-8 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  3715. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  3716. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  3717. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  3718. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  3719. FROM goaf_sensordata AS A
  3720. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  3721. WHERE A.oc_id = 406283
  3722. AND A.goaf_sensor_id = 442198
  3723. ORDER BY A.goaf_datareport_time DESC
  3724. LIMIT 1
  3725. 15:16:43.873 [XNIO-1 task-2] INFO p6spy - 2023-09-07 15:16:43 | Time Consuming: 6 ms | Connection: statement-6 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  3726. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  3727. FROM goaf_sensor AS C
  3728. LEFT JOIN
  3729. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  3730. FROM goaf_sensordata
  3731. ORDER BY goaf_datareport_time DESC
  3732. LIMIT 1) AS A ON A.goaf_sensor_id = C.goaf_sensor_id
  3733. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  3734. WHERE C.goaf_sensor_id = 442136
  3735. 15:16:43.873 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:16:43 | Time Consuming: 7 ms | Connection: statement-8 | SQL: SELECT *
  3736. FROM goaf_sensor
  3737. where oc_id = 406283
  3738. AND goaf_dev_name = 'waterpump'
  3739. 15:16:43.880 [XNIO-1 task-2] INFO p6spy - 2023-09-07 15:16:43 | Time Consuming: 5 ms | Connection: statement-6 | SQL: SELECT *
  3740. FROM goaf_sensor
  3741. where oc_id = 406283
  3742. AND goaf_dev_name = 'machinery'
  3743. 15:16:43.880 [XNIO-1 task-3] INFO p6spy - 2023-09-07 15:16:43 | Time Consuming: 5 ms | Connection: statement-9 | SQL: SELECT A.goaflayer_id,
  3744. A.oc_id,
  3745. A.goaf_id,
  3746. A.goaf_name,
  3747. A.map_id,
  3748. A.layer_id,
  3749. B.layer_cat_id,
  3750. B.layer_title,
  3751. B.layer_marker,
  3752. B.layer_vector,
  3753. B.layer_vector_type
  3754. FROM goaf_map_layer AS A
  3755. left join ent_map_layer AS B ON B.layer_id = A.layer_id
  3756. WHERE A.oc_id = 406283
  3757. AND A.map_id = '406283'
  3758. 15:16:43.880 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:16:43 | Time Consuming: 5 ms | Connection: statement-8 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  3759. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  3760. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  3761. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  3762. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  3763. FROM goaf_sensordata AS A
  3764. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  3765. WHERE A.oc_id = 406283
  3766. AND A.goaf_sensor_id = 442136
  3767. ORDER BY A.goaf_datareport_time DESC
  3768. LIMIT 1
  3769. 15:16:43.890 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:16:43 | Time Consuming: 7 ms | Connection: statement-8 | SQL: SELECT *
  3770. FROM goaf_sensor
  3771. where oc_id = 406283
  3772. AND goaf_dev_name = 'machinery'
  3773. 15:16:43.890 [XNIO-1 task-2] INFO p6spy - 2023-09-07 15:16:43 | Time Consuming: 7 ms | Connection: statement-6 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  3774. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  3775. FROM goaf_sensor AS C
  3776. LEFT JOIN
  3777. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  3778. FROM goaf_sensordata
  3779. ORDER BY goaf_datareport_time DESC
  3780. LIMIT 1) AS A ON A.goaf_sensor_id = C.goaf_sensor_id
  3781. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  3782. WHERE C.goaf_sensor_id = 442137
  3783. 15:16:43.897 [XNIO-1 task-2] INFO p6spy - 2023-09-07 15:16:43 | Time Consuming: 5 ms | Connection: statement-6 | SQL: SELECT *
  3784. FROM goaf_sensor
  3785. where oc_id = 406283
  3786. AND goaf_dev_name = 'compress'
  3787. 15:16:43.897 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:16:43 | Time Consuming: 5 ms | Connection: statement-8 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  3788. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  3789. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  3790. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  3791. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  3792. FROM goaf_sensordata AS A
  3793. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  3794. WHERE A.oc_id = 406283
  3795. AND A.goaf_sensor_id = 442137
  3796. ORDER BY A.goaf_datareport_time DESC
  3797. LIMIT 1
  3798. 15:16:43.904 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:16:43 | Time Consuming: 6 ms | Connection: statement-8 | SQL: SELECT *
  3799. FROM goaf_sensor
  3800. where oc_id = 406283
  3801. AND goaf_dev_name = 'compress'
  3802. 15:16:43.905 [XNIO-1 task-2] INFO p6spy - 2023-09-07 15:16:43 | Time Consuming: 7 ms | Connection: statement-6 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  3803. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  3804. FROM goaf_sensor AS C
  3805. LEFT JOIN
  3806. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  3807. FROM goaf_sensordata
  3808. ORDER BY goaf_datareport_time DESC
  3809. LIMIT 1) AS A ON A.goaf_sensor_id = C.goaf_sensor_id
  3810. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  3811. WHERE C.goaf_sensor_id = 442135
  3812. 15:16:43.913 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:16:43 | Time Consuming: 6 ms | Connection: statement-8 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  3813. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  3814. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  3815. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  3816. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  3817. FROM goaf_sensordata AS A
  3818. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  3819. WHERE A.oc_id = 406283
  3820. AND A.goaf_sensor_id = 442135
  3821. ORDER BY A.goaf_datareport_time DESC
  3822. LIMIT 1
  3823. 15:16:43.913 [XNIO-1 task-2] INFO p6spy - 2023-09-07 15:16:43 | Time Consuming: 6 ms | Connection: statement-6 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  3824. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  3825. FROM goaf_sensor AS C
  3826. LEFT JOIN
  3827. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  3828. FROM goaf_sensordata
  3829. ORDER BY goaf_datareport_time DESC
  3830. LIMIT 1) AS A ON A.goaf_sensor_id = C.goaf_sensor_id
  3831. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  3832. WHERE C.goaf_sensor_id = 442139
  3833. 15:16:43.918 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:16:43 | Time Consuming: 4 ms | Connection: statement-8 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  3834. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  3835. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  3836. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  3837. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  3838. FROM goaf_sensordata AS A
  3839. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  3840. WHERE A.oc_id = 406283
  3841. AND A.goaf_sensor_id = 442139
  3842. ORDER BY A.goaf_datareport_time DESC
  3843. LIMIT 1
  3844. 15:18:02.451 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  3845. 15:18:02.452 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.4.Final
  3846. 15:18:02.456 [SpringApplicationShutdownHook] INFO io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
  3847. 15:18:02.458 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - Removing {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  3848. 15:18:02.458 [SpringApplicationShutdownHook] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 0 subscriber(s).
  3849. 15:18:02.458 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - stopped bean '_org.springframework.integration.errorLogger'
  3850. 15:18:02.469 [SpringApplicationShutdownHook] INFO o.s.j.e.a.AnnotationMBeanExporter - Could not unregister MBean [com.github.tobato.fastdfs.domain.conn:name=fdfsConnectionPool,type=FdfsConnectionPool] as said MBean is not registered (perhaps already unregistered by an external process)
  3851. 15:18:02.470 [SpringApplicationShutdownHook] INFO o.s.s.quartz.SchedulerFactoryBean - Shutting down Quartz Scheduler
  3852. 15:18:02.471 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
  3853. 15:18:02.471 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  3854. 15:18:02.471 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
  3855. 15:18:02.494 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown initiated...
  3856. 15:18:02.523 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown completed.
  3857. 15:18:09.179 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.0.Final
  3858. 15:18:09.227 [restartedMain] INFO com.zhyc.xps.XPSApplication - Starting XPSApplication using Java 17.0.6 with PID 19240 (E:\zhycnewprj\iotplatform\xps-server-3\xps-application\target\classes started by qzz19 in E:\zhycnewprj\iotplatform\xps-server-3)
  3859. 15:18:09.228 [restartedMain] INFO com.zhyc.xps.XPSApplication - The following 1 profile is active: "local"
  3860. 15:18:09.281 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
  3861. 15:18:09.282 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
  3862. 15:18:11.106 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
  3863. 15:18:11.110 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  3864. 15:18:11.205 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 81 ms. Found 0 Redis repository interfaces.
  3865. 15:18:11.370 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created.
  3866. 15:18:11.386 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created.
  3867. 15:18:12.162 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  3868. 15:18:12.162 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 2880 ms
  3869. 15:18:14.523 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor
  3870. 15:18:14.533 [restartedMain] INFO o.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  3871. 15:18:14.533 [restartedMain] INFO org.quartz.core.QuartzScheduler - Quartz Scheduler v.2.3.2 created.
  3872. 15:18:14.534 [restartedMain] INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized.
  3873. 15:18:14.534 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
  3874. Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  3875. NOT STARTED.
  3876. Currently in standby mode.
  3877. Number of jobs executed: 0
  3878. Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  3879. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
  3880. 15:18:14.534 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  3881. 15:18:14.534 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2
  3882. 15:18:14.534 [restartedMain] INFO org.quartz.core.QuartzScheduler - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@4830521
  3883. 15:18:16.219 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer - LiveReload server is running on port 35729
  3884. 15:18:16.225 [restartedMain] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 15 endpoint(s) beneath base path '/actuator/z'
  3885. 15:18:16.368 [restartedMain] INFO io.undertow.websockets.jsr - UT026003: Adding annotated server endpoint class com.zhyc.xps.common.ws.WebSocketServer for path /websocket/link
  3886. 15:18:16.400 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  3887. 15:18:16.400 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 1 subscriber(s).
  3888. 15:18:16.400 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - started bean '_org.springframework.integration.errorLogger'
  3889. 15:18:16.421 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  3890. 15:18:16.429 [restartedMain] INFO org.xnio - XNIO version 3.8.8.Final
  3891. 15:18:16.439 [restartedMain] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.8.Final
  3892. 15:18:16.469 [restartedMain] INFO org.jboss.threads - JBoss Threads version 3.5.0.Final
  3893. 15:18:16.520 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 1788 (http)
  3894. 15:18:16.521 [restartedMain] INFO o.s.s.quartz.SchedulerFactoryBean - Starting Quartz Scheduler now
  3895. 15:18:16.522 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  3896. 15:18:16.546 [restartedMain] INFO com.zhyc.xps.XPSApplication - Started XPSApplication in 7.826 seconds (process running for 8.815)
  3897. 15:18:16.548 [restartedMain] INFO com.zhyc.xps.sys.job.InitSystemJob - 初始化系统定时任务
  3898. 15:18:16.556 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Starting...
  3899. 15:18:16.879 [restartedMain] INFO p6spy - 2023-09-07 15:18:16 | Time Consuming: 13 ms | Connection: statement-0 | SQL: SELECT 1
  3900. 15:18:16.883 [restartedMain] INFO com.zaxxer.hikari.pool.HikariPool - DatebookHikariCP - Added connection com.p6spy.engine.wrapper.ConnectionWrapper@48601819
  3901. 15:18:16.894 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Start completed.
  3902. 15:18:16.964 [restartedMain] INFO p6spy - 2023-09-07 15:18:16 | Time Consuming: 6 ms | Connection: statement-0 | SQL: SELECT
  3903. A.job_id,
  3904. A.job_title,
  3905. A.job_desc,
  3906. A.status,
  3907. A.job_type,
  3908. A.job_code,
  3909. A.job_cron,
  3910. A.job_class_id,
  3911. B.job_class,
  3912. A.cycle_title,
  3913. A.cycle_period,
  3914. A.cycle_unit
  3915. FROM job AS A
  3916. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  3917. WHERE A.deleted_flag = 0
  3918. AND A.status = 1
  3919. ORDER BY A.job_id ASC
  3920. 15:18:16.985 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  3921. 15:18:16.987 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  3922. 15:18:17.649 [RMI TCP Connection(2)-192.168.3.5] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
  3923. 15:18:17.649 [RMI TCP Connection(2)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
  3924. 15:18:17.654 [RMI TCP Connection(2)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 5 ms
  3925. 15:18:17.655 [RMI TCP Connection(1)-192.168.3.5] INFO p6spy - 2023-09-07 15:18:17 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  3926. 15:18:17.669 [RMI TCP Connection(1)-192.168.3.5] INFO p6spy - 2023-09-07 15:18:17 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  3927. 15:19:11.451 [XNIO-1 task-3] INFO p6spy - 2023-09-07 15:19:11 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  3928. 15:19:11.452 [XNIO-1 task-2] INFO p6spy - 2023-09-07 15:19:11 | Time Consuming: 4 ms | Connection: statement-1 | SQL: SELECT 1
  3929. 15:19:11.463 [XNIO-1 task-2] INFO p6spy - 2023-09-07 15:19:11 | Time Consuming: 5 ms | Connection: statement-1 | SQL: SELECT *
  3930. FROM goaf_devinfo
  3931. where oc_id = 406283
  3932. 15:19:11.478 [XNIO-1 task-2] INFO p6spy - 2023-09-07 15:19:11 | Time Consuming: 9 ms | Connection: statement-1 | SQL: SELECT *
  3933. FROM goaf_sensor
  3934. where oc_id = 406283
  3935. AND goaf_dev_name = 'other'
  3936. 15:19:11.487 [XNIO-1 task-2] INFO p6spy - 2023-09-07 15:19:11 | Time Consuming: 5 ms | Connection: statement-1 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  3937. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  3938. FROM goaf_sensor AS C
  3939. LEFT JOIN
  3940. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  3941. FROM goaf_sensordata
  3942. ORDER BY goaf_datareport_time DESC
  3943. LIMIT 1) AS A ON A.goaf_sensor_id = C.goaf_sensor_id
  3944. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  3945. WHERE C.goaf_sensor_id = 442129
  3946. 15:19:11.495 [XNIO-1 task-2] INFO p6spy - 2023-09-07 15:19:11 | Time Consuming: 6 ms | Connection: statement-1 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  3947. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  3948. FROM goaf_sensor AS C
  3949. LEFT JOIN
  3950. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  3951. FROM goaf_sensordata
  3952. ORDER BY goaf_datareport_time DESC
  3953. LIMIT 1) AS A ON A.goaf_sensor_id = C.goaf_sensor_id
  3954. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  3955. WHERE C.goaf_sensor_id = 442198
  3956. 15:19:11.503 [XNIO-1 task-2] INFO p6spy - 2023-09-07 15:19:11 | Time Consuming: 5 ms | Connection: statement-1 | SQL: SELECT *
  3957. FROM goaf_sensor
  3958. where oc_id = 406283
  3959. AND goaf_dev_name = 'waterpump'
  3960. 15:19:11.505 [XNIO-1 task-3] INFO p6spy - 2023-09-07 15:19:11 | Time Consuming: 45 ms | Connection: statement-0 | SQL: SELECT count(*)
  3961. FROM msg AS M
  3962. WHERE M.oc_id = 406283
  3963. AND (
  3964. EXISTS (
  3965. SELECT 1 FROM msg_to TT
  3966. WHERE M.oc_id = TT.oc_id AND M.msg_id = TT.msg_id AND TT.msg_to_id = 406283 AND TT.status=0
  3967. ) OR
  3968. EXISTS (
  3969. SELECT 1 FROM msg_cc CC
  3970. WHERE M.oc_id = CC.oc_id AND M.msg_id = CC.msg_id AND CC.msg_cc_id = 406283 AND CC.status=0
  3971. )
  3972. )
  3973. 15:19:11.511 [XNIO-1 task-2] INFO p6spy - 2023-09-07 15:19:11 | Time Consuming: 4 ms | Connection: statement-1 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  3974. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  3975. FROM goaf_sensor AS C
  3976. LEFT JOIN
  3977. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  3978. FROM goaf_sensordata
  3979. ORDER BY goaf_datareport_time DESC
  3980. LIMIT 1) AS A ON A.goaf_sensor_id = C.goaf_sensor_id
  3981. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  3982. WHERE C.goaf_sensor_id = 442136
  3983. 15:19:11.517 [XNIO-1 task-2] INFO p6spy - 2023-09-07 15:19:11 | Time Consuming: 4 ms | Connection: statement-1 | SQL: SELECT *
  3984. FROM goaf_sensor
  3985. where oc_id = 406283
  3986. AND goaf_dev_name = 'machinery'
  3987. 15:19:11.523 [XNIO-1 task-2] INFO p6spy - 2023-09-07 15:19:11 | Time Consuming: 4 ms | Connection: statement-1 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  3988. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  3989. FROM goaf_sensor AS C
  3990. LEFT JOIN
  3991. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  3992. FROM goaf_sensordata
  3993. ORDER BY goaf_datareport_time DESC
  3994. LIMIT 1) AS A ON A.goaf_sensor_id = C.goaf_sensor_id
  3995. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  3996. WHERE C.goaf_sensor_id = 442137
  3997. 15:19:11.531 [XNIO-1 task-2] INFO p6spy - 2023-09-07 15:19:11 | Time Consuming: 6 ms | Connection: statement-1 | SQL: SELECT *
  3998. FROM goaf_sensor
  3999. where oc_id = 406283
  4000. AND goaf_dev_name = 'compress'
  4001. 15:19:11.538 [XNIO-1 task-2] INFO p6spy - 2023-09-07 15:19:11 | Time Consuming: 3 ms | Connection: statement-1 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  4002. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  4003. FROM goaf_sensor AS C
  4004. LEFT JOIN
  4005. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  4006. FROM goaf_sensordata
  4007. ORDER BY goaf_datareport_time DESC
  4008. LIMIT 1) AS A ON A.goaf_sensor_id = C.goaf_sensor_id
  4009. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  4010. WHERE C.goaf_sensor_id = 442135
  4011. 15:19:11.544 [XNIO-1 task-2] INFO p6spy - 2023-09-07 15:19:11 | Time Consuming: 5 ms | Connection: statement-1 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  4012. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  4013. FROM goaf_sensor AS C
  4014. LEFT JOIN
  4015. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  4016. FROM goaf_sensordata
  4017. ORDER BY goaf_datareport_time DESC
  4018. LIMIT 1) AS A ON A.goaf_sensor_id = C.goaf_sensor_id
  4019. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  4020. WHERE C.goaf_sensor_id = 442139
  4021. 15:20:23.593 [XNIO-1 task-2] INFO p6spy - 2023-09-07 15:20:23 | Time Consuming: 4 ms | Connection: statement-1 | SQL: SELECT 1
  4022. 15:20:23.685 [XNIO-1 task-2] INFO p6spy - 2023-09-07 15:20:23 | Time Consuming: 4 ms | Connection: statement-1 | SQL: SELECT count(0) FROM goaf_devinfo WHERE oc_id = 406283
  4023. 15:20:23.694 [XNIO-1 task-2] INFO p6spy - 2023-09-07 15:20:23 | Time Consuming: 4 ms | Connection: statement-1 | SQL: SELECT *
  4024. FROM goaf_devinfo
  4025. where oc_id = 406283
  4026. LIMIT 10
  4027. 15:20:23.701 [XNIO-1 task-2] INFO p6spy - 2023-09-07 15:20:23 | Time Consuming: 4 ms | Connection: statement-1 | SQL: SELECT *
  4028. FROM goaf_sensor
  4029. where oc_id = 406283
  4030. AND goaf_dev_name = 'other'
  4031. 15:20:23.712 [XNIO-1 task-2] INFO p6spy - 2023-09-07 15:20:23 | Time Consuming: 6 ms | Connection: statement-1 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  4032. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  4033. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  4034. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  4035. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  4036. FROM goaf_sensordata AS A
  4037. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  4038. WHERE A.oc_id = 406283
  4039. AND A.goaf_sensor_id = 442129
  4040. ORDER BY A.goaf_datareport_time DESC
  4041. LIMIT 1
  4042. 15:20:23.721 [XNIO-1 task-2] INFO p6spy - 2023-09-07 15:20:23 | Time Consuming: 6 ms | Connection: statement-1 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  4043. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  4044. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  4045. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  4046. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  4047. FROM goaf_sensordata AS A
  4048. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  4049. WHERE A.oc_id = 406283
  4050. AND A.goaf_sensor_id = 442198
  4051. ORDER BY A.goaf_datareport_time DESC
  4052. LIMIT 1
  4053. 15:20:23.727 [XNIO-1 task-2] INFO p6spy - 2023-09-07 15:20:23 | Time Consuming: 4 ms | Connection: statement-1 | SQL: SELECT *
  4054. FROM goaf_sensor
  4055. where oc_id = 406283
  4056. AND goaf_dev_name = 'waterpump'
  4057. 15:20:23.733 [XNIO-1 task-2] INFO p6spy - 2023-09-07 15:20:23 | Time Consuming: 4 ms | Connection: statement-1 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  4058. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  4059. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  4060. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  4061. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  4062. FROM goaf_sensordata AS A
  4063. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  4064. WHERE A.oc_id = 406283
  4065. AND A.goaf_sensor_id = 442136
  4066. ORDER BY A.goaf_datareport_time DESC
  4067. LIMIT 1
  4068. 15:20:23.739 [XNIO-1 task-2] INFO p6spy - 2023-09-07 15:20:23 | Time Consuming: 4 ms | Connection: statement-1 | SQL: SELECT *
  4069. FROM goaf_sensor
  4070. where oc_id = 406283
  4071. AND goaf_dev_name = 'machinery'
  4072. 15:20:23.745 [XNIO-1 task-2] INFO p6spy - 2023-09-07 15:20:23 | Time Consuming: 4 ms | Connection: statement-1 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  4073. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  4074. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  4075. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  4076. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  4077. FROM goaf_sensordata AS A
  4078. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  4079. WHERE A.oc_id = 406283
  4080. AND A.goaf_sensor_id = 442137
  4081. ORDER BY A.goaf_datareport_time DESC
  4082. LIMIT 1
  4083. 15:20:23.751 [XNIO-1 task-2] INFO p6spy - 2023-09-07 15:20:23 | Time Consuming: 4 ms | Connection: statement-1 | SQL: SELECT *
  4084. FROM goaf_sensor
  4085. where oc_id = 406283
  4086. AND goaf_dev_name = 'compress'
  4087. 15:20:23.759 [XNIO-1 task-2] INFO p6spy - 2023-09-07 15:20:23 | Time Consuming: 5 ms | Connection: statement-1 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  4088. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  4089. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  4090. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  4091. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  4092. FROM goaf_sensordata AS A
  4093. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  4094. WHERE A.oc_id = 406283
  4095. AND A.goaf_sensor_id = 442135
  4096. ORDER BY A.goaf_datareport_time DESC
  4097. LIMIT 1
  4098. 15:20:23.766 [XNIO-1 task-2] INFO p6spy - 2023-09-07 15:20:23 | Time Consuming: 5 ms | Connection: statement-1 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  4099. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  4100. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  4101. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  4102. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  4103. FROM goaf_sensordata AS A
  4104. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  4105. WHERE A.oc_id = 406283
  4106. AND A.goaf_sensor_id = 442139
  4107. ORDER BY A.goaf_datareport_time DESC
  4108. LIMIT 1
  4109. 15:21:30.419 [XNIO-1 task-2] INFO p6spy - 2023-09-07 15:21:30 | Time Consuming: 4 ms | Connection: statement-1 | SQL: SELECT 1
  4110. 15:21:30.428 [XNIO-1 task-2] INFO p6spy - 2023-09-07 15:21:30 | Time Consuming: 4 ms | Connection: statement-1 | SQL: SELECT
  4111. client_id,
  4112. client_title,
  4113. client_app_id,
  4114. client_app_key,
  4115. client_app_secret,
  4116. client_desc,
  4117. status,
  4118. is_fixed
  4119. FROM client
  4120. WHERE deleted_flag = 0
  4121. AND client_app_id = '10001'
  4122. AND client_app_key = '82a8bf439373e305'
  4123. 15:21:30.444 [XNIO-1 task-2] INFO p6spy - 2023-09-07 15:21:30 | Time Consuming: 5 ms | Connection: statement-1 | SQL: SELECT
  4124. A.oc_id,
  4125. B.oc_type_id,
  4126. B.oc_name,
  4127. A.account_id,
  4128. A.account_name,
  4129. A.account_real_name,
  4130. A.password,
  4131. A.account_type,
  4132. A.account_staff_no,
  4133. A.account_phone,
  4134. A.account_last_ip,
  4135. A.account_loc,
  4136. A.status,
  4137. A.account_avatar,
  4138. A.account_photo,
  4139. A.account_real_name,
  4140. A.account_intro,
  4141. A.wx_id,
  4142. A.is_fixed
  4143. FROM account AS A
  4144. LEFT JOIN oc AS B ON (A.oc_id = B.oc_id )
  4145. WHERE A.deleted_flag = 0
  4146. AND (A.account_name = 'sxky'
  4147. OR A.account_phone = 'sxky'
  4148. OR A.account_mail = 'sxky'
  4149. OR A.account_staff_no = 'sxky')
  4150. 15:21:30.451 [XNIO-1 task-2] INFO p6spy - 2023-09-07 15:21:30 | Time Consuming: 3 ms | Connection: statement-1 | SQL: SELECT
  4151. A.oc_id,
  4152. A.oc_name,
  4153. A.oc_type_id,
  4154. A.root_id,
  4155. A.parent_id,
  4156. A.admin_id,
  4157. B.account_name AS admin_name,
  4158. A.group_id,
  4159. A.node_left,
  4160. A.node_right,
  4161. A.node_level,
  4162. A.is_leaf,
  4163. A.status,
  4164. A.if_lic
  4165. FROM oc AS A
  4166. LEFT JOIN account AS B ON (A.oc_id = B.oc_id AND A.admin_id = B.account_id)
  4167. WHERE A.oc_id = 406283
  4168. 15:21:30.455 [XNIO-1 task-2] INFO p6spy - 2023-09-07 15:21:30 | Time Consuming: 3 ms | Connection: statement-1 | SQL: SELECT
  4169. A.rm_id,
  4170. A.role_id,
  4171. B.role_type_id,
  4172. B.role_code,
  4173. B.role_name,
  4174. A.account_id
  4175. FROM s_role_member AS A
  4176. LEFT JOIN s_role AS B ON (A.role_id = B.role_id)
  4177. WHERE account_id = 406283
  4178. LIMIT 1
  4179. 15:21:30.467 [XNIO-1 task-2] INFO p6spy - 2023-09-07 15:21:30 | Time Consuming: 11 ms | Connection: statement-1 | SQL: SELECT
  4180. A.gm_id,
  4181. A.oc_id,
  4182. A.group_id,
  4183. B.group_name,
  4184. B.node_left ,
  4185. B.node_right,
  4186. A.account_id
  4187. FROM s_group_member AS A
  4188. LEFT JOIN s_group AS B ON (A.oc_id = B.oc_id AND A.group_id = B.group_id)
  4189. WHERE B.deleted_flag = 0
  4190. AND A.oc_id = 406283
  4191. AND A.account_id = 406283
  4192. LIMIT 1
  4193. 15:21:30.474 [XNIO-1 task-2] INFO p6spy - 2023-09-07 15:21:30 | Time Consuming: 5 ms | Connection: statement-1 | SQL: SELECT
  4194. A.gmp_id,
  4195. A.oc_id,
  4196. A.group_id,
  4197. B.group_name,
  4198. A.account_id,
  4199. D.account_name,
  4200. D.account_real_name,
  4201. A.position_id,
  4202. C.position_name
  4203. FROM s_group_member_position A
  4204. LEFT JOIN s_group B ON (A.oc_id = B.oc_id AND A.group_id = B.group_id)
  4205. LEFT JOIN s_position C ON (A.oc_id = C.oc_id AND A.position_id = C.position_id)
  4206. LEFT JOIN account D ON (A.oc_id = D.oc_id AND A.account_id = D.account_id)
  4207. WHERE A.deleted_flag = 0
  4208. AND A.oc_id = 406283
  4209. AND A.group_id = 406283
  4210. AND A.account_id = 406283
  4211. LIMIT 1
  4212. 15:21:30.478 [XNIO-1 task-2] INFO p6spy - 2023-09-07 15:21:30 | Time Consuming: 3 ms | Connection: statement-1 | SQL: SELECT
  4213. A.gmpg_id,
  4214. A.oc_id,
  4215. A.group_id,
  4216. A.account_id,
  4217. A.position_id,
  4218. A.grant_group_id,
  4219. B.group_name AS grant_group_name
  4220. FROM s_group_member_position_grant A
  4221. LEFT JOIN s_group B ON(A.oc_id = B.oc_id AND A.grant_group_id = B.group_id)
  4222. WHERE A.deleted_flag = 0
  4223. AND A.oc_id = 406283
  4224. AND A.group_id = 406283
  4225. AND A.account_id = 406283
  4226. AND A.position_id = 406283
  4227. LIMIT 1
  4228. 15:21:30.531 [XNIO-1 task-3] INFO p6spy - 2023-09-07 15:21:30 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  4229. 15:21:30.539 [XNIO-1 task-3] INFO p6spy - 2023-09-07 15:21:30 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT
  4230. client_id,
  4231. client_title,
  4232. client_app_id,
  4233. client_app_key,
  4234. client_app_secret,
  4235. client_desc,
  4236. status,
  4237. is_fixed
  4238. FROM client
  4239. WHERE deleted_flag = 0
  4240. AND client_app_id = '10001'
  4241. AND client_app_key = '82a8bf439373e305'
  4242. 15:21:30.557 [XNIO-1 task-3] INFO p6spy - 2023-09-07 15:21:30 | Time Consuming: 6 ms | Connection: statement-0 | SQL: SELECT
  4243. A.client_id,
  4244. A.role_id,
  4245. A.permit_id,
  4246. A.permit_title,
  4247. A.permit_code,
  4248. A.permit_entry,
  4249. A.permit_desc,
  4250. A.permit_type,
  4251. A.parent_id,
  4252. A.root_id,
  4253. A.sort_no,
  4254. A.is_home
  4255. FROM s_role_permit AS A
  4256. WHERE 1 = 1
  4257. AND A.client_id = 2
  4258. AND A.role_id = 6
  4259. ORDER BY A.parent_id ASC ,A.sort_no ASC
  4260. 15:21:30.867 [XNIO-1 task-3] INFO p6spy - 2023-09-07 15:21:30 | Time Consuming: 29 ms | Connection: statement-0 | SQL: SELECT count(*)
  4261. FROM msg AS M
  4262. WHERE M.oc_id = 406283
  4263. AND (
  4264. EXISTS (
  4265. SELECT 1 FROM msg_to TT
  4266. WHERE M.oc_id = TT.oc_id AND M.msg_id = TT.msg_id AND TT.msg_to_id = 406283 AND TT.status=0
  4267. ) OR
  4268. EXISTS (
  4269. SELECT 1 FROM msg_cc CC
  4270. WHERE M.oc_id = CC.oc_id AND M.msg_id = CC.msg_id AND CC.msg_cc_id = 406283 AND CC.status=0
  4271. )
  4272. )
  4273. 15:21:31.338 [XNIO-1 task-3] INFO p6spy - 2023-09-07 15:21:31 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT *
  4274. FROM goaf_devinfo
  4275. where oc_id = 406283
  4276. 15:21:31.343 [XNIO-1 task-3] INFO p6spy - 2023-09-07 15:21:31 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT *
  4277. FROM goaf_sensor
  4278. where oc_id = 406283
  4279. AND goaf_dev_name = 'other'
  4280. 15:21:31.348 [XNIO-1 task-3] INFO p6spy - 2023-09-07 15:21:31 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  4281. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  4282. FROM goaf_sensor AS C
  4283. LEFT JOIN
  4284. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  4285. FROM goaf_sensordata
  4286. ORDER BY goaf_datareport_time DESC
  4287. LIMIT 1) AS A ON A.goaf_sensor_id = C.goaf_sensor_id
  4288. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  4289. WHERE C.goaf_sensor_id = 442129
  4290. 15:21:31.353 [XNIO-1 task-3] INFO p6spy - 2023-09-07 15:21:31 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  4291. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  4292. FROM goaf_sensor AS C
  4293. LEFT JOIN
  4294. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  4295. FROM goaf_sensordata
  4296. ORDER BY goaf_datareport_time DESC
  4297. LIMIT 1) AS A ON A.goaf_sensor_id = C.goaf_sensor_id
  4298. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  4299. WHERE C.goaf_sensor_id = 442198
  4300. 15:21:31.358 [XNIO-1 task-3] INFO p6spy - 2023-09-07 15:21:31 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT *
  4301. FROM goaf_sensor
  4302. where oc_id = 406283
  4303. AND goaf_dev_name = 'waterpump'
  4304. 15:21:31.362 [XNIO-1 task-3] INFO p6spy - 2023-09-07 15:21:31 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  4305. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  4306. FROM goaf_sensor AS C
  4307. LEFT JOIN
  4308. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  4309. FROM goaf_sensordata
  4310. ORDER BY goaf_datareport_time DESC
  4311. LIMIT 1) AS A ON A.goaf_sensor_id = C.goaf_sensor_id
  4312. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  4313. WHERE C.goaf_sensor_id = 442136
  4314. 15:21:31.367 [XNIO-1 task-3] INFO p6spy - 2023-09-07 15:21:31 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT *
  4315. FROM goaf_sensor
  4316. where oc_id = 406283
  4317. AND goaf_dev_name = 'machinery'
  4318. 15:21:31.374 [XNIO-1 task-3] INFO p6spy - 2023-09-07 15:21:31 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  4319. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  4320. FROM goaf_sensor AS C
  4321. LEFT JOIN
  4322. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  4323. FROM goaf_sensordata
  4324. ORDER BY goaf_datareport_time DESC
  4325. LIMIT 1) AS A ON A.goaf_sensor_id = C.goaf_sensor_id
  4326. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  4327. WHERE C.goaf_sensor_id = 442137
  4328. 15:21:31.378 [XNIO-1 task-3] INFO p6spy - 2023-09-07 15:21:31 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT *
  4329. FROM goaf_sensor
  4330. where oc_id = 406283
  4331. AND goaf_dev_name = 'compress'
  4332. 15:21:31.383 [XNIO-1 task-3] INFO p6spy - 2023-09-07 15:21:31 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  4333. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  4334. FROM goaf_sensor AS C
  4335. LEFT JOIN
  4336. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  4337. FROM goaf_sensordata
  4338. ORDER BY goaf_datareport_time DESC
  4339. LIMIT 1) AS A ON A.goaf_sensor_id = C.goaf_sensor_id
  4340. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  4341. WHERE C.goaf_sensor_id = 442135
  4342. 15:21:31.387 [XNIO-1 task-3] INFO p6spy - 2023-09-07 15:21:31 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  4343. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  4344. FROM goaf_sensor AS C
  4345. LEFT JOIN
  4346. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  4347. FROM goaf_sensordata
  4348. ORDER BY goaf_datareport_time DESC
  4349. LIMIT 1) AS A ON A.goaf_sensor_id = C.goaf_sensor_id
  4350. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  4351. WHERE C.goaf_sensor_id = 442139
  4352. 15:21:34.707 [XNIO-1 task-3] INFO p6spy - 2023-09-07 15:21:34 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  4353. 15:21:34.714 [XNIO-1 task-3] INFO p6spy - 2023-09-07 15:21:34 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT *
  4354. FROM goaf_devinfo
  4355. where oc_id = 406283
  4356. 15:21:34.719 [XNIO-1 task-3] INFO p6spy - 2023-09-07 15:21:34 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT *
  4357. FROM goaf_sensor
  4358. where oc_id = 406283
  4359. AND goaf_dev_name = 'other'
  4360. 15:21:34.723 [XNIO-1 task-3] INFO p6spy - 2023-09-07 15:21:34 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  4361. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  4362. FROM goaf_sensor AS C
  4363. LEFT JOIN
  4364. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  4365. FROM goaf_sensordata
  4366. ORDER BY goaf_datareport_time DESC
  4367. LIMIT 1) AS A ON A.goaf_sensor_id = C.goaf_sensor_id
  4368. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  4369. WHERE C.goaf_sensor_id = 442129
  4370. 15:21:34.728 [XNIO-1 task-3] INFO p6spy - 2023-09-07 15:21:34 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  4371. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  4372. FROM goaf_sensor AS C
  4373. LEFT JOIN
  4374. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  4375. FROM goaf_sensordata
  4376. ORDER BY goaf_datareport_time DESC
  4377. LIMIT 1) AS A ON A.goaf_sensor_id = C.goaf_sensor_id
  4378. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  4379. WHERE C.goaf_sensor_id = 442198
  4380. 15:21:34.732 [XNIO-1 task-3] INFO p6spy - 2023-09-07 15:21:34 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT *
  4381. FROM goaf_sensor
  4382. where oc_id = 406283
  4383. AND goaf_dev_name = 'waterpump'
  4384. 15:21:34.737 [XNIO-1 task-3] INFO p6spy - 2023-09-07 15:21:34 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  4385. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  4386. FROM goaf_sensor AS C
  4387. LEFT JOIN
  4388. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  4389. FROM goaf_sensordata
  4390. ORDER BY goaf_datareport_time DESC
  4391. LIMIT 1) AS A ON A.goaf_sensor_id = C.goaf_sensor_id
  4392. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  4393. WHERE C.goaf_sensor_id = 442136
  4394. 15:21:34.741 [XNIO-1 task-3] INFO p6spy - 2023-09-07 15:21:34 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT *
  4395. FROM goaf_sensor
  4396. where oc_id = 406283
  4397. AND goaf_dev_name = 'machinery'
  4398. 15:21:34.746 [XNIO-1 task-3] INFO p6spy - 2023-09-07 15:21:34 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  4399. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  4400. FROM goaf_sensor AS C
  4401. LEFT JOIN
  4402. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  4403. FROM goaf_sensordata
  4404. ORDER BY goaf_datareport_time DESC
  4405. LIMIT 1) AS A ON A.goaf_sensor_id = C.goaf_sensor_id
  4406. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  4407. WHERE C.goaf_sensor_id = 442137
  4408. 15:21:34.751 [XNIO-1 task-3] INFO p6spy - 2023-09-07 15:21:34 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT *
  4409. FROM goaf_sensor
  4410. where oc_id = 406283
  4411. AND goaf_dev_name = 'compress'
  4412. 15:21:34.754 [XNIO-1 task-3] INFO p6spy - 2023-09-07 15:21:34 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  4413. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  4414. FROM goaf_sensor AS C
  4415. LEFT JOIN
  4416. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  4417. FROM goaf_sensordata
  4418. ORDER BY goaf_datareport_time DESC
  4419. LIMIT 1) AS A ON A.goaf_sensor_id = C.goaf_sensor_id
  4420. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  4421. WHERE C.goaf_sensor_id = 442135
  4422. 15:21:34.759 [XNIO-1 task-3] INFO p6spy - 2023-09-07 15:21:34 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  4423. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  4424. FROM goaf_sensor AS C
  4425. LEFT JOIN
  4426. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  4427. FROM goaf_sensordata
  4428. ORDER BY goaf_datareport_time DESC
  4429. LIMIT 1) AS A ON A.goaf_sensor_id = C.goaf_sensor_id
  4430. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  4431. WHERE C.goaf_sensor_id = 442139
  4432. 15:21:36.493 [XNIO-1 task-3] INFO p6spy - 2023-09-07 15:21:36 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  4433. 15:21:36.499 [XNIO-1 task-3] INFO p6spy - 2023-09-07 15:21:36 | Time Consuming: 2 ms | Connection: statement-0 | SQL: SELECT *
  4434. FROM goaf_devinfo
  4435. where oc_id = 406283
  4436. 15:21:36.503 [XNIO-1 task-3] INFO p6spy - 2023-09-07 15:21:36 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT *
  4437. FROM goaf_sensor
  4438. where oc_id = 406283
  4439. AND goaf_dev_name = 'other'
  4440. 15:21:36.508 [XNIO-1 task-3] INFO p6spy - 2023-09-07 15:21:36 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  4441. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  4442. FROM goaf_sensor AS C
  4443. LEFT JOIN
  4444. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  4445. FROM goaf_sensordata
  4446. ORDER BY goaf_datareport_time DESC
  4447. LIMIT 1) AS A ON A.goaf_sensor_id = C.goaf_sensor_id
  4448. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  4449. WHERE C.goaf_sensor_id = 442129
  4450. 15:21:36.512 [XNIO-1 task-3] INFO p6spy - 2023-09-07 15:21:36 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  4451. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  4452. FROM goaf_sensor AS C
  4453. LEFT JOIN
  4454. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  4455. FROM goaf_sensordata
  4456. ORDER BY goaf_datareport_time DESC
  4457. LIMIT 1) AS A ON A.goaf_sensor_id = C.goaf_sensor_id
  4458. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  4459. WHERE C.goaf_sensor_id = 442198
  4460. 15:21:36.516 [XNIO-1 task-3] INFO p6spy - 2023-09-07 15:21:36 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT *
  4461. FROM goaf_sensor
  4462. where oc_id = 406283
  4463. AND goaf_dev_name = 'waterpump'
  4464. 15:21:36.520 [XNIO-1 task-3] INFO p6spy - 2023-09-07 15:21:36 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  4465. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  4466. FROM goaf_sensor AS C
  4467. LEFT JOIN
  4468. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  4469. FROM goaf_sensordata
  4470. ORDER BY goaf_datareport_time DESC
  4471. LIMIT 1) AS A ON A.goaf_sensor_id = C.goaf_sensor_id
  4472. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  4473. WHERE C.goaf_sensor_id = 442136
  4474. 15:21:36.524 [XNIO-1 task-3] INFO p6spy - 2023-09-07 15:21:36 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT *
  4475. FROM goaf_sensor
  4476. where oc_id = 406283
  4477. AND goaf_dev_name = 'machinery'
  4478. 15:21:36.528 [XNIO-1 task-3] INFO p6spy - 2023-09-07 15:21:36 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  4479. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  4480. FROM goaf_sensor AS C
  4481. LEFT JOIN
  4482. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  4483. FROM goaf_sensordata
  4484. ORDER BY goaf_datareport_time DESC
  4485. LIMIT 1) AS A ON A.goaf_sensor_id = C.goaf_sensor_id
  4486. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  4487. WHERE C.goaf_sensor_id = 442137
  4488. 15:21:36.532 [XNIO-1 task-3] INFO p6spy - 2023-09-07 15:21:36 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT *
  4489. FROM goaf_sensor
  4490. where oc_id = 406283
  4491. AND goaf_dev_name = 'compress'
  4492. 15:21:36.536 [XNIO-1 task-3] INFO p6spy - 2023-09-07 15:21:36 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  4493. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  4494. FROM goaf_sensor AS C
  4495. LEFT JOIN
  4496. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  4497. FROM goaf_sensordata
  4498. ORDER BY goaf_datareport_time DESC
  4499. LIMIT 1) AS A ON A.goaf_sensor_id = C.goaf_sensor_id
  4500. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  4501. WHERE C.goaf_sensor_id = 442135
  4502. 15:21:36.540 [XNIO-1 task-3] INFO p6spy - 2023-09-07 15:21:36 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  4503. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  4504. FROM goaf_sensor AS C
  4505. LEFT JOIN
  4506. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  4507. FROM goaf_sensordata
  4508. ORDER BY goaf_datareport_time DESC
  4509. LIMIT 1) AS A ON A.goaf_sensor_id = C.goaf_sensor_id
  4510. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  4511. WHERE C.goaf_sensor_id = 442139
  4512. 15:22:29.201 [XNIO-1 task-3] INFO p6spy - 2023-09-07 15:22:29 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  4513. 15:22:29.201 [XNIO-1 task-2] INFO p6spy - 2023-09-07 15:22:29 | Time Consuming: 4 ms | Connection: statement-1 | SQL: SELECT 1
  4514. 15:22:29.212 [XNIO-1 task-2] INFO p6spy - 2023-09-07 15:22:29 | Time Consuming: 4 ms | Connection: statement-1 | SQL: SELECT *
  4515. FROM goaf_baseinfo
  4516. WHERE oc_id = 406283
  4517. 15:22:29.212 [XNIO-1 task-3] INFO p6spy - 2023-09-07 15:22:29 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT count(0) FROM goaf_devinfo WHERE oc_id = 406283
  4518. 15:22:29.217 [XNIO-1 task-3] INFO p6spy - 2023-09-07 15:22:29 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT *
  4519. FROM goaf_devinfo
  4520. where oc_id = 406283
  4521. LIMIT 10
  4522. 15:22:31.939 [XNIO-1 task-2] INFO p6spy - 2023-09-07 15:22:31 | Time Consuming: 3 ms | Connection: statement-1 | SQL: SELECT 1
  4523. 15:22:31.948 [XNIO-1 task-2] INFO p6spy - 2023-09-07 15:22:31 | Time Consuming: 3 ms | Connection: statement-1 | SQL: SELECT count(0) FROM goaf_devinfo WHERE oc_id = 406283
  4524. 15:22:31.954 [XNIO-1 task-2] INFO p6spy - 2023-09-07 15:22:31 | Time Consuming: 5 ms | Connection: statement-1 | SQL: SELECT *
  4525. FROM goaf_devinfo
  4526. where oc_id = 406283
  4527. LIMIT 10
  4528. 15:22:31.960 [XNIO-1 task-2] INFO p6spy - 2023-09-07 15:22:31 | Time Consuming: 4 ms | Connection: statement-1 | SQL: SELECT *
  4529. FROM goaf_sensor
  4530. where oc_id = 406283
  4531. AND goaf_dev_name = 'other'
  4532. 15:22:31.966 [XNIO-1 task-2] INFO p6spy - 2023-09-07 15:22:31 | Time Consuming: 4 ms | Connection: statement-1 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  4533. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  4534. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  4535. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  4536. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  4537. FROM goaf_sensordata AS A
  4538. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  4539. WHERE A.oc_id = 406283
  4540. AND A.goaf_sensor_id = 442129
  4541. ORDER BY A.goaf_datareport_time DESC
  4542. LIMIT 1
  4543. 15:22:31.975 [XNIO-1 task-2] INFO p6spy - 2023-09-07 15:22:31 | Time Consuming: 8 ms | Connection: statement-1 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  4544. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  4545. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  4546. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  4547. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  4548. FROM goaf_sensordata AS A
  4549. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  4550. WHERE A.oc_id = 406283
  4551. AND A.goaf_sensor_id = 442198
  4552. ORDER BY A.goaf_datareport_time DESC
  4553. LIMIT 1
  4554. 15:22:31.981 [XNIO-1 task-2] INFO p6spy - 2023-09-07 15:22:31 | Time Consuming: 5 ms | Connection: statement-1 | SQL: SELECT *
  4555. FROM goaf_sensor
  4556. where oc_id = 406283
  4557. AND goaf_dev_name = 'waterpump'
  4558. 15:22:31.987 [XNIO-1 task-2] INFO p6spy - 2023-09-07 15:22:31 | Time Consuming: 5 ms | Connection: statement-1 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  4559. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  4560. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  4561. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  4562. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  4563. FROM goaf_sensordata AS A
  4564. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  4565. WHERE A.oc_id = 406283
  4566. AND A.goaf_sensor_id = 442136
  4567. ORDER BY A.goaf_datareport_time DESC
  4568. LIMIT 1
  4569. 15:22:31.993 [XNIO-1 task-2] INFO p6spy - 2023-09-07 15:22:31 | Time Consuming: 4 ms | Connection: statement-1 | SQL: SELECT *
  4570. FROM goaf_sensor
  4571. where oc_id = 406283
  4572. AND goaf_dev_name = 'machinery'
  4573. 15:22:31.999 [XNIO-1 task-2] INFO p6spy - 2023-09-07 15:22:31 | Time Consuming: 4 ms | Connection: statement-1 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  4574. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  4575. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  4576. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  4577. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  4578. FROM goaf_sensordata AS A
  4579. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  4580. WHERE A.oc_id = 406283
  4581. AND A.goaf_sensor_id = 442137
  4582. ORDER BY A.goaf_datareport_time DESC
  4583. LIMIT 1
  4584. 15:22:32.005 [XNIO-1 task-2] INFO p6spy - 2023-09-07 15:22:32 | Time Consuming: 4 ms | Connection: statement-1 | SQL: SELECT *
  4585. FROM goaf_sensor
  4586. where oc_id = 406283
  4587. AND goaf_dev_name = 'compress'
  4588. 15:22:32.011 [XNIO-1 task-2] INFO p6spy - 2023-09-07 15:22:32 | Time Consuming: 3 ms | Connection: statement-1 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  4589. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  4590. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  4591. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  4592. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  4593. FROM goaf_sensordata AS A
  4594. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  4595. WHERE A.oc_id = 406283
  4596. AND A.goaf_sensor_id = 442135
  4597. ORDER BY A.goaf_datareport_time DESC
  4598. LIMIT 1
  4599. 15:22:32.016 [XNIO-1 task-2] INFO p6spy - 2023-09-07 15:22:32 | Time Consuming: 4 ms | Connection: statement-1 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  4600. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  4601. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  4602. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  4603. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  4604. FROM goaf_sensordata AS A
  4605. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  4606. WHERE A.oc_id = 406283
  4607. AND A.goaf_sensor_id = 442139
  4608. ORDER BY A.goaf_datareport_time DESC
  4609. LIMIT 1
  4610. 15:22:34.206 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:22:34 | Time Consuming: 5008 ms | Connection: statement-2 | SQL: SELECT 1
  4611. 15:22:34.210 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:22:34 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  4612. 15:22:34.218 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:22:34 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT *
  4613. FROM goaf_syscfg
  4614. WHERE oc_id = 406283
  4615. 15:23:49.795 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:23:49 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  4616. 15:23:49.803 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:23:49 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT *
  4617. FROM goaf_devinfo
  4618. where oc_id = 406283
  4619. 15:23:49.808 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:23:49 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT *
  4620. FROM goaf_sensor
  4621. where oc_id = 406283
  4622. AND goaf_dev_name = 'other'
  4623. 15:23:49.813 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:23:49 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  4624. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  4625. FROM goaf_sensor AS C
  4626. LEFT JOIN
  4627. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  4628. FROM goaf_sensordata
  4629. ORDER BY goaf_datareport_time DESC
  4630. LIMIT 1) AS A ON A.goaf_sensor_id = C.goaf_sensor_id
  4631. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  4632. WHERE C.goaf_sensor_id = 442129
  4633. 15:23:49.817 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:23:49 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  4634. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  4635. FROM goaf_sensor AS C
  4636. LEFT JOIN
  4637. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  4638. FROM goaf_sensordata
  4639. ORDER BY goaf_datareport_time DESC
  4640. LIMIT 1) AS A ON A.goaf_sensor_id = C.goaf_sensor_id
  4641. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  4642. WHERE C.goaf_sensor_id = 442198
  4643. 15:23:49.822 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:23:49 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT *
  4644. FROM goaf_sensor
  4645. where oc_id = 406283
  4646. AND goaf_dev_name = 'waterpump'
  4647. 15:23:49.827 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:23:49 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  4648. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  4649. FROM goaf_sensor AS C
  4650. LEFT JOIN
  4651. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  4652. FROM goaf_sensordata
  4653. ORDER BY goaf_datareport_time DESC
  4654. LIMIT 1) AS A ON A.goaf_sensor_id = C.goaf_sensor_id
  4655. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  4656. WHERE C.goaf_sensor_id = 442136
  4657. 15:23:49.832 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:23:49 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT *
  4658. FROM goaf_sensor
  4659. where oc_id = 406283
  4660. AND goaf_dev_name = 'machinery'
  4661. 15:23:49.836 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:23:49 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  4662. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  4663. FROM goaf_sensor AS C
  4664. LEFT JOIN
  4665. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  4666. FROM goaf_sensordata
  4667. ORDER BY goaf_datareport_time DESC
  4668. LIMIT 1) AS A ON A.goaf_sensor_id = C.goaf_sensor_id
  4669. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  4670. WHERE C.goaf_sensor_id = 442137
  4671. 15:23:49.841 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:23:49 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT *
  4672. FROM goaf_sensor
  4673. where oc_id = 406283
  4674. AND goaf_dev_name = 'compress'
  4675. 15:23:49.846 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:23:49 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  4676. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  4677. FROM goaf_sensor AS C
  4678. LEFT JOIN
  4679. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  4680. FROM goaf_sensordata
  4681. ORDER BY goaf_datareport_time DESC
  4682. LIMIT 1) AS A ON A.goaf_sensor_id = C.goaf_sensor_id
  4683. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  4684. WHERE C.goaf_sensor_id = 442135
  4685. 15:23:49.850 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:23:49 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  4686. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  4687. FROM goaf_sensor AS C
  4688. LEFT JOIN
  4689. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  4690. FROM goaf_sensordata
  4691. ORDER BY goaf_datareport_time DESC
  4692. LIMIT 1) AS A ON A.goaf_sensor_id = C.goaf_sensor_id
  4693. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  4694. WHERE C.goaf_sensor_id = 442139
  4695. 15:27:27.210 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:27:27 | Time Consuming: 5001 ms | Connection: statement-5 | SQL: SELECT 1
  4696. 15:27:27.215 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:27:27 | Time Consuming: 4 ms | Connection: statement-6 | SQL: SELECT 1
  4697. 15:27:27.239 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:27:27 | Time Consuming: 17 ms | Connection: statement-6 | SQL: SELECT td_wave_value_x, td_wave_value_y, td_wave_value_z
  4698. FROM goaf_sensordata
  4699. WHERE goaf_data_id = 442169
  4700. 15:27:31.586 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:27:31 | Time Consuming: 4 ms | Connection: statement-6 | SQL: SELECT 1
  4701. 15:27:31.598 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:27:31 | Time Consuming: 8 ms | Connection: statement-6 | SQL: SELECT td_wave_value_x, td_wave_value_y, td_wave_value_z
  4702. FROM goaf_sensordata
  4703. WHERE goaf_data_id = 442178
  4704. 15:28:27.061 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:28:27 | Time Consuming: 10 ms | Connection: statement-6 | SQL: SELECT 1
  4705. 15:28:27.081 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:28:27 | Time Consuming: 12 ms | Connection: statement-6 | SQL: SELECT
  4706. client_id,
  4707. client_title,
  4708. client_app_id,
  4709. client_app_key,
  4710. client_app_secret,
  4711. client_desc,
  4712. status,
  4713. is_fixed
  4714. FROM client
  4715. WHERE deleted_flag = 0
  4716. AND client_app_id = '10001'
  4717. AND client_app_key = '82a8bf439373e305'
  4718. 15:28:27.117 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:28:27 | Time Consuming: 12 ms | Connection: statement-6 | SQL: SELECT
  4719. A.client_id,
  4720. A.role_id,
  4721. A.permit_id,
  4722. A.permit_title,
  4723. A.permit_code,
  4724. A.permit_entry,
  4725. A.permit_desc,
  4726. A.permit_type,
  4727. A.parent_id,
  4728. A.root_id,
  4729. A.sort_no,
  4730. A.is_home
  4731. FROM s_role_permit AS A
  4732. WHERE 1 = 1
  4733. AND A.client_id = 2
  4734. AND A.role_id = 6
  4735. ORDER BY A.parent_id ASC ,A.sort_no ASC
  4736. 15:28:27.374 [XNIO-1 task-2] INFO p6spy - 2023-09-07 15:28:27 | Time Consuming: 10 ms | Connection: statement-7 | SQL: SELECT 1
  4737. 15:28:27.380 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:28:27 | Time Consuming: 3 ms | Connection: statement-6 | SQL: SELECT count(0) FROM goaf_devinfo WHERE oc_id = 406283
  4738. 15:28:27.394 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:28:27 | Time Consuming: 13 ms | Connection: statement-6 | SQL: SELECT *
  4739. FROM goaf_devinfo
  4740. where oc_id = 406283
  4741. LIMIT 10
  4742. 15:28:27.405 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:28:27 | Time Consuming: 10 ms | Connection: statement-6 | SQL: SELECT *
  4743. FROM goaf_sensor
  4744. where oc_id = 406283
  4745. AND goaf_dev_name = 'other'
  4746. 15:28:27.419 [XNIO-1 task-2] INFO p6spy - 2023-09-07 15:28:27 | Time Consuming: 38 ms | Connection: statement-7 | SQL: SELECT count(*)
  4747. FROM msg AS M
  4748. WHERE M.oc_id = 406283
  4749. AND (
  4750. EXISTS (
  4751. SELECT 1 FROM msg_to TT
  4752. WHERE M.oc_id = TT.oc_id AND M.msg_id = TT.msg_id AND TT.msg_to_id = 406283 AND TT.status=0
  4753. ) OR
  4754. EXISTS (
  4755. SELECT 1 FROM msg_cc CC
  4756. WHERE M.oc_id = CC.oc_id AND M.msg_id = CC.msg_id AND CC.msg_cc_id = 406283 AND CC.status=0
  4757. )
  4758. )
  4759. 15:28:27.419 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:28:27 | Time Consuming: 11 ms | Connection: statement-6 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  4760. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  4761. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  4762. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  4763. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  4764. FROM goaf_sensordata AS A
  4765. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  4766. WHERE A.oc_id = 406283
  4767. AND A.goaf_sensor_id = 442129
  4768. ORDER BY A.goaf_datareport_time DESC
  4769. LIMIT 1
  4770. 15:28:27.430 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:28:27 | Time Consuming: 9 ms | Connection: statement-6 | SQL: SELECT *
  4771. FROM goaf_sensor
  4772. where oc_id = 406283
  4773. AND goaf_dev_name = 'waterpump'
  4774. 15:28:27.440 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:28:27 | Time Consuming: 9 ms | Connection: statement-6 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  4775. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  4776. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  4777. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  4778. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  4779. FROM goaf_sensordata AS A
  4780. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  4781. WHERE A.oc_id = 406283
  4782. AND A.goaf_sensor_id = 442136
  4783. ORDER BY A.goaf_datareport_time DESC
  4784. LIMIT 1
  4785. 15:28:27.451 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:28:27 | Time Consuming: 10 ms | Connection: statement-6 | SQL: SELECT *
  4786. FROM goaf_sensor
  4787. where oc_id = 406283
  4788. AND goaf_dev_name = 'machinery'
  4789. 15:28:27.465 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:28:27 | Time Consuming: 12 ms | Connection: statement-6 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  4790. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  4791. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  4792. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  4793. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  4794. FROM goaf_sensordata AS A
  4795. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  4796. WHERE A.oc_id = 406283
  4797. AND A.goaf_sensor_id = 442137
  4798. ORDER BY A.goaf_datareport_time DESC
  4799. LIMIT 1
  4800. 15:28:27.477 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:28:27 | Time Consuming: 10 ms | Connection: statement-6 | SQL: SELECT *
  4801. FROM goaf_sensor
  4802. where oc_id = 406283
  4803. AND goaf_dev_name = 'compress'
  4804. 15:28:27.489 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:28:27 | Time Consuming: 10 ms | Connection: statement-6 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  4805. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  4806. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  4807. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  4808. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  4809. FROM goaf_sensordata AS A
  4810. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  4811. WHERE A.oc_id = 406283
  4812. AND A.goaf_sensor_id = 442135
  4813. ORDER BY A.goaf_datareport_time DESC
  4814. LIMIT 1
  4815. 15:28:27.497 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:28:27 | Time Consuming: 6 ms | Connection: statement-6 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  4816. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  4817. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  4818. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  4819. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  4820. FROM goaf_sensordata AS A
  4821. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  4822. WHERE A.oc_id = 406283
  4823. AND A.goaf_sensor_id = 442139
  4824. ORDER BY A.goaf_datareport_time DESC
  4825. LIMIT 1
  4826. 15:28:35.697 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:28:35 | Time Consuming: 3 ms | Connection: statement-6 | SQL: SELECT 1
  4827. 15:28:35.697 [XNIO-1 task-3] INFO p6spy - 2023-09-07 15:28:35 | Time Consuming: 3 ms | Connection: statement-8 | SQL: SELECT 1
  4828. 15:28:35.697 [XNIO-1 task-2] INFO p6spy - 2023-09-07 15:28:35 | Time Consuming: 3 ms | Connection: statement-7 | SQL: SELECT 1
  4829. 15:28:35.706 [XNIO-1 task-2] INFO p6spy - 2023-09-07 15:28:35 | Time Consuming: 4 ms | Connection: statement-7 | SQL: SELECT *
  4830. FROM goaf_syscfg
  4831. WHERE oc_id = 406283
  4832. 15:28:35.706 [XNIO-1 task-3] INFO p6spy - 2023-09-07 15:28:35 | Time Consuming: 3 ms | Connection: statement-8 | SQL: SELECT *
  4833. FROM goaf_baseinfo
  4834. WHERE oc_id = 406283
  4835. 15:28:35.706 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:28:35 | Time Consuming: 3 ms | Connection: statement-6 | SQL: SELECT count(0) FROM goaf_devinfo WHERE oc_id = 406283
  4836. 15:28:35.710 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:28:35 | Time Consuming: 3 ms | Connection: statement-6 | SQL: SELECT *
  4837. FROM goaf_devinfo
  4838. where oc_id = 406283
  4839. LIMIT 10
  4840. 15:28:43.644 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:28:43 | Time Consuming: 4 ms | Connection: statement-6 | SQL: SELECT 1
  4841. 15:28:43.653 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:28:43 | Time Consuming: 3 ms | Connection: statement-6 | SQL: SELECT count(0) FROM goaf_devinfo WHERE oc_id = 406283
  4842. 15:28:43.659 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:28:43 | Time Consuming: 4 ms | Connection: statement-6 | SQL: SELECT *
  4843. FROM goaf_devinfo
  4844. where oc_id = 406283
  4845. LIMIT 10
  4846. 15:28:43.663 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:28:43 | Time Consuming: 3 ms | Connection: statement-6 | SQL: SELECT *
  4847. FROM goaf_sensor
  4848. where oc_id = 406283
  4849. AND goaf_dev_name = 'other'
  4850. 15:28:43.669 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:28:43 | Time Consuming: 4 ms | Connection: statement-6 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  4851. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  4852. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  4853. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  4854. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  4855. FROM goaf_sensordata AS A
  4856. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  4857. WHERE A.oc_id = 406283
  4858. AND A.goaf_sensor_id = 442129
  4859. ORDER BY A.goaf_datareport_time DESC
  4860. LIMIT 1
  4861. 15:28:43.680 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:28:43 | Time Consuming: 6 ms | Connection: statement-6 | SQL: SELECT *
  4862. FROM goaf_sensor
  4863. where oc_id = 406283
  4864. AND goaf_dev_name = 'waterpump'
  4865. 15:28:43.687 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:28:43 | Time Consuming: 5 ms | Connection: statement-6 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  4866. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  4867. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  4868. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  4869. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  4870. FROM goaf_sensordata AS A
  4871. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  4872. WHERE A.oc_id = 406283
  4873. AND A.goaf_sensor_id = 442136
  4874. ORDER BY A.goaf_datareport_time DESC
  4875. LIMIT 1
  4876. 15:28:43.695 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:28:43 | Time Consuming: 6 ms | Connection: statement-6 | SQL: SELECT *
  4877. FROM goaf_sensor
  4878. where oc_id = 406283
  4879. AND goaf_dev_name = 'machinery'
  4880. 15:28:43.701 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:28:43 | Time Consuming: 4 ms | Connection: statement-6 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  4881. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  4882. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  4883. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  4884. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  4885. FROM goaf_sensordata AS A
  4886. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  4887. WHERE A.oc_id = 406283
  4888. AND A.goaf_sensor_id = 442137
  4889. ORDER BY A.goaf_datareport_time DESC
  4890. LIMIT 1
  4891. 15:28:43.708 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:28:43 | Time Consuming: 5 ms | Connection: statement-6 | SQL: SELECT *
  4892. FROM goaf_sensor
  4893. where oc_id = 406283
  4894. AND goaf_dev_name = 'compress'
  4895. 15:28:43.716 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:28:43 | Time Consuming: 6 ms | Connection: statement-6 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  4896. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  4897. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  4898. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  4899. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  4900. FROM goaf_sensordata AS A
  4901. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  4902. WHERE A.oc_id = 406283
  4903. AND A.goaf_sensor_id = 442135
  4904. ORDER BY A.goaf_datareport_time DESC
  4905. LIMIT 1
  4906. 15:28:43.725 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:28:43 | Time Consuming: 7 ms | Connection: statement-6 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  4907. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  4908. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  4909. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  4910. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  4911. FROM goaf_sensordata AS A
  4912. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  4913. WHERE A.oc_id = 406283
  4914. AND A.goaf_sensor_id = 442139
  4915. ORDER BY A.goaf_datareport_time DESC
  4916. LIMIT 1
  4917. 15:30:17.628 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:30:17 | Time Consuming: 6 ms | Connection: statement-6 | SQL: SELECT 1
  4918. 15:30:17.639 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:30:17 | Time Consuming: 4 ms | Connection: statement-6 | SQL: SELECT count(0) FROM goaf_devinfo WHERE oc_id = 406283
  4919. 15:30:17.645 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:30:17 | Time Consuming: 4 ms | Connection: statement-6 | SQL: SELECT *
  4920. FROM goaf_devinfo
  4921. where oc_id = 406283
  4922. LIMIT 10
  4923. 15:30:17.652 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:30:17 | Time Consuming: 5 ms | Connection: statement-6 | SQL: SELECT *
  4924. FROM goaf_sensor
  4925. where oc_id = 406283
  4926. AND goaf_dev_name = 'other'
  4927. 15:30:17.658 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:30:17 | Time Consuming: 5 ms | Connection: statement-6 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  4928. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  4929. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  4930. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  4931. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  4932. FROM goaf_sensordata AS A
  4933. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  4934. WHERE A.oc_id = 406283
  4935. AND A.goaf_sensor_id = 442129
  4936. ORDER BY A.goaf_datareport_time DESC
  4937. LIMIT 1
  4938. 15:30:17.665 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:30:17 | Time Consuming: 6 ms | Connection: statement-6 | SQL: SELECT *
  4939. FROM goaf_sensor
  4940. where oc_id = 406283
  4941. AND goaf_dev_name = 'waterpump'
  4942. 15:30:17.669 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:30:17 | Time Consuming: 3 ms | Connection: statement-6 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  4943. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  4944. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  4945. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  4946. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  4947. FROM goaf_sensordata AS A
  4948. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  4949. WHERE A.oc_id = 406283
  4950. AND A.goaf_sensor_id = 442136
  4951. ORDER BY A.goaf_datareport_time DESC
  4952. LIMIT 1
  4953. 15:30:17.672 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:30:17 | Time Consuming: 2 ms | Connection: statement-6 | SQL: SELECT *
  4954. FROM goaf_sensor
  4955. where oc_id = 406283
  4956. AND goaf_dev_name = 'machinery'
  4957. 15:30:17.676 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:30:17 | Time Consuming: 3 ms | Connection: statement-6 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  4958. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  4959. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  4960. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  4961. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  4962. FROM goaf_sensordata AS A
  4963. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  4964. WHERE A.oc_id = 406283
  4965. AND A.goaf_sensor_id = 442137
  4966. ORDER BY A.goaf_datareport_time DESC
  4967. LIMIT 1
  4968. 15:30:17.680 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:30:17 | Time Consuming: 3 ms | Connection: statement-6 | SQL: SELECT *
  4969. FROM goaf_sensor
  4970. where oc_id = 406283
  4971. AND goaf_dev_name = 'compress'
  4972. 15:30:17.684 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:30:17 | Time Consuming: 3 ms | Connection: statement-6 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  4973. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  4974. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  4975. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  4976. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  4977. FROM goaf_sensordata AS A
  4978. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  4979. WHERE A.oc_id = 406283
  4980. AND A.goaf_sensor_id = 442135
  4981. ORDER BY A.goaf_datareport_time DESC
  4982. LIMIT 1
  4983. 15:30:17.689 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:30:17 | Time Consuming: 4 ms | Connection: statement-6 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  4984. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  4985. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  4986. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  4987. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  4988. FROM goaf_sensordata AS A
  4989. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  4990. WHERE A.oc_id = 406283
  4991. AND A.goaf_sensor_id = 442139
  4992. ORDER BY A.goaf_datareport_time DESC
  4993. LIMIT 1
  4994. 15:30:58.954 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:30:58 | Time Consuming: 4 ms | Connection: statement-6 | SQL: SELECT 1
  4995. 15:30:58.962 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:30:58 | Time Consuming: 3 ms | Connection: statement-6 | SQL: SELECT count(0) FROM goaf_devinfo WHERE oc_id = 406283
  4996. 15:30:58.966 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:30:58 | Time Consuming: 3 ms | Connection: statement-6 | SQL: SELECT *
  4997. FROM goaf_devinfo
  4998. where oc_id = 406283
  4999. LIMIT 10
  5000. 15:30:58.971 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:30:58 | Time Consuming: 4 ms | Connection: statement-6 | SQL: SELECT *
  5001. FROM goaf_sensor
  5002. where oc_id = 406283
  5003. AND goaf_dev_name = 'other'
  5004. 15:30:58.977 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:30:58 | Time Consuming: 4 ms | Connection: statement-6 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  5005. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  5006. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  5007. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  5008. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  5009. FROM goaf_sensordata AS A
  5010. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  5011. WHERE A.oc_id = 406283
  5012. AND A.goaf_sensor_id = 442129
  5013. ORDER BY A.goaf_datareport_time DESC
  5014. LIMIT 1
  5015. 15:30:58.983 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:30:58 | Time Consuming: 5 ms | Connection: statement-6 | SQL: SELECT *
  5016. FROM goaf_sensor
  5017. where oc_id = 406283
  5018. AND goaf_dev_name = 'waterpump'
  5019. 15:30:58.990 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:30:58 | Time Consuming: 5 ms | Connection: statement-6 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  5020. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  5021. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  5022. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  5023. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  5024. FROM goaf_sensordata AS A
  5025. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  5026. WHERE A.oc_id = 406283
  5027. AND A.goaf_sensor_id = 442136
  5028. ORDER BY A.goaf_datareport_time DESC
  5029. LIMIT 1
  5030. 15:30:58.995 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:30:58 | Time Consuming: 3 ms | Connection: statement-6 | SQL: SELECT *
  5031. FROM goaf_sensor
  5032. where oc_id = 406283
  5033. AND goaf_dev_name = 'machinery'
  5034. 15:30:58.999 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:30:58 | Time Consuming: 3 ms | Connection: statement-6 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  5035. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  5036. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  5037. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  5038. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  5039. FROM goaf_sensordata AS A
  5040. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  5041. WHERE A.oc_id = 406283
  5042. AND A.goaf_sensor_id = 442137
  5043. ORDER BY A.goaf_datareport_time DESC
  5044. LIMIT 1
  5045. 15:30:59.003 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:30:59 | Time Consuming: 3 ms | Connection: statement-6 | SQL: SELECT *
  5046. FROM goaf_sensor
  5047. where oc_id = 406283
  5048. AND goaf_dev_name = 'compress'
  5049. 15:30:59.007 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:30:59 | Time Consuming: 3 ms | Connection: statement-6 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  5050. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  5051. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  5052. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  5053. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  5054. FROM goaf_sensordata AS A
  5055. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  5056. WHERE A.oc_id = 406283
  5057. AND A.goaf_sensor_id = 442135
  5058. ORDER BY A.goaf_datareport_time DESC
  5059. LIMIT 1
  5060. 15:30:59.011 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:30:59 | Time Consuming: 3 ms | Connection: statement-6 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  5061. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  5062. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  5063. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  5064. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  5065. FROM goaf_sensordata AS A
  5066. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  5067. WHERE A.oc_id = 406283
  5068. AND A.goaf_sensor_id = 442139
  5069. ORDER BY A.goaf_datareport_time DESC
  5070. LIMIT 1
  5071. 15:31:00.465 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:31:00 | Time Consuming: 3 ms | Connection: statement-6 | SQL: SELECT 1
  5072. 15:31:00.473 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:31:00 | Time Consuming: 3 ms | Connection: statement-6 | SQL: SELECT count(0) FROM goaf_devinfo WHERE oc_id = 406283
  5073. 15:31:00.477 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:31:00 | Time Consuming: 3 ms | Connection: statement-6 | SQL: SELECT *
  5074. FROM goaf_devinfo
  5075. where oc_id = 406283
  5076. LIMIT 10
  5077. 15:31:00.481 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:31:00 | Time Consuming: 3 ms | Connection: statement-6 | SQL: SELECT *
  5078. FROM goaf_sensor
  5079. where oc_id = 406283
  5080. AND goaf_dev_name = 'other'
  5081. 15:31:00.488 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:31:00 | Time Consuming: 5 ms | Connection: statement-6 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  5082. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  5083. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  5084. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  5085. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  5086. FROM goaf_sensordata AS A
  5087. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  5088. WHERE A.oc_id = 406283
  5089. AND A.goaf_sensor_id = 442129
  5090. ORDER BY A.goaf_datareport_time DESC
  5091. LIMIT 1
  5092. 15:31:00.491 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:31:00 | Time Consuming: 3 ms | Connection: statement-6 | SQL: SELECT *
  5093. FROM goaf_sensor
  5094. where oc_id = 406283
  5095. AND goaf_dev_name = 'waterpump'
  5096. 15:31:00.496 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:31:00 | Time Consuming: 4 ms | Connection: statement-6 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  5097. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  5098. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  5099. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  5100. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  5101. FROM goaf_sensordata AS A
  5102. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  5103. WHERE A.oc_id = 406283
  5104. AND A.goaf_sensor_id = 442136
  5105. ORDER BY A.goaf_datareport_time DESC
  5106. LIMIT 1
  5107. 15:31:00.501 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:31:00 | Time Consuming: 3 ms | Connection: statement-6 | SQL: SELECT *
  5108. FROM goaf_sensor
  5109. where oc_id = 406283
  5110. AND goaf_dev_name = 'machinery'
  5111. 15:31:00.505 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:31:00 | Time Consuming: 3 ms | Connection: statement-6 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  5112. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  5113. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  5114. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  5115. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  5116. FROM goaf_sensordata AS A
  5117. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  5118. WHERE A.oc_id = 406283
  5119. AND A.goaf_sensor_id = 442137
  5120. ORDER BY A.goaf_datareport_time DESC
  5121. LIMIT 1
  5122. 15:31:00.509 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:31:00 | Time Consuming: 3 ms | Connection: statement-6 | SQL: SELECT *
  5123. FROM goaf_sensor
  5124. where oc_id = 406283
  5125. AND goaf_dev_name = 'compress'
  5126. 15:31:00.514 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:31:00 | Time Consuming: 4 ms | Connection: statement-6 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  5127. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  5128. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  5129. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  5130. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  5131. FROM goaf_sensordata AS A
  5132. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  5133. WHERE A.oc_id = 406283
  5134. AND A.goaf_sensor_id = 442135
  5135. ORDER BY A.goaf_datareport_time DESC
  5136. LIMIT 1
  5137. 15:31:00.519 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:31:00 | Time Consuming: 4 ms | Connection: statement-6 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  5138. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  5139. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  5140. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  5141. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  5142. FROM goaf_sensordata AS A
  5143. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  5144. WHERE A.oc_id = 406283
  5145. AND A.goaf_sensor_id = 442139
  5146. ORDER BY A.goaf_datareport_time DESC
  5147. LIMIT 1
  5148. 15:34:31.913 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:34:31 | Time Consuming: 7 ms | Connection: statement-6 | SQL: SELECT 1
  5149. 15:34:31.925 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:34:31 | Time Consuming: 4 ms | Connection: statement-6 | SQL: SELECT count(0) FROM goaf_devinfo WHERE oc_id = 406283
  5150. 15:34:31.933 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:34:31 | Time Consuming: 7 ms | Connection: statement-6 | SQL: SELECT *
  5151. FROM goaf_devinfo
  5152. where oc_id = 406283
  5153. LIMIT 10
  5154. 15:34:31.937 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:34:31 | Time Consuming: 3 ms | Connection: statement-6 | SQL: SELECT *
  5155. FROM goaf_sensor
  5156. where oc_id = 406283
  5157. AND goaf_dev_name = 'other'
  5158. 15:34:31.942 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:34:31 | Time Consuming: 4 ms | Connection: statement-6 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  5159. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  5160. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  5161. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  5162. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  5163. FROM goaf_sensordata AS A
  5164. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  5165. WHERE A.oc_id = 406283
  5166. AND A.goaf_sensor_id = 442129
  5167. ORDER BY A.goaf_datareport_time DESC
  5168. LIMIT 1
  5169. 15:34:31.949 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:34:31 | Time Consuming: 5 ms | Connection: statement-6 | SQL: SELECT *
  5170. FROM goaf_sensor
  5171. where oc_id = 406283
  5172. AND goaf_dev_name = 'waterpump'
  5173. 15:34:31.957 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:34:31 | Time Consuming: 7 ms | Connection: statement-6 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  5174. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  5175. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  5176. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  5177. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  5178. FROM goaf_sensordata AS A
  5179. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  5180. WHERE A.oc_id = 406283
  5181. AND A.goaf_sensor_id = 442136
  5182. ORDER BY A.goaf_datareport_time DESC
  5183. LIMIT 1
  5184. 15:34:31.961 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:34:31 | Time Consuming: 3 ms | Connection: statement-6 | SQL: SELECT *
  5185. FROM goaf_sensor
  5186. where oc_id = 406283
  5187. AND goaf_dev_name = 'machinery'
  5188. 15:34:31.966 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:34:31 | Time Consuming: 4 ms | Connection: statement-6 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  5189. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  5190. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  5191. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  5192. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  5193. FROM goaf_sensordata AS A
  5194. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  5195. WHERE A.oc_id = 406283
  5196. AND A.goaf_sensor_id = 442137
  5197. ORDER BY A.goaf_datareport_time DESC
  5198. LIMIT 1
  5199. 15:34:31.970 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:34:31 | Time Consuming: 3 ms | Connection: statement-6 | SQL: SELECT *
  5200. FROM goaf_sensor
  5201. where oc_id = 406283
  5202. AND goaf_dev_name = 'compress'
  5203. 15:34:31.973 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:34:31 | Time Consuming: 3 ms | Connection: statement-6 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  5204. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  5205. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  5206. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  5207. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  5208. FROM goaf_sensordata AS A
  5209. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  5210. WHERE A.oc_id = 406283
  5211. AND A.goaf_sensor_id = 442135
  5212. ORDER BY A.goaf_datareport_time DESC
  5213. LIMIT 1
  5214. 15:34:31.978 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:34:31 | Time Consuming: 3 ms | Connection: statement-6 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  5215. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  5216. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  5217. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  5218. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  5219. FROM goaf_sensordata AS A
  5220. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  5221. WHERE A.oc_id = 406283
  5222. AND A.goaf_sensor_id = 442139
  5223. ORDER BY A.goaf_datareport_time DESC
  5224. LIMIT 1
  5225. 15:35:33.006 [XNIO-1 task-3] INFO p6spy - 2023-09-07 15:35:33 | Time Consuming: 5 ms | Connection: statement-11 | SQL: SELECT 1
  5226. 15:35:33.023 [XNIO-1 task-3] INFO p6spy - 2023-09-07 15:35:33 | Time Consuming: 9 ms | Connection: statement-11 | SQL: SELECT
  5227. client_id,
  5228. client_title,
  5229. client_app_id,
  5230. client_app_key,
  5231. client_app_secret,
  5232. client_desc,
  5233. status,
  5234. is_fixed
  5235. FROM client
  5236. WHERE deleted_flag = 0
  5237. AND client_app_id = '10001'
  5238. AND client_app_key = '82a8bf439373e305'
  5239. 15:35:33.072 [XNIO-1 task-3] INFO p6spy - 2023-09-07 15:35:33 | Time Consuming: 10 ms | Connection: statement-11 | SQL: SELECT
  5240. A.client_id,
  5241. A.role_id,
  5242. A.permit_id,
  5243. A.permit_title,
  5244. A.permit_code,
  5245. A.permit_entry,
  5246. A.permit_desc,
  5247. A.permit_type,
  5248. A.parent_id,
  5249. A.root_id,
  5250. A.sort_no,
  5251. A.is_home
  5252. FROM s_role_permit AS A
  5253. WHERE 1 = 1
  5254. AND A.client_id = 2
  5255. AND A.role_id = 6
  5256. ORDER BY A.parent_id ASC ,A.sort_no ASC
  5257. 15:35:33.270 [XNIO-1 task-2] INFO p6spy - 2023-09-07 15:35:33 | Time Consuming: 5 ms | Connection: statement-12 | SQL: SELECT 1
  5258. 15:35:33.276 [XNIO-1 task-3] INFO p6spy - 2023-09-07 15:35:33 | Time Consuming: 7 ms | Connection: statement-11 | SQL: SELECT count(0) FROM goaf_devinfo WHERE oc_id = 406283
  5259. 15:35:33.283 [XNIO-1 task-3] INFO p6spy - 2023-09-07 15:35:33 | Time Consuming: 6 ms | Connection: statement-11 | SQL: SELECT *
  5260. FROM goaf_devinfo
  5261. where oc_id = 406283
  5262. LIMIT 10
  5263. 15:35:33.293 [XNIO-1 task-3] INFO p6spy - 2023-09-07 15:35:33 | Time Consuming: 9 ms | Connection: statement-11 | SQL: SELECT *
  5264. FROM goaf_sensor
  5265. where oc_id = 406283
  5266. AND goaf_dev_name = 'other'
  5267. 15:35:33.301 [XNIO-1 task-3] INFO p6spy - 2023-09-07 15:35:33 | Time Consuming: 7 ms | Connection: statement-11 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  5268. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  5269. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  5270. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  5271. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  5272. FROM goaf_sensordata AS A
  5273. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  5274. WHERE A.oc_id = 406283
  5275. AND A.goaf_sensor_id = 442129
  5276. ORDER BY A.goaf_datareport_time DESC
  5277. LIMIT 1
  5278. 15:35:33.310 [XNIO-1 task-3] INFO p6spy - 2023-09-07 15:35:33 | Time Consuming: 7 ms | Connection: statement-11 | SQL: SELECT *
  5279. FROM goaf_sensor
  5280. where oc_id = 406283
  5281. AND goaf_dev_name = 'waterpump'
  5282. 15:35:33.316 [XNIO-1 task-3] INFO p6spy - 2023-09-07 15:35:33 | Time Consuming: 5 ms | Connection: statement-11 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  5283. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  5284. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  5285. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  5286. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  5287. FROM goaf_sensordata AS A
  5288. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  5289. WHERE A.oc_id = 406283
  5290. AND A.goaf_sensor_id = 442136
  5291. ORDER BY A.goaf_datareport_time DESC
  5292. LIMIT 1
  5293. 15:35:33.322 [XNIO-1 task-2] INFO p6spy - 2023-09-07 15:35:33 | Time Consuming: 40 ms | Connection: statement-12 | SQL: SELECT count(*)
  5294. FROM msg AS M
  5295. WHERE M.oc_id = 406283
  5296. AND (
  5297. EXISTS (
  5298. SELECT 1 FROM msg_to TT
  5299. WHERE M.oc_id = TT.oc_id AND M.msg_id = TT.msg_id AND TT.msg_to_id = 406283 AND TT.status=0
  5300. ) OR
  5301. EXISTS (
  5302. SELECT 1 FROM msg_cc CC
  5303. WHERE M.oc_id = CC.oc_id AND M.msg_id = CC.msg_id AND CC.msg_cc_id = 406283 AND CC.status=0
  5304. )
  5305. )
  5306. 15:35:33.322 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:35:33 | Time Consuming: 5001 ms | Connection: statement-10 | SQL: SELECT 1
  5307. 15:35:33.324 [XNIO-1 task-3] INFO p6spy - 2023-09-07 15:35:33 | Time Consuming: 7 ms | Connection: statement-11 | SQL: SELECT *
  5308. FROM goaf_sensor
  5309. where oc_id = 406283
  5310. AND goaf_dev_name = 'machinery'
  5311. 15:35:33.329 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:35:33 | Time Consuming: 6 ms | Connection: statement-13 | SQL: SELECT 1
  5312. 15:35:33.336 [XNIO-1 task-3] INFO p6spy - 2023-09-07 15:35:33 | Time Consuming: 10 ms | Connection: statement-11 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  5313. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  5314. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  5315. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  5316. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  5317. FROM goaf_sensordata AS A
  5318. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  5319. WHERE A.oc_id = 406283
  5320. AND A.goaf_sensor_id = 442137
  5321. ORDER BY A.goaf_datareport_time DESC
  5322. LIMIT 1
  5323. 15:35:33.342 [XNIO-1 task-3] INFO p6spy - 2023-09-07 15:35:33 | Time Consuming: 5 ms | Connection: statement-11 | SQL: SELECT *
  5324. FROM goaf_sensor
  5325. where oc_id = 406283
  5326. AND goaf_dev_name = 'compress'
  5327. 15:35:33.343 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:35:33 | Time Consuming: 3 ms | Connection: statement-13 | SQL: SELECT count(0) FROM goaf_devinfo WHERE oc_id = 406283
  5328. 15:35:33.352 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:35:33 | Time Consuming: 8 ms | Connection: statement-13 | SQL: SELECT *
  5329. FROM goaf_devinfo
  5330. where oc_id = 406283
  5331. LIMIT 10
  5332. 15:35:33.352 [XNIO-1 task-3] INFO p6spy - 2023-09-07 15:35:33 | Time Consuming: 9 ms | Connection: statement-11 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  5333. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  5334. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  5335. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  5336. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  5337. FROM goaf_sensordata AS A
  5338. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  5339. WHERE A.oc_id = 406283
  5340. AND A.goaf_sensor_id = 442135
  5341. ORDER BY A.goaf_datareport_time DESC
  5342. LIMIT 1
  5343. 15:35:33.362 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:35:33 | Time Consuming: 9 ms | Connection: statement-13 | SQL: SELECT *
  5344. FROM goaf_sensor
  5345. where oc_id = 406283
  5346. AND goaf_dev_name = 'other'
  5347. 15:35:33.362 [XNIO-1 task-3] INFO p6spy - 2023-09-07 15:35:33 | Time Consuming: 9 ms | Connection: statement-11 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  5348. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  5349. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  5350. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  5351. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  5352. FROM goaf_sensordata AS A
  5353. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  5354. WHERE A.oc_id = 406283
  5355. AND A.goaf_sensor_id = 442139
  5356. ORDER BY A.goaf_datareport_time DESC
  5357. LIMIT 1
  5358. 15:35:33.368 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:35:33 | Time Consuming: 5 ms | Connection: statement-13 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  5359. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  5360. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  5361. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  5362. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  5363. FROM goaf_sensordata AS A
  5364. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  5365. WHERE A.oc_id = 406283
  5366. AND A.goaf_sensor_id = 442129
  5367. ORDER BY A.goaf_datareport_time DESC
  5368. LIMIT 1
  5369. 15:35:33.375 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:35:33 | Time Consuming: 7 ms | Connection: statement-13 | SQL: SELECT *
  5370. FROM goaf_sensor
  5371. where oc_id = 406283
  5372. AND goaf_dev_name = 'waterpump'
  5373. 15:35:33.384 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:35:33 | Time Consuming: 8 ms | Connection: statement-13 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  5374. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  5375. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  5376. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  5377. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  5378. FROM goaf_sensordata AS A
  5379. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  5380. WHERE A.oc_id = 406283
  5381. AND A.goaf_sensor_id = 442136
  5382. ORDER BY A.goaf_datareport_time DESC
  5383. LIMIT 1
  5384. 15:35:33.393 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:35:33 | Time Consuming: 7 ms | Connection: statement-13 | SQL: SELECT *
  5385. FROM goaf_sensor
  5386. where oc_id = 406283
  5387. AND goaf_dev_name = 'machinery'
  5388. 15:35:33.399 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:35:33 | Time Consuming: 5 ms | Connection: statement-13 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  5389. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  5390. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  5391. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  5392. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  5393. FROM goaf_sensordata AS A
  5394. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  5395. WHERE A.oc_id = 406283
  5396. AND A.goaf_sensor_id = 442137
  5397. ORDER BY A.goaf_datareport_time DESC
  5398. LIMIT 1
  5399. 15:35:33.407 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:35:33 | Time Consuming: 7 ms | Connection: statement-13 | SQL: SELECT *
  5400. FROM goaf_sensor
  5401. where oc_id = 406283
  5402. AND goaf_dev_name = 'compress'
  5403. 15:35:33.413 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:35:33 | Time Consuming: 5 ms | Connection: statement-13 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  5404. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  5405. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  5406. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  5407. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  5408. FROM goaf_sensordata AS A
  5409. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  5410. WHERE A.oc_id = 406283
  5411. AND A.goaf_sensor_id = 442135
  5412. ORDER BY A.goaf_datareport_time DESC
  5413. LIMIT 1
  5414. 15:35:33.421 [XNIO-1 task-4] INFO p6spy - 2023-09-07 15:35:33 | Time Consuming: 8 ms | Connection: statement-13 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  5415. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  5416. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  5417. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  5418. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  5419. FROM goaf_sensordata AS A
  5420. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  5421. WHERE A.oc_id = 406283
  5422. AND A.goaf_sensor_id = 442139
  5423. ORDER BY A.goaf_datareport_time DESC
  5424. LIMIT 1
  5425. 16:03:38.772 [XNIO-1 task-2] INFO p6spy - 2023-09-07 16:03:38 | Time Consuming: 5002 ms | Connection: statement-27 | SQL: SELECT 1
  5426. 16:03:38.772 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:03:38 | Time Consuming: 5002 ms | Connection: statement-28 | SQL: SELECT 1
  5427. 16:03:38.772 [XNIO-1 task-3] INFO p6spy - 2023-09-07 16:03:38 | Time Consuming: 5002 ms | Connection: statement-29 | SQL: SELECT 1
  5428. 16:03:38.776 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:03:38 | Time Consuming: 4 ms | Connection: statement-30 | SQL: SELECT 1
  5429. 16:03:38.776 [XNIO-1 task-3] INFO p6spy - 2023-09-07 16:03:38 | Time Consuming: 4 ms | Connection: statement-31 | SQL: SELECT 1
  5430. 16:03:38.787 [XNIO-1 task-3] INFO p6spy - 2023-09-07 16:03:38 | Time Consuming: 5 ms | Connection: statement-31 | SQL: SELECT count(0) FROM goaf_devinfo WHERE oc_id = 406283
  5431. 16:03:38.787 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:03:38 | Time Consuming: 6 ms | Connection: statement-30 | SQL: SELECT *
  5432. FROM goaf_baseinfo
  5433. WHERE oc_id = 406283
  5434. 16:03:38.793 [XNIO-1 task-3] INFO p6spy - 2023-09-07 16:03:38 | Time Consuming: 5 ms | Connection: statement-31 | SQL: SELECT *
  5435. FROM goaf_devinfo
  5436. where oc_id = 406283
  5437. LIMIT 10
  5438. 16:03:38.806 [XNIO-1 task-2] INFO p6spy - 2023-09-07 16:03:38 | Time Consuming: 4 ms | Connection: statement-30 | SQL: SELECT *
  5439. FROM goaf_syscfg
  5440. WHERE oc_id = 406283
  5441. 16:05:34.019 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  5442. 16:05:34.021 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.4.Final
  5443. 16:05:34.023 [SpringApplicationShutdownHook] INFO io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
  5444. 16:05:34.025 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - Removing {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  5445. 16:05:34.025 [SpringApplicationShutdownHook] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 0 subscriber(s).
  5446. 16:05:34.025 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - stopped bean '_org.springframework.integration.errorLogger'
  5447. 16:05:34.033 [SpringApplicationShutdownHook] INFO o.s.j.e.a.AnnotationMBeanExporter - Could not unregister MBean [com.github.tobato.fastdfs.domain.conn:name=fdfsConnectionPool,type=FdfsConnectionPool] as said MBean is not registered (perhaps already unregistered by an external process)
  5448. 16:05:34.034 [SpringApplicationShutdownHook] INFO o.s.s.quartz.SchedulerFactoryBean - Shutting down Quartz Scheduler
  5449. 16:05:34.034 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
  5450. 16:05:34.034 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  5451. 16:05:34.035 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
  5452. 16:05:34.065 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown initiated...
  5453. 16:05:34.093 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown completed.
  5454. 16:05:39.486 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.0.Final
  5455. 16:05:39.538 [restartedMain] INFO com.zhyc.xps.XPSApplication - Starting XPSApplication using Java 17.0.6 with PID 11116 (E:\zhycnewprj\iotplatform\xps-server-3\xps-application\target\classes started by qzz19 in E:\zhycnewprj\iotplatform\xps-server-3)
  5456. 16:05:39.538 [restartedMain] INFO com.zhyc.xps.XPSApplication - The following 1 profile is active: "local"
  5457. 16:05:39.594 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
  5458. 16:05:39.594 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
  5459. 16:05:41.414 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
  5460. 16:05:41.417 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  5461. 16:05:41.507 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 76 ms. Found 0 Redis repository interfaces.
  5462. 16:05:41.680 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created.
  5463. 16:05:41.696 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created.
  5464. 16:05:42.460 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  5465. 16:05:42.460 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 2865 ms
  5466. 16:05:44.822 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor
  5467. 16:05:44.832 [restartedMain] INFO o.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  5468. 16:05:44.833 [restartedMain] INFO org.quartz.core.QuartzScheduler - Quartz Scheduler v.2.3.2 created.
  5469. 16:05:44.833 [restartedMain] INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized.
  5470. 16:05:44.834 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
  5471. Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  5472. NOT STARTED.
  5473. Currently in standby mode.
  5474. Number of jobs executed: 0
  5475. Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  5476. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
  5477. 16:05:44.834 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  5478. 16:05:44.834 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2
  5479. 16:05:44.834 [restartedMain] INFO org.quartz.core.QuartzScheduler - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@476706e5
  5480. 16:05:46.543 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer - LiveReload server is running on port 35729
  5481. 16:05:46.548 [restartedMain] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 15 endpoint(s) beneath base path '/actuator/z'
  5482. 16:05:46.692 [restartedMain] INFO io.undertow.websockets.jsr - UT026003: Adding annotated server endpoint class com.zhyc.xps.common.ws.WebSocketServer for path /websocket/link
  5483. 16:05:46.722 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  5484. 16:05:46.723 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 1 subscriber(s).
  5485. 16:05:46.723 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - started bean '_org.springframework.integration.errorLogger'
  5486. 16:05:46.742 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  5487. 16:05:46.756 [restartedMain] INFO org.xnio - XNIO version 3.8.8.Final
  5488. 16:05:46.766 [restartedMain] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.8.Final
  5489. 16:05:46.795 [restartedMain] INFO org.jboss.threads - JBoss Threads version 3.5.0.Final
  5490. 16:05:46.850 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 1788 (http)
  5491. 16:05:46.851 [restartedMain] INFO o.s.s.quartz.SchedulerFactoryBean - Starting Quartz Scheduler now
  5492. 16:05:46.851 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  5493. 16:05:46.875 [restartedMain] INFO com.zhyc.xps.XPSApplication - Started XPSApplication in 7.857 seconds (process running for 8.832)
  5494. 16:05:46.878 [restartedMain] INFO com.zhyc.xps.sys.job.InitSystemJob - 初始化系统定时任务
  5495. 16:05:46.885 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Starting...
  5496. 16:05:47.202 [restartedMain] INFO p6spy - 2023-09-07 16:05:47 | Time Consuming: 14 ms | Connection: statement-0 | SQL: SELECT 1
  5497. 16:05:47.207 [restartedMain] INFO com.zaxxer.hikari.pool.HikariPool - DatebookHikariCP - Added connection com.p6spy.engine.wrapper.ConnectionWrapper@52751eb8
  5498. 16:05:47.217 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Start completed.
  5499. 16:05:47.283 [restartedMain] INFO p6spy - 2023-09-07 16:05:47 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT
  5500. A.job_id,
  5501. A.job_title,
  5502. A.job_desc,
  5503. A.status,
  5504. A.job_type,
  5505. A.job_code,
  5506. A.job_cron,
  5507. A.job_class_id,
  5508. B.job_class,
  5509. A.cycle_title,
  5510. A.cycle_period,
  5511. A.cycle_unit
  5512. FROM job AS A
  5513. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  5514. WHERE A.deleted_flag = 0
  5515. AND A.status = 1
  5516. ORDER BY A.job_id ASC
  5517. 16:05:47.303 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  5518. 16:05:47.306 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  5519. 16:05:47.959 [RMI TCP Connection(6)-192.168.3.5] INFO p6spy - 2023-09-07 16:05:47 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  5520. 16:05:47.959 [RMI TCP Connection(7)-192.168.3.5] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
  5521. 16:05:47.959 [RMI TCP Connection(7)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
  5522. 16:05:47.965 [RMI TCP Connection(7)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 5 ms
  5523. 16:05:47.973 [RMI TCP Connection(6)-192.168.3.5] INFO p6spy - 2023-09-07 16:05:47 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  5524. 16:06:17.075 [XNIO-1 task-3] INFO p6spy - 2023-09-07 16:06:17 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  5525. 16:06:17.158 [XNIO-1 task-3] INFO p6spy - 2023-09-07 16:06:17 | Time Consuming: 10 ms | Connection: statement-0 | SQL: SELECT count(0) FROM goaf_devinfo WHERE oc_id = 406283
  5526. 16:06:17.164 [XNIO-1 task-3] INFO p6spy - 2023-09-07 16:06:17 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT *
  5527. FROM goaf_devinfo
  5528. where oc_id = 406283
  5529. LIMIT 10
  5530. 16:06:17.174 [XNIO-1 task-3] INFO p6spy - 2023-09-07 16:06:17 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT *
  5531. FROM goaf_sensor
  5532. where oc_id = 406283
  5533. AND goaf_dev_name = 'other'
  5534. 16:06:17.184 [XNIO-1 task-3] INFO p6spy - 2023-09-07 16:06:17 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  5535. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  5536. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  5537. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  5538. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  5539. FROM goaf_sensordata AS A
  5540. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  5541. WHERE A.oc_id = 406283
  5542. AND A.goaf_sensor_id = 442129
  5543. ORDER BY A.goaf_datareport_time DESC
  5544. LIMIT 1
  5545. 16:06:17.194 [XNIO-1 task-3] INFO p6spy - 2023-09-07 16:06:17 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  5546. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  5547. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  5548. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  5549. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  5550. FROM goaf_sensordata AS A
  5551. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  5552. WHERE A.oc_id = 406283
  5553. AND A.goaf_sensor_id = 442199
  5554. ORDER BY A.goaf_datareport_time DESC
  5555. LIMIT 1
  5556. 16:06:17.198 [XNIO-1 task-3] INFO p6spy - 2023-09-07 16:06:17 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT *
  5557. FROM goaf_sensor
  5558. where oc_id = 406283
  5559. AND goaf_dev_name = 'waterpump'
  5560. 16:06:17.204 [XNIO-1 task-3] INFO p6spy - 2023-09-07 16:06:17 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  5561. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  5562. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  5563. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  5564. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  5565. FROM goaf_sensordata AS A
  5566. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  5567. WHERE A.oc_id = 406283
  5568. AND A.goaf_sensor_id = 442136
  5569. ORDER BY A.goaf_datareport_time DESC
  5570. LIMIT 1
  5571. 16:06:17.209 [XNIO-1 task-3] INFO p6spy - 2023-09-07 16:06:17 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT *
  5572. FROM goaf_sensor
  5573. where oc_id = 406283
  5574. AND goaf_dev_name = 'machinery'
  5575. 16:06:17.214 [XNIO-1 task-3] INFO p6spy - 2023-09-07 16:06:17 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  5576. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  5577. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  5578. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  5579. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  5580. FROM goaf_sensordata AS A
  5581. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  5582. WHERE A.oc_id = 406283
  5583. AND A.goaf_sensor_id = 442137
  5584. ORDER BY A.goaf_datareport_time DESC
  5585. LIMIT 1
  5586. 16:06:17.218 [XNIO-1 task-3] INFO p6spy - 2023-09-07 16:06:17 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT *
  5587. FROM goaf_sensor
  5588. where oc_id = 406283
  5589. AND goaf_dev_name = 'compress'
  5590. 16:06:17.224 [XNIO-1 task-3] INFO p6spy - 2023-09-07 16:06:17 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  5591. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  5592. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  5593. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  5594. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  5595. FROM goaf_sensordata AS A
  5596. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  5597. WHERE A.oc_id = 406283
  5598. AND A.goaf_sensor_id = 442135
  5599. ORDER BY A.goaf_datareport_time DESC
  5600. LIMIT 1
  5601. 16:06:17.231 [XNIO-1 task-3] INFO p6spy - 2023-09-07 16:06:17 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  5602. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  5603. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  5604. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  5605. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  5606. FROM goaf_sensordata AS A
  5607. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  5608. WHERE A.oc_id = 406283
  5609. AND A.goaf_sensor_id = 442139
  5610. ORDER BY A.goaf_datareport_time DESC
  5611. LIMIT 1
  5612. 16:06:29.565 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:06:29 | Time Consuming: 11 ms | Connection: statement-1 | SQL: SELECT 1
  5613. 16:06:29.565 [XNIO-1 task-3] INFO p6spy - 2023-09-07 16:06:29 | Time Consuming: 11 ms | Connection: statement-0 | SQL: SELECT 1
  5614. 16:06:29.566 [XNIO-1 task-2] INFO p6spy - 2023-09-07 16:06:29 | Time Consuming: 12 ms | Connection: statement-2 | SQL: SELECT 1
  5615. 16:06:29.579 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:06:29 | Time Consuming: 8 ms | Connection: statement-1 | SQL: SELECT count(0) FROM goaf_devinfo WHERE oc_id = 406283
  5616. 16:06:29.579 [XNIO-1 task-2] INFO p6spy - 2023-09-07 16:06:29 | Time Consuming: 8 ms | Connection: statement-2 | SQL: SELECT *
  5617. FROM goaf_syscfg
  5618. WHERE oc_id = 406283
  5619. 16:06:29.579 [XNIO-1 task-3] INFO p6spy - 2023-09-07 16:06:29 | Time Consuming: 8 ms | Connection: statement-0 | SQL: SELECT *
  5620. FROM goaf_baseinfo
  5621. WHERE oc_id = 406283
  5622. 16:06:29.585 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:06:29 | Time Consuming: 5 ms | Connection: statement-1 | SQL: SELECT *
  5623. FROM goaf_devinfo
  5624. where oc_id = 406283
  5625. LIMIT 10
  5626. 16:06:31.338 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:06:31 | Time Consuming: 3 ms | Connection: statement-1 | SQL: SELECT 1
  5627. 16:06:31.348 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:06:31 | Time Consuming: 4 ms | Connection: statement-1 | SQL: SELECT count(0) FROM goaf_devinfo WHERE oc_id = 406283
  5628. 16:06:31.353 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:06:31 | Time Consuming: 4 ms | Connection: statement-1 | SQL: SELECT *
  5629. FROM goaf_devinfo
  5630. where oc_id = 406283
  5631. LIMIT 10
  5632. 16:06:31.359 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:06:31 | Time Consuming: 4 ms | Connection: statement-1 | SQL: SELECT *
  5633. FROM goaf_sensor
  5634. where oc_id = 406283
  5635. AND goaf_dev_name = 'other'
  5636. 16:06:31.367 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:06:31 | Time Consuming: 6 ms | Connection: statement-1 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  5637. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  5638. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  5639. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  5640. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  5641. FROM goaf_sensordata AS A
  5642. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  5643. WHERE A.oc_id = 406283
  5644. AND A.goaf_sensor_id = 442129
  5645. ORDER BY A.goaf_datareport_time DESC
  5646. LIMIT 1
  5647. 16:06:31.375 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:06:31 | Time Consuming: 6 ms | Connection: statement-1 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  5648. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  5649. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  5650. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  5651. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  5652. FROM goaf_sensordata AS A
  5653. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  5654. WHERE A.oc_id = 406283
  5655. AND A.goaf_sensor_id = 442199
  5656. ORDER BY A.goaf_datareport_time DESC
  5657. LIMIT 1
  5658. 16:06:31.381 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:06:31 | Time Consuming: 4 ms | Connection: statement-1 | SQL: SELECT *
  5659. FROM goaf_sensor
  5660. where oc_id = 406283
  5661. AND goaf_dev_name = 'waterpump'
  5662. 16:06:31.388 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:06:31 | Time Consuming: 4 ms | Connection: statement-1 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  5663. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  5664. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  5665. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  5666. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  5667. FROM goaf_sensordata AS A
  5668. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  5669. WHERE A.oc_id = 406283
  5670. AND A.goaf_sensor_id = 442136
  5671. ORDER BY A.goaf_datareport_time DESC
  5672. LIMIT 1
  5673. 16:06:31.393 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:06:31 | Time Consuming: 4 ms | Connection: statement-1 | SQL: SELECT *
  5674. FROM goaf_sensor
  5675. where oc_id = 406283
  5676. AND goaf_dev_name = 'machinery'
  5677. 16:06:31.399 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:06:31 | Time Consuming: 5 ms | Connection: statement-1 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  5678. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  5679. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  5680. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  5681. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  5682. FROM goaf_sensordata AS A
  5683. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  5684. WHERE A.oc_id = 406283
  5685. AND A.goaf_sensor_id = 442137
  5686. ORDER BY A.goaf_datareport_time DESC
  5687. LIMIT 1
  5688. 16:06:31.405 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:06:31 | Time Consuming: 4 ms | Connection: statement-1 | SQL: SELECT *
  5689. FROM goaf_sensor
  5690. where oc_id = 406283
  5691. AND goaf_dev_name = 'compress'
  5692. 16:06:31.411 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:06:31 | Time Consuming: 5 ms | Connection: statement-1 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  5693. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  5694. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  5695. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  5696. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  5697. FROM goaf_sensordata AS A
  5698. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  5699. WHERE A.oc_id = 406283
  5700. AND A.goaf_sensor_id = 442135
  5701. ORDER BY A.goaf_datareport_time DESC
  5702. LIMIT 1
  5703. 16:06:31.419 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:06:31 | Time Consuming: 5 ms | Connection: statement-1 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  5704. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  5705. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  5706. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  5707. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  5708. FROM goaf_sensordata AS A
  5709. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  5710. WHERE A.oc_id = 406283
  5711. AND A.goaf_sensor_id = 442139
  5712. ORDER BY A.goaf_datareport_time DESC
  5713. LIMIT 1
  5714. 16:06:34.881 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:06:34 | Time Consuming: 3 ms | Connection: statement-1 | SQL: SELECT 1
  5715. 16:06:34.881 [XNIO-1 task-2] INFO p6spy - 2023-09-07 16:06:34 | Time Consuming: 4 ms | Connection: statement-2 | SQL: SELECT 1
  5716. 16:06:34.881 [XNIO-1 task-3] INFO p6spy - 2023-09-07 16:06:34 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  5717. 16:06:34.890 [XNIO-1 task-3] INFO p6spy - 2023-09-07 16:06:34 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT *
  5718. FROM goaf_syscfg
  5719. WHERE oc_id = 406283
  5720. 16:06:34.892 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:06:34 | Time Consuming: 5 ms | Connection: statement-1 | SQL: SELECT count(0) FROM goaf_devinfo WHERE oc_id = 406283
  5721. 16:06:34.892 [XNIO-1 task-2] INFO p6spy - 2023-09-07 16:06:34 | Time Consuming: 6 ms | Connection: statement-2 | SQL: SELECT *
  5722. FROM goaf_baseinfo
  5723. WHERE oc_id = 406283
  5724. 16:06:34.899 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:06:34 | Time Consuming: 6 ms | Connection: statement-1 | SQL: SELECT *
  5725. FROM goaf_devinfo
  5726. where oc_id = 406283
  5727. LIMIT 10
  5728. 16:06:36.480 [XNIO-1 task-2] INFO p6spy - 2023-09-07 16:06:36 | Time Consuming: 20 ms | Connection: statement-2 | SQL: SELECT 1
  5729. 16:06:36.494 [XNIO-1 task-2] INFO p6spy - 2023-09-07 16:06:36 | Time Consuming: 4 ms | Connection: statement-2 | SQL: SELECT count(0) FROM goaf_devinfo WHERE oc_id = 406283
  5730. 16:06:36.499 [XNIO-1 task-2] INFO p6spy - 2023-09-07 16:06:36 | Time Consuming: 4 ms | Connection: statement-2 | SQL: SELECT *
  5731. FROM goaf_devinfo
  5732. where oc_id = 406283
  5733. LIMIT 10
  5734. 16:06:36.510 [XNIO-1 task-2] INFO p6spy - 2023-09-07 16:06:36 | Time Consuming: 10 ms | Connection: statement-2 | SQL: SELECT *
  5735. FROM goaf_sensor
  5736. where oc_id = 406283
  5737. AND goaf_dev_name = 'other'
  5738. 16:06:36.517 [XNIO-1 task-2] INFO p6spy - 2023-09-07 16:06:36 | Time Consuming: 5 ms | Connection: statement-2 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  5739. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  5740. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  5741. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  5742. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  5743. FROM goaf_sensordata AS A
  5744. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  5745. WHERE A.oc_id = 406283
  5746. AND A.goaf_sensor_id = 442129
  5747. ORDER BY A.goaf_datareport_time DESC
  5748. LIMIT 1
  5749. 16:06:36.523 [XNIO-1 task-2] INFO p6spy - 2023-09-07 16:06:36 | Time Consuming: 4 ms | Connection: statement-2 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  5750. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  5751. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  5752. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  5753. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  5754. FROM goaf_sensordata AS A
  5755. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  5756. WHERE A.oc_id = 406283
  5757. AND A.goaf_sensor_id = 442199
  5758. ORDER BY A.goaf_datareport_time DESC
  5759. LIMIT 1
  5760. 16:06:36.532 [XNIO-1 task-2] INFO p6spy - 2023-09-07 16:06:36 | Time Consuming: 7 ms | Connection: statement-2 | SQL: SELECT *
  5761. FROM goaf_sensor
  5762. where oc_id = 406283
  5763. AND goaf_dev_name = 'waterpump'
  5764. 16:06:36.539 [XNIO-1 task-2] INFO p6spy - 2023-09-07 16:06:36 | Time Consuming: 5 ms | Connection: statement-2 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  5765. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  5766. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  5767. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  5768. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  5769. FROM goaf_sensordata AS A
  5770. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  5771. WHERE A.oc_id = 406283
  5772. AND A.goaf_sensor_id = 442136
  5773. ORDER BY A.goaf_datareport_time DESC
  5774. LIMIT 1
  5775. 16:06:36.545 [XNIO-1 task-2] INFO p6spy - 2023-09-07 16:06:36 | Time Consuming: 4 ms | Connection: statement-2 | SQL: SELECT *
  5776. FROM goaf_sensor
  5777. where oc_id = 406283
  5778. AND goaf_dev_name = 'machinery'
  5779. 16:06:36.558 [XNIO-1 task-2] INFO p6spy - 2023-09-07 16:06:36 | Time Consuming: 4 ms | Connection: statement-2 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  5780. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  5781. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  5782. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  5783. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  5784. FROM goaf_sensordata AS A
  5785. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  5786. WHERE A.oc_id = 406283
  5787. AND A.goaf_sensor_id = 442137
  5788. ORDER BY A.goaf_datareport_time DESC
  5789. LIMIT 1
  5790. 16:06:36.567 [XNIO-1 task-2] INFO p6spy - 2023-09-07 16:06:36 | Time Consuming: 7 ms | Connection: statement-2 | SQL: SELECT *
  5791. FROM goaf_sensor
  5792. where oc_id = 406283
  5793. AND goaf_dev_name = 'compress'
  5794. 16:06:36.586 [XNIO-1 task-2] INFO p6spy - 2023-09-07 16:06:36 | Time Consuming: 17 ms | Connection: statement-2 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  5795. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  5796. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  5797. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  5798. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  5799. FROM goaf_sensordata AS A
  5800. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  5801. WHERE A.oc_id = 406283
  5802. AND A.goaf_sensor_id = 442135
  5803. ORDER BY A.goaf_datareport_time DESC
  5804. LIMIT 1
  5805. 16:06:36.596 [XNIO-1 task-2] INFO p6spy - 2023-09-07 16:06:36 | Time Consuming: 8 ms | Connection: statement-2 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  5806. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  5807. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  5808. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  5809. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  5810. FROM goaf_sensordata AS A
  5811. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  5812. WHERE A.oc_id = 406283
  5813. AND A.goaf_sensor_id = 442139
  5814. ORDER BY A.goaf_datareport_time DESC
  5815. LIMIT 1
  5816. 16:06:56.882 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  5817. 16:06:56.883 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.4.Final
  5818. 16:06:56.885 [SpringApplicationShutdownHook] INFO io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
  5819. 16:06:56.887 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - Removing {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  5820. 16:06:56.888 [SpringApplicationShutdownHook] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 0 subscriber(s).
  5821. 16:06:56.888 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - stopped bean '_org.springframework.integration.errorLogger'
  5822. 16:06:56.962 [SpringApplicationShutdownHook] INFO o.s.j.e.a.AnnotationMBeanExporter - Could not unregister MBean [com.github.tobato.fastdfs.domain.conn:name=fdfsConnectionPool,type=FdfsConnectionPool] as said MBean is not registered (perhaps already unregistered by an external process)
  5823. 16:06:56.963 [SpringApplicationShutdownHook] INFO o.s.s.quartz.SchedulerFactoryBean - Shutting down Quartz Scheduler
  5824. 16:06:56.963 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
  5825. 16:06:56.963 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  5826. 16:06:56.963 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
  5827. 16:06:56.975 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown initiated...
  5828. 16:06:56.978 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown completed.
  5829. 16:07:01.680 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.0.Final
  5830. 16:07:01.773 [restartedMain] INFO com.zhyc.xps.XPSApplication - Starting XPSApplication using Java 17.0.6 with PID 22052 (E:\zhycnewprj\iotplatform\xps-server-3\xps-application\target\classes started by qzz19 in E:\zhycnewprj\iotplatform\xps-server-3)
  5831. 16:07:01.774 [restartedMain] INFO com.zhyc.xps.XPSApplication - The following 1 profile is active: "local"
  5832. 16:07:01.904 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
  5833. 16:07:01.904 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
  5834. 16:07:04.374 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
  5835. 16:07:04.377 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  5836. 16:07:04.485 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 93 ms. Found 0 Redis repository interfaces.
  5837. 16:07:04.657 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created.
  5838. 16:07:04.672 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created.
  5839. 16:07:05.459 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  5840. 16:07:05.459 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 3554 ms
  5841. 16:07:07.956 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor
  5842. 16:07:07.968 [restartedMain] INFO o.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  5843. 16:07:07.968 [restartedMain] INFO org.quartz.core.QuartzScheduler - Quartz Scheduler v.2.3.2 created.
  5844. 16:07:07.969 [restartedMain] INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized.
  5845. 16:07:07.970 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
  5846. Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  5847. NOT STARTED.
  5848. Currently in standby mode.
  5849. Number of jobs executed: 0
  5850. Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  5851. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
  5852. 16:07:07.970 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  5853. 16:07:07.970 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2
  5854. 16:07:07.970 [restartedMain] INFO org.quartz.core.QuartzScheduler - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@3a399c45
  5855. 16:07:10.663 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer - LiveReload server is running on port 35729
  5856. 16:07:10.669 [restartedMain] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 15 endpoint(s) beneath base path '/actuator/z'
  5857. 16:07:10.832 [restartedMain] INFO io.undertow.websockets.jsr - UT026003: Adding annotated server endpoint class com.zhyc.xps.common.ws.WebSocketServer for path /websocket/link
  5858. 16:07:10.875 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  5859. 16:07:10.876 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 1 subscriber(s).
  5860. 16:07:10.876 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - started bean '_org.springframework.integration.errorLogger'
  5861. 16:07:10.901 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  5862. 16:07:10.914 [restartedMain] INFO org.xnio - XNIO version 3.8.8.Final
  5863. 16:07:10.924 [restartedMain] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.8.Final
  5864. 16:07:10.960 [restartedMain] INFO org.jboss.threads - JBoss Threads version 3.5.0.Final
  5865. 16:07:11.019 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 1788 (http)
  5866. 16:07:11.020 [restartedMain] INFO o.s.s.quartz.SchedulerFactoryBean - Starting Quartz Scheduler now
  5867. 16:07:11.020 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  5868. 16:07:11.047 [restartedMain] INFO com.zhyc.xps.XPSApplication - Started XPSApplication in 10.316 seconds (process running for 11.575)
  5869. 16:07:11.049 [restartedMain] INFO com.zhyc.xps.sys.job.InitSystemJob - 初始化系统定时任务
  5870. 16:07:11.058 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Starting...
  5871. 16:07:11.708 [restartedMain] INFO p6spy - 2023-09-07 16:07:11 | Time Consuming: 36 ms | Connection: statement-0 | SQL: SELECT 1
  5872. 16:07:11.721 [restartedMain] INFO com.zaxxer.hikari.pool.HikariPool - DatebookHikariCP - Added connection com.p6spy.engine.wrapper.ConnectionWrapper@78b30c18
  5873. 16:07:11.725 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Start completed.
  5874. 16:07:11.833 [restartedMain] INFO p6spy - 2023-09-07 16:07:11 | Time Consuming: 33 ms | Connection: statement-0 | SQL: SELECT
  5875. A.job_id,
  5876. A.job_title,
  5877. A.job_desc,
  5878. A.status,
  5879. A.job_type,
  5880. A.job_code,
  5881. A.job_cron,
  5882. A.job_class_id,
  5883. B.job_class,
  5884. A.cycle_title,
  5885. A.cycle_period,
  5886. A.cycle_unit
  5887. FROM job AS A
  5888. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  5889. WHERE A.deleted_flag = 0
  5890. AND A.status = 1
  5891. ORDER BY A.job_id ASC
  5892. 16:07:11.856 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  5893. 16:07:11.858 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  5894. 16:07:12.672 [RMI TCP Connection(14)-192.168.3.5] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
  5895. 16:07:12.672 [RMI TCP Connection(14)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
  5896. 16:07:12.676 [RMI TCP Connection(14)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 3 ms
  5897. 16:07:12.678 [RMI TCP Connection(12)-192.168.3.5] INFO p6spy - 2023-09-07 16:07:12 | Time Consuming: 8 ms | Connection: statement-0 | SQL: SELECT 1
  5898. 16:07:12.699 [RMI TCP Connection(12)-192.168.3.5] INFO p6spy - 2023-09-07 16:07:12 | Time Consuming: 9 ms | Connection: statement-0 | SQL: SELECT 1
  5899. 16:07:13.889 [XNIO-1 task-3] INFO p6spy - 2023-09-07 16:07:13 | Time Consuming: 9 ms | Connection: statement-0 | SQL: SELECT 1
  5900. 16:07:13.914 [XNIO-1 task-3] INFO p6spy - 2023-09-07 16:07:13 | Time Consuming: 11 ms | Connection: statement-0 | SQL: SELECT
  5901. client_id,
  5902. client_title,
  5903. client_app_id,
  5904. client_app_key,
  5905. client_app_secret,
  5906. client_desc,
  5907. status,
  5908. is_fixed
  5909. FROM client
  5910. WHERE deleted_flag = 0
  5911. AND client_app_id = '10001'
  5912. AND client_app_key = '82a8bf439373e305'
  5913. 16:07:13.958 [XNIO-1 task-3] INFO p6spy - 2023-09-07 16:07:13 | Time Consuming: 13 ms | Connection: statement-0 | SQL: SELECT
  5914. A.client_id,
  5915. A.role_id,
  5916. A.permit_id,
  5917. A.permit_title,
  5918. A.permit_code,
  5919. A.permit_entry,
  5920. A.permit_desc,
  5921. A.permit_type,
  5922. A.parent_id,
  5923. A.root_id,
  5924. A.sort_no,
  5925. A.is_home
  5926. FROM s_role_permit AS A
  5927. WHERE 1 = 1
  5928. AND A.client_id = 2
  5929. AND A.role_id = 6
  5930. ORDER BY A.parent_id ASC ,A.sort_no ASC
  5931. 16:07:14.201 [XNIO-1 task-2] INFO p6spy - 2023-09-07 16:07:14 | Time Consuming: 9 ms | Connection: statement-1 | SQL: SELECT 1
  5932. 16:07:14.248 [XNIO-1 task-2] INFO p6spy - 2023-09-07 16:07:14 | Time Consuming: 37 ms | Connection: statement-1 | SQL: SELECT count(*)
  5933. FROM msg AS M
  5934. WHERE M.oc_id = 406283
  5935. AND (
  5936. EXISTS (
  5937. SELECT 1 FROM msg_to TT
  5938. WHERE M.oc_id = TT.oc_id AND M.msg_id = TT.msg_id AND TT.msg_to_id = 406283 AND TT.status=0
  5939. ) OR
  5940. EXISTS (
  5941. SELECT 1 FROM msg_cc CC
  5942. WHERE M.oc_id = CC.oc_id AND M.msg_id = CC.msg_id AND CC.msg_cc_id = 406283 AND CC.status=0
  5943. )
  5944. )
  5945. 16:07:14.290 [XNIO-1 task-3] INFO p6spy - 2023-09-07 16:07:14 | Time Consuming: 11 ms | Connection: statement-0 | SQL: SELECT count(0) FROM goaf_devinfo WHERE oc_id = 406283
  5946. 16:07:14.303 [XNIO-1 task-3] INFO p6spy - 2023-09-07 16:07:14 | Time Consuming: 10 ms | Connection: statement-0 | SQL: SELECT *
  5947. FROM goaf_devinfo
  5948. where oc_id = 406283
  5949. LIMIT 10
  5950. 16:07:14.324 [XNIO-1 task-3] INFO p6spy - 2023-09-07 16:07:14 | Time Consuming: 12 ms | Connection: statement-0 | SQL: SELECT *
  5951. FROM goaf_sensor
  5952. where oc_id = 406283
  5953. AND goaf_dev_name = 'other'
  5954. 16:07:14.341 [XNIO-1 task-3] INFO p6spy - 2023-09-07 16:07:14 | Time Consuming: 11 ms | Connection: statement-0 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  5955. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  5956. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  5957. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  5958. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  5959. FROM goaf_sensordata AS A
  5960. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  5961. WHERE A.oc_id = 406283
  5962. AND A.goaf_sensor_id = 442129
  5963. ORDER BY A.goaf_datareport_time DESC
  5964. LIMIT 1
  5965. 16:07:14.356 [XNIO-1 task-3] INFO p6spy - 2023-09-07 16:07:14 | Time Consuming: 11 ms | Connection: statement-0 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  5966. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  5967. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  5968. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  5969. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  5970. FROM goaf_sensordata AS A
  5971. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  5972. WHERE A.oc_id = 406283
  5973. AND A.goaf_sensor_id = 442199
  5974. ORDER BY A.goaf_datareport_time DESC
  5975. LIMIT 1
  5976. 16:07:14.368 [XNIO-1 task-3] INFO p6spy - 2023-09-07 16:07:14 | Time Consuming: 10 ms | Connection: statement-0 | SQL: SELECT *
  5977. FROM goaf_sensor
  5978. where oc_id = 406283
  5979. AND goaf_dev_name = 'waterpump'
  5980. 16:07:14.381 [XNIO-1 task-3] INFO p6spy - 2023-09-07 16:07:14 | Time Consuming: 10 ms | Connection: statement-0 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  5981. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  5982. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  5983. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  5984. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  5985. FROM goaf_sensordata AS A
  5986. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  5987. WHERE A.oc_id = 406283
  5988. AND A.goaf_sensor_id = 442136
  5989. ORDER BY A.goaf_datareport_time DESC
  5990. LIMIT 1
  5991. 16:07:14.399 [XNIO-1 task-3] INFO p6spy - 2023-09-07 16:07:14 | Time Consuming: 16 ms | Connection: statement-0 | SQL: SELECT *
  5992. FROM goaf_sensor
  5993. where oc_id = 406283
  5994. AND goaf_dev_name = 'machinery'
  5995. 16:07:14.421 [XNIO-1 task-3] INFO p6spy - 2023-09-07 16:07:14 | Time Consuming: 20 ms | Connection: statement-0 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  5996. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  5997. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  5998. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  5999. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  6000. FROM goaf_sensordata AS A
  6001. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  6002. WHERE A.oc_id = 406283
  6003. AND A.goaf_sensor_id = 442137
  6004. ORDER BY A.goaf_datareport_time DESC
  6005. LIMIT 1
  6006. 16:07:14.433 [XNIO-1 task-3] INFO p6spy - 2023-09-07 16:07:14 | Time Consuming: 10 ms | Connection: statement-0 | SQL: SELECT *
  6007. FROM goaf_sensor
  6008. where oc_id = 406283
  6009. AND goaf_dev_name = 'compress'
  6010. 16:07:14.448 [XNIO-1 task-3] INFO p6spy - 2023-09-07 16:07:14 | Time Consuming: 11 ms | Connection: statement-0 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  6011. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  6012. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  6013. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  6014. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  6015. FROM goaf_sensordata AS A
  6016. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  6017. WHERE A.oc_id = 406283
  6018. AND A.goaf_sensor_id = 442135
  6019. ORDER BY A.goaf_datareport_time DESC
  6020. LIMIT 1
  6021. 16:07:14.462 [XNIO-1 task-3] INFO p6spy - 2023-09-07 16:07:14 | Time Consuming: 11 ms | Connection: statement-0 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  6022. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  6023. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  6024. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  6025. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  6026. FROM goaf_sensordata AS A
  6027. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  6028. WHERE A.oc_id = 406283
  6029. AND A.goaf_sensor_id = 442139
  6030. ORDER BY A.goaf_datareport_time DESC
  6031. LIMIT 1
  6032. 16:07:37.396 [XNIO-1 task-3] INFO p6spy - 2023-09-07 16:07:37 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  6033. 16:07:37.396 [XNIO-1 task-2] INFO p6spy - 2023-09-07 16:07:37 | Time Consuming: 3 ms | Connection: statement-1 | SQL: SELECT 1
  6034. 16:07:37.397 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:07:37 | Time Consuming: 3 ms | Connection: statement-2 | SQL: SELECT 1
  6035. 16:07:37.405 [XNIO-1 task-3] INFO p6spy - 2023-09-07 16:07:37 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT count(0) FROM goaf_devinfo WHERE oc_id = 406283
  6036. 16:07:37.406 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:07:37 | Time Consuming: 4 ms | Connection: statement-2 | SQL: SELECT *
  6037. FROM goaf_baseinfo
  6038. WHERE oc_id = 406283
  6039. 16:07:37.406 [XNIO-1 task-2] INFO p6spy - 2023-09-07 16:07:37 | Time Consuming: 5 ms | Connection: statement-1 | SQL: SELECT *
  6040. FROM goaf_syscfg
  6041. WHERE oc_id = 406283
  6042. 16:07:37.409 [XNIO-1 task-3] INFO p6spy - 2023-09-07 16:07:37 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT *
  6043. FROM goaf_devinfo
  6044. where oc_id = 406283
  6045. LIMIT 10
  6046. 16:07:39.160 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:07:39 | Time Consuming: 4 ms | Connection: statement-2 | SQL: SELECT 1
  6047. 16:07:39.170 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:07:39 | Time Consuming: 4 ms | Connection: statement-2 | SQL: SELECT count(0) FROM goaf_devinfo WHERE oc_id = 406283
  6048. 16:07:39.176 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:07:39 | Time Consuming: 4 ms | Connection: statement-2 | SQL: SELECT *
  6049. FROM goaf_devinfo
  6050. where oc_id = 406283
  6051. LIMIT 10
  6052. 16:07:39.180 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:07:39 | Time Consuming: 4 ms | Connection: statement-2 | SQL: SELECT *
  6053. FROM goaf_sensor
  6054. where oc_id = 406283
  6055. AND goaf_dev_name = 'other'
  6056. 16:07:39.186 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:07:39 | Time Consuming: 4 ms | Connection: statement-2 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  6057. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  6058. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  6059. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  6060. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  6061. FROM goaf_sensordata AS A
  6062. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  6063. WHERE A.oc_id = 406283
  6064. AND A.goaf_sensor_id = 442129
  6065. ORDER BY A.goaf_datareport_time DESC
  6066. LIMIT 1
  6067. 16:07:39.192 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:07:39 | Time Consuming: 4 ms | Connection: statement-2 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  6068. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  6069. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  6070. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  6071. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  6072. FROM goaf_sensordata AS A
  6073. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  6074. WHERE A.oc_id = 406283
  6075. AND A.goaf_sensor_id = 442199
  6076. ORDER BY A.goaf_datareport_time DESC
  6077. LIMIT 1
  6078. 16:07:39.196 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:07:39 | Time Consuming: 3 ms | Connection: statement-2 | SQL: SELECT *
  6079. FROM goaf_sensor
  6080. where oc_id = 406283
  6081. AND goaf_dev_name = 'waterpump'
  6082. 16:07:39.205 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:07:39 | Time Consuming: 7 ms | Connection: statement-2 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  6083. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  6084. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  6085. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  6086. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  6087. FROM goaf_sensordata AS A
  6088. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  6089. WHERE A.oc_id = 406283
  6090. AND A.goaf_sensor_id = 442136
  6091. ORDER BY A.goaf_datareport_time DESC
  6092. LIMIT 1
  6093. 16:07:39.212 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:07:39 | Time Consuming: 5 ms | Connection: statement-2 | SQL: SELECT *
  6094. FROM goaf_sensor
  6095. where oc_id = 406283
  6096. AND goaf_dev_name = 'machinery'
  6097. 16:07:39.217 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:07:39 | Time Consuming: 4 ms | Connection: statement-2 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  6098. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  6099. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  6100. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  6101. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  6102. FROM goaf_sensordata AS A
  6103. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  6104. WHERE A.oc_id = 406283
  6105. AND A.goaf_sensor_id = 442137
  6106. ORDER BY A.goaf_datareport_time DESC
  6107. LIMIT 1
  6108. 16:07:39.222 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:07:39 | Time Consuming: 3 ms | Connection: statement-2 | SQL: SELECT *
  6109. FROM goaf_sensor
  6110. where oc_id = 406283
  6111. AND goaf_dev_name = 'compress'
  6112. 16:07:39.227 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:07:39 | Time Consuming: 4 ms | Connection: statement-2 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  6113. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  6114. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  6115. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  6116. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  6117. FROM goaf_sensordata AS A
  6118. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  6119. WHERE A.oc_id = 406283
  6120. AND A.goaf_sensor_id = 442135
  6121. ORDER BY A.goaf_datareport_time DESC
  6122. LIMIT 1
  6123. 16:07:39.234 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:07:39 | Time Consuming: 4 ms | Connection: statement-2 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  6124. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  6125. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  6126. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  6127. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  6128. FROM goaf_sensordata AS A
  6129. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  6130. WHERE A.oc_id = 406283
  6131. AND A.goaf_sensor_id = 442139
  6132. ORDER BY A.goaf_datareport_time DESC
  6133. LIMIT 1
  6134. 16:08:08.381 [XNIO-1 task-3] INFO p6spy - 2023-09-07 16:08:08 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  6135. 16:08:08.381 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:08:08 | Time Consuming: 3 ms | Connection: statement-2 | SQL: SELECT 1
  6136. 16:08:08.381 [XNIO-1 task-2] INFO p6spy - 2023-09-07 16:08:08 | Time Consuming: 4 ms | Connection: statement-1 | SQL: SELECT 1
  6137. 16:08:08.387 [XNIO-1 task-3] INFO p6spy - 2023-09-07 16:08:08 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT *
  6138. FROM goaf_syscfg
  6139. WHERE oc_id = 406283
  6140. 16:08:08.388 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:08:08 | Time Consuming: 3 ms | Connection: statement-2 | SQL: SELECT count(0) FROM goaf_devinfo WHERE oc_id = 406283
  6141. 16:08:08.388 [XNIO-1 task-2] INFO p6spy - 2023-09-07 16:08:08 | Time Consuming: 3 ms | Connection: statement-1 | SQL: SELECT *
  6142. FROM goaf_baseinfo
  6143. WHERE oc_id = 406283
  6144. 16:08:08.392 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:08:08 | Time Consuming: 3 ms | Connection: statement-2 | SQL: SELECT *
  6145. FROM goaf_devinfo
  6146. where oc_id = 406283
  6147. LIMIT 10
  6148. 16:08:09.929 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:08:09 | Time Consuming: 3 ms | Connection: statement-2 | SQL: SELECT 1
  6149. 16:08:09.937 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:08:09 | Time Consuming: 3 ms | Connection: statement-2 | SQL: SELECT count(0) FROM goaf_devinfo WHERE oc_id = 406283
  6150. 16:08:09.942 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:08:09 | Time Consuming: 3 ms | Connection: statement-2 | SQL: SELECT *
  6151. FROM goaf_devinfo
  6152. where oc_id = 406283
  6153. LIMIT 10
  6154. 16:08:09.947 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:08:09 | Time Consuming: 3 ms | Connection: statement-2 | SQL: SELECT *
  6155. FROM goaf_sensor
  6156. where oc_id = 406283
  6157. AND goaf_dev_name = 'other'
  6158. 16:08:09.953 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:08:09 | Time Consuming: 5 ms | Connection: statement-2 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  6159. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  6160. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  6161. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  6162. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  6163. FROM goaf_sensordata AS A
  6164. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  6165. WHERE A.oc_id = 406283
  6166. AND A.goaf_sensor_id = 442129
  6167. ORDER BY A.goaf_datareport_time DESC
  6168. LIMIT 1
  6169. 16:08:09.958 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:08:09 | Time Consuming: 3 ms | Connection: statement-2 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  6170. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  6171. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  6172. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  6173. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  6174. FROM goaf_sensordata AS A
  6175. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  6176. WHERE A.oc_id = 406283
  6177. AND A.goaf_sensor_id = 442199
  6178. ORDER BY A.goaf_datareport_time DESC
  6179. LIMIT 1
  6180. 16:08:09.962 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:08:09 | Time Consuming: 3 ms | Connection: statement-2 | SQL: SELECT *
  6181. FROM goaf_sensor
  6182. where oc_id = 406283
  6183. AND goaf_dev_name = 'waterpump'
  6184. 16:08:09.969 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:08:09 | Time Consuming: 4 ms | Connection: statement-2 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  6185. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  6186. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  6187. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  6188. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  6189. FROM goaf_sensordata AS A
  6190. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  6191. WHERE A.oc_id = 406283
  6192. AND A.goaf_sensor_id = 442136
  6193. ORDER BY A.goaf_datareport_time DESC
  6194. LIMIT 1
  6195. 16:08:09.973 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:08:09 | Time Consuming: 3 ms | Connection: statement-2 | SQL: SELECT *
  6196. FROM goaf_sensor
  6197. where oc_id = 406283
  6198. AND goaf_dev_name = 'machinery'
  6199. 16:08:09.981 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:08:09 | Time Consuming: 4 ms | Connection: statement-2 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  6200. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  6201. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  6202. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  6203. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  6204. FROM goaf_sensordata AS A
  6205. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  6206. WHERE A.oc_id = 406283
  6207. AND A.goaf_sensor_id = 442137
  6208. ORDER BY A.goaf_datareport_time DESC
  6209. LIMIT 1
  6210. 16:08:09.986 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:08:09 | Time Consuming: 3 ms | Connection: statement-2 | SQL: SELECT *
  6211. FROM goaf_sensor
  6212. where oc_id = 406283
  6213. AND goaf_dev_name = 'compress'
  6214. 16:08:09.992 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:08:09 | Time Consuming: 4 ms | Connection: statement-2 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  6215. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  6216. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  6217. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  6218. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  6219. FROM goaf_sensordata AS A
  6220. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  6221. WHERE A.oc_id = 406283
  6222. AND A.goaf_sensor_id = 442135
  6223. ORDER BY A.goaf_datareport_time DESC
  6224. LIMIT 1
  6225. 16:08:09.997 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:08:09 | Time Consuming: 3 ms | Connection: statement-2 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  6226. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  6227. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  6228. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  6229. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  6230. FROM goaf_sensordata AS A
  6231. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  6232. WHERE A.oc_id = 406283
  6233. AND A.goaf_sensor_id = 442139
  6234. ORDER BY A.goaf_datareport_time DESC
  6235. LIMIT 1
  6236. 16:08:11.254 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:08:11 | Time Consuming: 3 ms | Connection: statement-2 | SQL: SELECT 1
  6237. 16:08:11.262 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:08:11 | Time Consuming: 3 ms | Connection: statement-2 | SQL: SELECT
  6238. client_id,
  6239. client_title,
  6240. client_app_id,
  6241. client_app_key,
  6242. client_app_secret,
  6243. client_desc,
  6244. status,
  6245. is_fixed
  6246. FROM client
  6247. WHERE deleted_flag = 0
  6248. AND client_app_id = '10001'
  6249. AND client_app_key = '82a8bf439373e305'
  6250. 16:08:11.276 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:08:11 | Time Consuming: 4 ms | Connection: statement-2 | SQL: SELECT
  6251. A.client_id,
  6252. A.role_id,
  6253. A.permit_id,
  6254. A.permit_title,
  6255. A.permit_code,
  6256. A.permit_entry,
  6257. A.permit_desc,
  6258. A.permit_type,
  6259. A.parent_id,
  6260. A.root_id,
  6261. A.sort_no,
  6262. A.is_home
  6263. FROM s_role_permit AS A
  6264. WHERE 1 = 1
  6265. AND A.client_id = 2
  6266. AND A.role_id = 6
  6267. ORDER BY A.parent_id ASC ,A.sort_no ASC
  6268. 16:08:11.517 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:08:11 | Time Consuming: 28 ms | Connection: statement-2 | SQL: SELECT count(*)
  6269. FROM msg AS M
  6270. WHERE M.oc_id = 406283
  6271. AND (
  6272. EXISTS (
  6273. SELECT 1 FROM msg_to TT
  6274. WHERE M.oc_id = TT.oc_id AND M.msg_id = TT.msg_id AND TT.msg_to_id = 406283 AND TT.status=0
  6275. ) OR
  6276. EXISTS (
  6277. SELECT 1 FROM msg_cc CC
  6278. WHERE M.oc_id = CC.oc_id AND M.msg_id = CC.msg_id AND CC.msg_cc_id = 406283 AND CC.status=0
  6279. )
  6280. )
  6281. 16:08:12.072 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:08:12 | Time Consuming: 3 ms | Connection: statement-2 | SQL: SELECT 1
  6282. 16:08:12.082 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:08:12 | Time Consuming: 3 ms | Connection: statement-2 | SQL: SELECT *
  6283. FROM goaf_devinfo
  6284. where oc_id = 406283
  6285. 16:08:12.087 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:08:12 | Time Consuming: 3 ms | Connection: statement-2 | SQL: SELECT *
  6286. FROM goaf_sensor
  6287. where oc_id = 406283
  6288. AND goaf_dev_name = 'other'
  6289. 16:08:12.091 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:08:12 | Time Consuming: 3 ms | Connection: statement-2 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  6290. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  6291. FROM goaf_sensor AS C
  6292. LEFT JOIN
  6293. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  6294. FROM goaf_sensordata
  6295. ORDER BY goaf_datareport_time DESC
  6296. LIMIT 1) AS A ON A.goaf_sensor_id = C.goaf_sensor_id
  6297. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  6298. WHERE C.goaf_sensor_id = 442129
  6299. 16:08:12.094 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:08:12 | Time Consuming: 3 ms | Connection: statement-2 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  6300. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  6301. FROM goaf_sensor AS C
  6302. LEFT JOIN
  6303. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  6304. FROM goaf_sensordata
  6305. ORDER BY goaf_datareport_time DESC
  6306. LIMIT 1) AS A ON A.goaf_sensor_id = C.goaf_sensor_id
  6307. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  6308. WHERE C.goaf_sensor_id = 442199
  6309. 16:08:12.100 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:08:12 | Time Consuming: 4 ms | Connection: statement-2 | SQL: SELECT *
  6310. FROM goaf_sensor
  6311. where oc_id = 406283
  6312. AND goaf_dev_name = 'waterpump'
  6313. 16:08:12.105 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:08:12 | Time Consuming: 4 ms | Connection: statement-2 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  6314. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  6315. FROM goaf_sensor AS C
  6316. LEFT JOIN
  6317. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  6318. FROM goaf_sensordata
  6319. ORDER BY goaf_datareport_time DESC
  6320. LIMIT 1) AS A ON A.goaf_sensor_id = C.goaf_sensor_id
  6321. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  6322. WHERE C.goaf_sensor_id = 442136
  6323. 16:08:12.111 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:08:12 | Time Consuming: 6 ms | Connection: statement-2 | SQL: SELECT *
  6324. FROM goaf_sensor
  6325. where oc_id = 406283
  6326. AND goaf_dev_name = 'machinery'
  6327. 16:08:12.124 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:08:12 | Time Consuming: 12 ms | Connection: statement-2 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  6328. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  6329. FROM goaf_sensor AS C
  6330. LEFT JOIN
  6331. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  6332. FROM goaf_sensordata
  6333. ORDER BY goaf_datareport_time DESC
  6334. LIMIT 1) AS A ON A.goaf_sensor_id = C.goaf_sensor_id
  6335. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  6336. WHERE C.goaf_sensor_id = 442137
  6337. 16:08:12.133 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:08:12 | Time Consuming: 9 ms | Connection: statement-2 | SQL: SELECT *
  6338. FROM goaf_sensor
  6339. where oc_id = 406283
  6340. AND goaf_dev_name = 'compress'
  6341. 16:08:12.142 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:08:12 | Time Consuming: 7 ms | Connection: statement-2 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  6342. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  6343. FROM goaf_sensor AS C
  6344. LEFT JOIN
  6345. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  6346. FROM goaf_sensordata
  6347. ORDER BY goaf_datareport_time DESC
  6348. LIMIT 1) AS A ON A.goaf_sensor_id = C.goaf_sensor_id
  6349. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  6350. WHERE C.goaf_sensor_id = 442135
  6351. 16:08:12.153 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:08:12 | Time Consuming: 10 ms | Connection: statement-2 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  6352. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  6353. FROM goaf_sensor AS C
  6354. LEFT JOIN
  6355. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  6356. FROM goaf_sensordata
  6357. ORDER BY goaf_datareport_time DESC
  6358. LIMIT 1) AS A ON A.goaf_sensor_id = C.goaf_sensor_id
  6359. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  6360. WHERE C.goaf_sensor_id = 442139
  6361. 16:08:17.142 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:08:17 | Time Consuming: 3 ms | Connection: statement-2 | SQL: SELECT 1
  6362. 16:08:17.150 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:08:17 | Time Consuming: 3 ms | Connection: statement-2 | SQL: SELECT *
  6363. FROM goaf_devinfo
  6364. where oc_id = 406283
  6365. 16:08:17.154 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:08:17 | Time Consuming: 3 ms | Connection: statement-2 | SQL: SELECT *
  6366. FROM goaf_sensor
  6367. where oc_id = 406283
  6368. AND goaf_dev_name = 'other'
  6369. 16:08:17.159 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:08:17 | Time Consuming: 4 ms | Connection: statement-2 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  6370. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  6371. FROM goaf_sensor AS C
  6372. LEFT JOIN
  6373. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  6374. FROM goaf_sensordata
  6375. ORDER BY goaf_datareport_time DESC
  6376. LIMIT 1) AS A ON A.goaf_sensor_id = C.goaf_sensor_id
  6377. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  6378. WHERE C.goaf_sensor_id = 442129
  6379. 16:08:17.163 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:08:17 | Time Consuming: 3 ms | Connection: statement-2 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  6380. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  6381. FROM goaf_sensor AS C
  6382. LEFT JOIN
  6383. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  6384. FROM goaf_sensordata
  6385. ORDER BY goaf_datareport_time DESC
  6386. LIMIT 1) AS A ON A.goaf_sensor_id = C.goaf_sensor_id
  6387. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  6388. WHERE C.goaf_sensor_id = 442199
  6389. 16:08:17.167 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:08:17 | Time Consuming: 3 ms | Connection: statement-2 | SQL: SELECT *
  6390. FROM goaf_sensor
  6391. where oc_id = 406283
  6392. AND goaf_dev_name = 'waterpump'
  6393. 16:08:17.174 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:08:17 | Time Consuming: 6 ms | Connection: statement-2 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  6394. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  6395. FROM goaf_sensor AS C
  6396. LEFT JOIN
  6397. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  6398. FROM goaf_sensordata
  6399. ORDER BY goaf_datareport_time DESC
  6400. LIMIT 1) AS A ON A.goaf_sensor_id = C.goaf_sensor_id
  6401. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  6402. WHERE C.goaf_sensor_id = 442136
  6403. 16:08:17.178 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:08:17 | Time Consuming: 4 ms | Connection: statement-2 | SQL: SELECT *
  6404. FROM goaf_sensor
  6405. where oc_id = 406283
  6406. AND goaf_dev_name = 'machinery'
  6407. 16:08:17.183 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:08:17 | Time Consuming: 3 ms | Connection: statement-2 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  6408. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  6409. FROM goaf_sensor AS C
  6410. LEFT JOIN
  6411. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  6412. FROM goaf_sensordata
  6413. ORDER BY goaf_datareport_time DESC
  6414. LIMIT 1) AS A ON A.goaf_sensor_id = C.goaf_sensor_id
  6415. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  6416. WHERE C.goaf_sensor_id = 442137
  6417. 16:08:17.187 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:08:17 | Time Consuming: 3 ms | Connection: statement-2 | SQL: SELECT *
  6418. FROM goaf_sensor
  6419. where oc_id = 406283
  6420. AND goaf_dev_name = 'compress'
  6421. 16:08:17.191 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:08:17 | Time Consuming: 3 ms | Connection: statement-2 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  6422. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  6423. FROM goaf_sensor AS C
  6424. LEFT JOIN
  6425. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  6426. FROM goaf_sensordata
  6427. ORDER BY goaf_datareport_time DESC
  6428. LIMIT 1) AS A ON A.goaf_sensor_id = C.goaf_sensor_id
  6429. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  6430. WHERE C.goaf_sensor_id = 442135
  6431. 16:08:17.195 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:08:17 | Time Consuming: 3 ms | Connection: statement-2 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  6432. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  6433. FROM goaf_sensor AS C
  6434. LEFT JOIN
  6435. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  6436. FROM goaf_sensordata
  6437. ORDER BY goaf_datareport_time DESC
  6438. LIMIT 1) AS A ON A.goaf_sensor_id = C.goaf_sensor_id
  6439. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  6440. WHERE C.goaf_sensor_id = 442139
  6441. 16:08:36.255 [XNIO-1 task-3] INFO p6spy - 2023-09-07 16:08:36 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  6442. 16:08:36.255 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:08:36 | Time Consuming: 4 ms | Connection: statement-2 | SQL: SELECT 1
  6443. 16:08:36.255 [XNIO-1 task-2] INFO p6spy - 2023-09-07 16:08:36 | Time Consuming: 4 ms | Connection: statement-1 | SQL: SELECT 1
  6444. 16:08:36.263 [XNIO-1 task-3] INFO p6spy - 2023-09-07 16:08:36 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT *
  6445. FROM goaf_syscfg
  6446. WHERE oc_id = 406283
  6447. 16:08:36.263 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:08:36 | Time Consuming: 3 ms | Connection: statement-2 | SQL: SELECT *
  6448. FROM goaf_baseinfo
  6449. WHERE oc_id = 406283
  6450. 16:08:36.263 [XNIO-1 task-2] INFO p6spy - 2023-09-07 16:08:36 | Time Consuming: 3 ms | Connection: statement-1 | SQL: SELECT count(0) FROM goaf_devinfo WHERE oc_id = 406283
  6451. 16:08:36.267 [XNIO-1 task-2] INFO p6spy - 2023-09-07 16:08:36 | Time Consuming: 3 ms | Connection: statement-1 | SQL: SELECT *
  6452. FROM goaf_devinfo
  6453. where oc_id = 406283
  6454. LIMIT 10
  6455. 16:08:37.821 [XNIO-1 task-2] INFO p6spy - 2023-09-07 16:08:37 | Time Consuming: 3 ms | Connection: statement-1 | SQL: SELECT 1
  6456. 16:08:37.832 [XNIO-1 task-2] INFO p6spy - 2023-09-07 16:08:37 | Time Consuming: 5 ms | Connection: statement-1 | SQL: SELECT count(0) FROM goaf_devinfo WHERE oc_id = 406283
  6457. 16:08:37.837 [XNIO-1 task-2] INFO p6spy - 2023-09-07 16:08:37 | Time Consuming: 4 ms | Connection: statement-1 | SQL: SELECT *
  6458. FROM goaf_devinfo
  6459. where oc_id = 406283
  6460. LIMIT 10
  6461. 16:08:37.843 [XNIO-1 task-2] INFO p6spy - 2023-09-07 16:08:37 | Time Consuming: 4 ms | Connection: statement-1 | SQL: SELECT *
  6462. FROM goaf_sensor
  6463. where oc_id = 406283
  6464. AND goaf_dev_name = 'other'
  6465. 16:08:37.849 [XNIO-1 task-2] INFO p6spy - 2023-09-07 16:08:37 | Time Consuming: 4 ms | Connection: statement-1 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  6466. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  6467. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  6468. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  6469. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  6470. FROM goaf_sensordata AS A
  6471. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  6472. WHERE A.oc_id = 406283
  6473. AND A.goaf_sensor_id = 442129
  6474. ORDER BY A.goaf_datareport_time DESC
  6475. LIMIT 1
  6476. 16:08:37.858 [XNIO-1 task-2] INFO p6spy - 2023-09-07 16:08:37 | Time Consuming: 5 ms | Connection: statement-1 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  6477. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  6478. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  6479. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  6480. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  6481. FROM goaf_sensordata AS A
  6482. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  6483. WHERE A.oc_id = 406283
  6484. AND A.goaf_sensor_id = 442199
  6485. ORDER BY A.goaf_datareport_time DESC
  6486. LIMIT 1
  6487. 16:08:37.864 [XNIO-1 task-2] INFO p6spy - 2023-09-07 16:08:37 | Time Consuming: 5 ms | Connection: statement-1 | SQL: SELECT *
  6488. FROM goaf_sensor
  6489. where oc_id = 406283
  6490. AND goaf_dev_name = 'waterpump'
  6491. 16:08:37.871 [XNIO-1 task-2] INFO p6spy - 2023-09-07 16:08:37 | Time Consuming: 5 ms | Connection: statement-1 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  6492. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  6493. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  6494. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  6495. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  6496. FROM goaf_sensordata AS A
  6497. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  6498. WHERE A.oc_id = 406283
  6499. AND A.goaf_sensor_id = 442136
  6500. ORDER BY A.goaf_datareport_time DESC
  6501. LIMIT 1
  6502. 16:08:37.876 [XNIO-1 task-2] INFO p6spy - 2023-09-07 16:08:37 | Time Consuming: 3 ms | Connection: statement-1 | SQL: SELECT *
  6503. FROM goaf_sensor
  6504. where oc_id = 406283
  6505. AND goaf_dev_name = 'machinery'
  6506. 16:08:37.881 [XNIO-1 task-2] INFO p6spy - 2023-09-07 16:08:37 | Time Consuming: 3 ms | Connection: statement-1 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  6507. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  6508. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  6509. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  6510. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  6511. FROM goaf_sensordata AS A
  6512. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  6513. WHERE A.oc_id = 406283
  6514. AND A.goaf_sensor_id = 442137
  6515. ORDER BY A.goaf_datareport_time DESC
  6516. LIMIT 1
  6517. 16:08:37.885 [XNIO-1 task-2] INFO p6spy - 2023-09-07 16:08:37 | Time Consuming: 3 ms | Connection: statement-1 | SQL: SELECT *
  6518. FROM goaf_sensor
  6519. where oc_id = 406283
  6520. AND goaf_dev_name = 'compress'
  6521. 16:08:37.891 [XNIO-1 task-2] INFO p6spy - 2023-09-07 16:08:37 | Time Consuming: 4 ms | Connection: statement-1 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  6522. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  6523. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  6524. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  6525. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  6526. FROM goaf_sensordata AS A
  6527. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  6528. WHERE A.oc_id = 406283
  6529. AND A.goaf_sensor_id = 442135
  6530. ORDER BY A.goaf_datareport_time DESC
  6531. LIMIT 1
  6532. 16:08:37.896 [XNIO-1 task-2] INFO p6spy - 2023-09-07 16:08:37 | Time Consuming: 3 ms | Connection: statement-1 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  6533. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  6534. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  6535. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  6536. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  6537. FROM goaf_sensordata AS A
  6538. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  6539. WHERE A.oc_id = 406283
  6540. AND A.goaf_sensor_id = 442139
  6541. ORDER BY A.goaf_datareport_time DESC
  6542. LIMIT 1
  6543. 16:08:51.408 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  6544. 16:08:51.409 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.4.Final
  6545. 16:08:51.411 [SpringApplicationShutdownHook] INFO io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
  6546. 16:08:51.414 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - Removing {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  6547. 16:08:51.414 [SpringApplicationShutdownHook] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 0 subscriber(s).
  6548. 16:08:51.415 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - stopped bean '_org.springframework.integration.errorLogger'
  6549. 16:08:51.424 [SpringApplicationShutdownHook] INFO o.s.j.e.a.AnnotationMBeanExporter - Could not unregister MBean [com.github.tobato.fastdfs.domain.conn:name=fdfsConnectionPool,type=FdfsConnectionPool] as said MBean is not registered (perhaps already unregistered by an external process)
  6550. 16:08:51.426 [SpringApplicationShutdownHook] INFO o.s.s.quartz.SchedulerFactoryBean - Shutting down Quartz Scheduler
  6551. 16:08:51.426 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
  6552. 16:08:51.426 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  6553. 16:08:51.426 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
  6554. 16:08:51.468 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown initiated...
  6555. 16:08:51.472 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown completed.
  6556. 16:09:23.834 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.0.Final
  6557. 16:09:23.883 [restartedMain] INFO com.zhyc.xps.XPSApplication - Starting XPSApplication using Java 17.0.6 with PID 16004 (E:\zhycnewprj\iotplatform\xps-server-3\xps-application\target\classes started by qzz19 in E:\zhycnewprj\iotplatform\xps-server-3)
  6558. 16:09:23.884 [restartedMain] INFO com.zhyc.xps.XPSApplication - The following 1 profile is active: "local"
  6559. 16:09:23.938 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
  6560. 16:09:23.938 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
  6561. 16:09:25.815 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
  6562. 16:09:25.819 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  6563. 16:09:25.915 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 82 ms. Found 0 Redis repository interfaces.
  6564. 16:09:26.084 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created.
  6565. 16:09:26.100 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created.
  6566. 16:09:26.941 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  6567. 16:09:26.941 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 3003 ms
  6568. 16:09:29.568 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor
  6569. 16:09:29.579 [restartedMain] INFO o.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  6570. 16:09:29.579 [restartedMain] INFO org.quartz.core.QuartzScheduler - Quartz Scheduler v.2.3.2 created.
  6571. 16:09:29.579 [restartedMain] INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized.
  6572. 16:09:29.580 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
  6573. Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  6574. NOT STARTED.
  6575. Currently in standby mode.
  6576. Number of jobs executed: 0
  6577. Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  6578. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
  6579. 16:09:29.580 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  6580. 16:09:29.580 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2
  6581. 16:09:29.580 [restartedMain] INFO org.quartz.core.QuartzScheduler - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@3c53b136
  6582. 16:09:31.359 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer - LiveReload server is running on port 35729
  6583. 16:09:31.365 [restartedMain] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 15 endpoint(s) beneath base path '/actuator/z'
  6584. 16:09:31.516 [restartedMain] INFO io.undertow.websockets.jsr - UT026003: Adding annotated server endpoint class com.zhyc.xps.common.ws.WebSocketServer for path /websocket/link
  6585. 16:09:31.548 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  6586. 16:09:31.549 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 1 subscriber(s).
  6587. 16:09:31.549 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - started bean '_org.springframework.integration.errorLogger'
  6588. 16:09:31.569 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  6589. 16:09:31.579 [restartedMain] INFO org.xnio - XNIO version 3.8.8.Final
  6590. 16:09:31.590 [restartedMain] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.8.Final
  6591. 16:09:31.620 [restartedMain] INFO org.jboss.threads - JBoss Threads version 3.5.0.Final
  6592. 16:09:31.671 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 1788 (http)
  6593. 16:09:31.672 [restartedMain] INFO o.s.s.quartz.SchedulerFactoryBean - Starting Quartz Scheduler now
  6594. 16:09:31.672 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  6595. 16:09:31.701 [restartedMain] INFO com.zhyc.xps.XPSApplication - Started XPSApplication in 8.358 seconds (process running for 9.454)
  6596. 16:09:31.704 [restartedMain] INFO com.zhyc.xps.sys.job.InitSystemJob - 初始化系统定时任务
  6597. 16:09:31.711 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Starting...
  6598. 16:09:32.041 [restartedMain] INFO p6spy - 2023-09-07 16:09:32 | Time Consuming: 13 ms | Connection: statement-0 | SQL: SELECT 1
  6599. 16:09:32.046 [restartedMain] INFO com.zaxxer.hikari.pool.HikariPool - DatebookHikariCP - Added connection com.p6spy.engine.wrapper.ConnectionWrapper@505ca7a7
  6600. 16:09:32.049 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Start completed.
  6601. 16:09:32.116 [restartedMain] INFO p6spy - 2023-09-07 16:09:32 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT
  6602. A.job_id,
  6603. A.job_title,
  6604. A.job_desc,
  6605. A.status,
  6606. A.job_type,
  6607. A.job_code,
  6608. A.job_cron,
  6609. A.job_class_id,
  6610. B.job_class,
  6611. A.cycle_title,
  6612. A.cycle_period,
  6613. A.cycle_unit
  6614. FROM job AS A
  6615. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  6616. WHERE A.deleted_flag = 0
  6617. AND A.status = 1
  6618. ORDER BY A.job_id ASC
  6619. 16:09:32.137 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  6620. 16:09:32.139 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  6621. 16:09:32.710 [RMI TCP Connection(2)-192.168.3.5] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
  6622. 16:09:32.710 [RMI TCP Connection(2)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
  6623. 16:09:32.714 [RMI TCP Connection(2)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 4 ms
  6624. 16:09:32.744 [RMI TCP Connection(1)-192.168.3.5] INFO p6spy - 2023-09-07 16:09:32 | Time Consuming: 38 ms | Connection: statement-0 | SQL: SELECT 1
  6625. 16:09:32.759 [RMI TCP Connection(1)-192.168.3.5] INFO p6spy - 2023-09-07 16:09:32 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  6626. 16:10:21.786 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  6627. 16:10:21.787 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.4.Final
  6628. 16:10:21.793 [SpringApplicationShutdownHook] INFO io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
  6629. 16:10:21.795 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - Removing {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  6630. 16:10:21.796 [SpringApplicationShutdownHook] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 0 subscriber(s).
  6631. 16:10:21.797 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - stopped bean '_org.springframework.integration.errorLogger'
  6632. 16:10:21.803 [SpringApplicationShutdownHook] INFO o.s.j.e.a.AnnotationMBeanExporter - Could not unregister MBean [com.github.tobato.fastdfs.domain.conn:name=fdfsConnectionPool,type=FdfsConnectionPool] as said MBean is not registered (perhaps already unregistered by an external process)
  6633. 16:10:21.804 [SpringApplicationShutdownHook] INFO o.s.s.quartz.SchedulerFactoryBean - Shutting down Quartz Scheduler
  6634. 16:10:21.804 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
  6635. 16:10:21.804 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  6636. 16:10:21.804 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
  6637. 16:10:21.826 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown initiated...
  6638. 16:10:21.834 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown completed.
  6639. 16:10:27.423 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.0.Final
  6640. 16:10:27.475 [restartedMain] INFO com.zhyc.xps.XPSApplication - Starting XPSApplication using Java 17.0.6 with PID 11728 (E:\zhycnewprj\iotplatform\xps-server-3\xps-application\target\classes started by qzz19 in E:\zhycnewprj\iotplatform\xps-server-3)
  6641. 16:10:27.475 [restartedMain] INFO com.zhyc.xps.XPSApplication - The following 1 profile is active: "local"
  6642. 16:10:27.531 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
  6643. 16:10:27.532 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
  6644. 16:10:29.399 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
  6645. 16:10:29.403 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  6646. 16:10:29.493 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 76 ms. Found 0 Redis repository interfaces.
  6647. 16:10:29.669 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created.
  6648. 16:10:29.686 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created.
  6649. 16:10:30.495 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  6650. 16:10:30.495 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 2963 ms
  6651. 16:10:32.915 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor
  6652. 16:10:32.925 [restartedMain] INFO o.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  6653. 16:10:32.925 [restartedMain] INFO org.quartz.core.QuartzScheduler - Quartz Scheduler v.2.3.2 created.
  6654. 16:10:32.926 [restartedMain] INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized.
  6655. 16:10:32.926 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
  6656. Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  6657. NOT STARTED.
  6658. Currently in standby mode.
  6659. Number of jobs executed: 0
  6660. Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  6661. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
  6662. 16:10:32.926 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  6663. 16:10:32.926 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2
  6664. 16:10:32.926 [restartedMain] INFO org.quartz.core.QuartzScheduler - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@29022629
  6665. 16:10:34.758 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer - LiveReload server is running on port 35729
  6666. 16:10:34.764 [restartedMain] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 15 endpoint(s) beneath base path '/actuator/z'
  6667. 16:10:34.916 [restartedMain] INFO io.undertow.websockets.jsr - UT026003: Adding annotated server endpoint class com.zhyc.xps.common.ws.WebSocketServer for path /websocket/link
  6668. 16:10:34.948 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  6669. 16:10:34.948 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 1 subscriber(s).
  6670. 16:10:34.949 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - started bean '_org.springframework.integration.errorLogger'
  6671. 16:10:34.969 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  6672. 16:10:34.978 [restartedMain] INFO org.xnio - XNIO version 3.8.8.Final
  6673. 16:10:34.988 [restartedMain] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.8.Final
  6674. 16:10:35.016 [restartedMain] INFO org.jboss.threads - JBoss Threads version 3.5.0.Final
  6675. 16:10:35.066 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 1788 (http)
  6676. 16:10:35.067 [restartedMain] INFO o.s.s.quartz.SchedulerFactoryBean - Starting Quartz Scheduler now
  6677. 16:10:35.068 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  6678. 16:10:35.093 [restartedMain] INFO com.zhyc.xps.XPSApplication - Started XPSApplication in 8.155 seconds (process running for 9.118)
  6679. 16:10:35.095 [restartedMain] INFO com.zhyc.xps.sys.job.InitSystemJob - 初始化系统定时任务
  6680. 16:10:35.103 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Starting...
  6681. 16:10:35.437 [restartedMain] INFO p6spy - 2023-09-07 16:10:35 | Time Consuming: 13 ms | Connection: statement-0 | SQL: SELECT 1
  6682. 16:10:35.442 [restartedMain] INFO com.zaxxer.hikari.pool.HikariPool - DatebookHikariCP - Added connection com.p6spy.engine.wrapper.ConnectionWrapper@28c4da8b
  6683. 16:10:35.446 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Start completed.
  6684. 16:10:35.514 [restartedMain] INFO p6spy - 2023-09-07 16:10:35 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT
  6685. A.job_id,
  6686. A.job_title,
  6687. A.job_desc,
  6688. A.status,
  6689. A.job_type,
  6690. A.job_code,
  6691. A.job_cron,
  6692. A.job_class_id,
  6693. B.job_class,
  6694. A.cycle_title,
  6695. A.cycle_period,
  6696. A.cycle_unit
  6697. FROM job AS A
  6698. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  6699. WHERE A.deleted_flag = 0
  6700. AND A.status = 1
  6701. ORDER BY A.job_id ASC
  6702. 16:10:35.536 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  6703. 16:10:35.538 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  6704. 16:10:35.935 [RMI TCP Connection(6)-192.168.3.5] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
  6705. 16:10:35.936 [RMI TCP Connection(6)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
  6706. 16:10:35.940 [RMI TCP Connection(6)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 4 ms
  6707. 16:10:35.994 [RMI TCP Connection(7)-192.168.3.5] INFO p6spy - 2023-09-07 16:10:35 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  6708. 16:10:42.183 [XNIO-1 task-3] INFO p6spy - 2023-09-07 16:10:42 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT 1
  6709. 16:10:42.251 [XNIO-1 task-3] INFO p6spy - 2023-09-07 16:10:42 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT count(0) FROM goaf_devinfo WHERE oc_id = 406283
  6710. 16:10:42.259 [XNIO-1 task-3] INFO p6spy - 2023-09-07 16:10:42 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT *
  6711. FROM goaf_devinfo
  6712. where oc_id = 406283
  6713. LIMIT 10
  6714. 16:10:42.269 [XNIO-1 task-3] INFO p6spy - 2023-09-07 16:10:42 | Time Consuming: 6 ms | Connection: statement-0 | SQL: SELECT *
  6715. FROM goaf_sensor
  6716. where oc_id = 406283
  6717. AND goaf_dev_name = 'other'
  6718. 16:10:42.278 [XNIO-1 task-3] INFO p6spy - 2023-09-07 16:10:42 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  6719. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  6720. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  6721. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  6722. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  6723. FROM goaf_sensordata AS A
  6724. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  6725. WHERE A.oc_id = 406283
  6726. AND A.goaf_sensor_id = 442129
  6727. ORDER BY A.goaf_datareport_time DESC
  6728. LIMIT 1
  6729. 16:10:42.284 [XNIO-1 task-3] INFO p6spy - 2023-09-07 16:10:42 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  6730. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  6731. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  6732. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  6733. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  6734. FROM goaf_sensordata AS A
  6735. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  6736. WHERE A.oc_id = 406283
  6737. AND A.goaf_sensor_id = 442199
  6738. ORDER BY A.goaf_datareport_time DESC
  6739. LIMIT 1
  6740. 16:10:42.289 [XNIO-1 task-3] INFO p6spy - 2023-09-07 16:10:42 | Time Consuming: 4 ms | Connection: rollback-0 | SQL:
  6741. 16:10:54.023 [XNIO-1 task-3] INFO p6spy - 2023-09-07 16:10:54 | Time Consuming: 7 ms | Connection: statement-0 | SQL: SELECT 1
  6742. 16:10:54.043 [XNIO-1 task-3] INFO p6spy - 2023-09-07 16:10:54 | Time Consuming: 7 ms | Connection: statement-0 | SQL: SELECT
  6743. client_id,
  6744. client_title,
  6745. client_app_id,
  6746. client_app_key,
  6747. client_app_secret,
  6748. client_desc,
  6749. status,
  6750. is_fixed
  6751. FROM client
  6752. WHERE deleted_flag = 0
  6753. AND client_app_id = '10001'
  6754. AND client_app_key = '82a8bf439373e305'
  6755. 16:10:54.089 [XNIO-1 task-3] INFO p6spy - 2023-09-07 16:10:54 | Time Consuming: 13 ms | Connection: statement-0 | SQL: SELECT
  6756. A.client_id,
  6757. A.role_id,
  6758. A.permit_id,
  6759. A.permit_title,
  6760. A.permit_code,
  6761. A.permit_entry,
  6762. A.permit_desc,
  6763. A.permit_type,
  6764. A.parent_id,
  6765. A.root_id,
  6766. A.sort_no,
  6767. A.is_home
  6768. FROM s_role_permit AS A
  6769. WHERE 1 = 1
  6770. AND A.client_id = 2
  6771. AND A.role_id = 6
  6772. ORDER BY A.parent_id ASC ,A.sort_no ASC
  6773. 16:10:54.341 [XNIO-1 task-2] INFO p6spy - 2023-09-07 16:10:54 | Time Consuming: 9 ms | Connection: statement-1 | SQL: SELECT 1
  6774. 16:10:54.352 [XNIO-1 task-3] INFO p6spy - 2023-09-07 16:10:54 | Time Consuming: 8 ms | Connection: statement-0 | SQL: SELECT count(0) FROM goaf_devinfo WHERE oc_id = 406283
  6775. 16:10:54.365 [XNIO-1 task-3] INFO p6spy - 2023-09-07 16:10:54 | Time Consuming: 10 ms | Connection: statement-0 | SQL: SELECT *
  6776. FROM goaf_devinfo
  6777. where oc_id = 406283
  6778. LIMIT 10
  6779. 16:10:54.378 [XNIO-1 task-3] INFO p6spy - 2023-09-07 16:10:54 | Time Consuming: 11 ms | Connection: statement-0 | SQL: SELECT *
  6780. FROM goaf_sensor
  6781. where oc_id = 406283
  6782. AND goaf_dev_name = 'other'
  6783. 16:10:54.387 [XNIO-1 task-2] INFO p6spy - 2023-09-07 16:10:54 | Time Consuming: 34 ms | Connection: statement-1 | SQL: SELECT count(*)
  6784. FROM msg AS M
  6785. WHERE M.oc_id = 406283
  6786. AND (
  6787. EXISTS (
  6788. SELECT 1 FROM msg_to TT
  6789. WHERE M.oc_id = TT.oc_id AND M.msg_id = TT.msg_id AND TT.msg_to_id = 406283 AND TT.status=0
  6790. ) OR
  6791. EXISTS (
  6792. SELECT 1 FROM msg_cc CC
  6793. WHERE M.oc_id = CC.oc_id AND M.msg_id = CC.msg_id AND CC.msg_cc_id = 406283 AND CC.status=0
  6794. )
  6795. )
  6796. 16:10:54.387 [XNIO-1 task-3] INFO p6spy - 2023-09-07 16:10:54 | Time Consuming: 7 ms | Connection: statement-0 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  6797. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  6798. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  6799. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  6800. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  6801. FROM goaf_sensordata AS A
  6802. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  6803. WHERE A.oc_id = 406283
  6804. AND A.goaf_sensor_id = 442129
  6805. ORDER BY A.goaf_datareport_time DESC
  6806. LIMIT 1
  6807. 16:10:54.399 [XNIO-1 task-3] INFO p6spy - 2023-09-07 16:10:54 | Time Consuming: 9 ms | Connection: statement-0 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  6808. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  6809. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  6810. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  6811. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  6812. FROM goaf_sensordata AS A
  6813. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  6814. WHERE A.oc_id = 406283
  6815. AND A.goaf_sensor_id = 442199
  6816. ORDER BY A.goaf_datareport_time DESC
  6817. LIMIT 1
  6818. 16:10:54.409 [XNIO-1 task-3] INFO p6spy - 2023-09-07 16:10:54 | Time Consuming: 8 ms | Connection: rollback-0 | SQL:
  6819. 16:10:59.596 [XNIO-1 task-2] INFO p6spy - 2023-09-07 16:10:59 | Time Consuming: 5 ms | Connection: statement-2 | SQL: SELECT 1
  6820. 16:10:59.596 [XNIO-1 task-3] INFO p6spy - 2023-09-07 16:10:59 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT 1
  6821. 16:10:59.596 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:10:59 | Time Consuming: 5 ms | Connection: statement-1 | SQL: SELECT 1
  6822. 16:10:59.606 [XNIO-1 task-3] INFO p6spy - 2023-09-07 16:10:59 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT *
  6823. FROM goaf_syscfg
  6824. WHERE oc_id = 406283
  6825. 16:10:59.606 [XNIO-1 task-2] INFO p6spy - 2023-09-07 16:10:59 | Time Consuming: 4 ms | Connection: statement-2 | SQL: SELECT count(0) FROM goaf_devinfo WHERE oc_id = 406283
  6826. 16:10:59.607 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:10:59 | Time Consuming: 4 ms | Connection: statement-1 | SQL: SELECT *
  6827. FROM goaf_baseinfo
  6828. WHERE oc_id = 406283
  6829. 16:10:59.613 [XNIO-1 task-2] INFO p6spy - 2023-09-07 16:10:59 | Time Consuming: 5 ms | Connection: statement-2 | SQL: SELECT *
  6830. FROM goaf_devinfo
  6831. where oc_id = 406283
  6832. LIMIT 10
  6833. 16:11:06.254 [XNIO-1 task-2] INFO p6spy - 2023-09-07 16:11:06 | Time Consuming: 3 ms | Connection: statement-2 | SQL: SELECT 1
  6834. 16:11:06.265 [XNIO-1 task-2] INFO p6spy - 2023-09-07 16:11:06 | Time Consuming: 4 ms | Connection: statement-2 | SQL: SELECT count(0) FROM goaf_devinfo WHERE oc_id = 406283
  6835. 16:11:06.271 [XNIO-1 task-2] INFO p6spy - 2023-09-07 16:11:06 | Time Consuming: 4 ms | Connection: statement-2 | SQL: SELECT *
  6836. FROM goaf_devinfo
  6837. where oc_id = 406283
  6838. LIMIT 10
  6839. 16:11:06.277 [XNIO-1 task-2] INFO p6spy - 2023-09-07 16:11:06 | Time Consuming: 4 ms | Connection: statement-2 | SQL: SELECT *
  6840. FROM goaf_sensor
  6841. where oc_id = 406283
  6842. AND goaf_dev_name = 'other'
  6843. 16:11:06.284 [XNIO-1 task-2] INFO p6spy - 2023-09-07 16:11:06 | Time Consuming: 5 ms | Connection: statement-2 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  6844. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  6845. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  6846. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  6847. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  6848. FROM goaf_sensordata AS A
  6849. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  6850. WHERE A.oc_id = 406283
  6851. AND A.goaf_sensor_id = 442129
  6852. ORDER BY A.goaf_datareport_time DESC
  6853. LIMIT 1
  6854. 16:11:06.291 [XNIO-1 task-2] INFO p6spy - 2023-09-07 16:11:06 | Time Consuming: 5 ms | Connection: statement-2 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  6855. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  6856. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  6857. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  6858. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  6859. FROM goaf_sensordata AS A
  6860. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  6861. WHERE A.oc_id = 406283
  6862. AND A.goaf_sensor_id = 442199
  6863. ORDER BY A.goaf_datareport_time DESC
  6864. LIMIT 1
  6865. 16:11:06.295 [XNIO-1 task-2] INFO p6spy - 2023-09-07 16:11:06 | Time Consuming: 3 ms | Connection: rollback-2 | SQL:
  6866. 16:14:06.873 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  6867. 16:14:06.874 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.4.Final
  6868. 16:14:06.878 [SpringApplicationShutdownHook] INFO io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
  6869. 16:14:06.881 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - Removing {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  6870. 16:14:06.881 [SpringApplicationShutdownHook] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 0 subscriber(s).
  6871. 16:14:06.882 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - stopped bean '_org.springframework.integration.errorLogger'
  6872. 16:14:06.890 [SpringApplicationShutdownHook] INFO o.s.j.e.a.AnnotationMBeanExporter - Could not unregister MBean [com.github.tobato.fastdfs.domain.conn:name=fdfsConnectionPool,type=FdfsConnectionPool] as said MBean is not registered (perhaps already unregistered by an external process)
  6873. 16:14:06.891 [SpringApplicationShutdownHook] INFO o.s.s.quartz.SchedulerFactoryBean - Shutting down Quartz Scheduler
  6874. 16:14:06.892 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
  6875. 16:14:06.892 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  6876. 16:14:06.892 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
  6877. 16:14:06.930 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown initiated...
  6878. 16:14:06.936 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown completed.
  6879. 16:14:12.799 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.0.Final
  6880. 16:14:12.848 [restartedMain] INFO com.zhyc.xps.XPSApplication - Starting XPSApplication using Java 17.0.6 with PID 16020 (E:\zhycnewprj\iotplatform\xps-server-3\xps-application\target\classes started by qzz19 in E:\zhycnewprj\iotplatform\xps-server-3)
  6881. 16:14:12.849 [restartedMain] INFO com.zhyc.xps.XPSApplication - The following 1 profile is active: "local"
  6882. 16:14:12.903 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
  6883. 16:14:12.903 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
  6884. 16:14:14.756 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
  6885. 16:14:14.760 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  6886. 16:14:14.851 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 77 ms. Found 0 Redis repository interfaces.
  6887. 16:14:15.025 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created.
  6888. 16:14:15.041 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created.
  6889. 16:14:15.813 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  6890. 16:14:15.813 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 2909 ms
  6891. 16:14:18.213 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor
  6892. 16:14:18.224 [restartedMain] INFO o.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  6893. 16:14:18.224 [restartedMain] INFO org.quartz.core.QuartzScheduler - Quartz Scheduler v.2.3.2 created.
  6894. 16:14:18.225 [restartedMain] INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized.
  6895. 16:14:18.225 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
  6896. Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  6897. NOT STARTED.
  6898. Currently in standby mode.
  6899. Number of jobs executed: 0
  6900. Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  6901. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
  6902. 16:14:18.225 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  6903. 16:14:18.225 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2
  6904. 16:14:18.225 [restartedMain] INFO org.quartz.core.QuartzScheduler - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@6c8d20f2
  6905. 16:14:19.988 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer - LiveReload server is running on port 35729
  6906. 16:14:19.993 [restartedMain] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 15 endpoint(s) beneath base path '/actuator/z'
  6907. 16:14:20.143 [restartedMain] INFO io.undertow.websockets.jsr - UT026003: Adding annotated server endpoint class com.zhyc.xps.common.ws.WebSocketServer for path /websocket/link
  6908. 16:14:20.174 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  6909. 16:14:20.174 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 1 subscriber(s).
  6910. 16:14:20.174 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - started bean '_org.springframework.integration.errorLogger'
  6911. 16:14:20.195 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  6912. 16:14:20.205 [restartedMain] INFO org.xnio - XNIO version 3.8.8.Final
  6913. 16:14:20.215 [restartedMain] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.8.Final
  6914. 16:14:20.245 [restartedMain] INFO org.jboss.threads - JBoss Threads version 3.5.0.Final
  6915. 16:14:20.296 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 1788 (http)
  6916. 16:14:20.297 [restartedMain] INFO o.s.s.quartz.SchedulerFactoryBean - Starting Quartz Scheduler now
  6917. 16:14:20.297 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  6918. 16:14:20.322 [restartedMain] INFO com.zhyc.xps.XPSApplication - Started XPSApplication in 7.999 seconds (process running for 8.987)
  6919. 16:14:20.324 [restartedMain] INFO com.zhyc.xps.sys.job.InitSystemJob - 初始化系统定时任务
  6920. 16:14:20.332 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Starting...
  6921. 16:14:20.655 [restartedMain] INFO p6spy - 2023-09-07 16:14:20 | Time Consuming: 13 ms | Connection: statement-0 | SQL: SELECT 1
  6922. 16:14:20.659 [restartedMain] INFO com.zaxxer.hikari.pool.HikariPool - DatebookHikariCP - Added connection com.p6spy.engine.wrapper.ConnectionWrapper@72abc179
  6923. 16:14:20.669 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Start completed.
  6924. 16:14:20.736 [restartedMain] INFO p6spy - 2023-09-07 16:14:20 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT
  6925. A.job_id,
  6926. A.job_title,
  6927. A.job_desc,
  6928. A.status,
  6929. A.job_type,
  6930. A.job_code,
  6931. A.job_cron,
  6932. A.job_class_id,
  6933. B.job_class,
  6934. A.cycle_title,
  6935. A.cycle_period,
  6936. A.cycle_unit
  6937. FROM job AS A
  6938. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  6939. WHERE A.deleted_flag = 0
  6940. AND A.status = 1
  6941. ORDER BY A.job_id ASC
  6942. 16:14:20.757 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  6943. 16:14:20.759 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  6944. 16:14:21.280 [RMI TCP Connection(3)-192.168.3.5] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
  6945. 16:14:21.280 [RMI TCP Connection(3)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
  6946. 16:14:21.284 [RMI TCP Connection(3)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 4 ms
  6947. 16:14:21.287 [RMI TCP Connection(4)-192.168.3.5] INFO p6spy - 2023-09-07 16:14:21 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  6948. 16:14:34.313 [XNIO-1 task-3] INFO p6spy - 2023-09-07 16:14:34 | Time Consuming: 9 ms | Connection: statement-0 | SQL: SELECT 1
  6949. 16:14:34.339 [XNIO-1 task-3] INFO p6spy - 2023-09-07 16:14:34 | Time Consuming: 11 ms | Connection: statement-0 | SQL: SELECT
  6950. client_id,
  6951. client_title,
  6952. client_app_id,
  6953. client_app_key,
  6954. client_app_secret,
  6955. client_desc,
  6956. status,
  6957. is_fixed
  6958. FROM client
  6959. WHERE deleted_flag = 0
  6960. AND client_app_id = '10001'
  6961. AND client_app_key = '82a8bf439373e305'
  6962. 16:14:34.383 [XNIO-1 task-3] INFO p6spy - 2023-09-07 16:14:34 | Time Consuming: 12 ms | Connection: statement-0 | SQL: SELECT
  6963. A.client_id,
  6964. A.role_id,
  6965. A.permit_id,
  6966. A.permit_title,
  6967. A.permit_code,
  6968. A.permit_entry,
  6969. A.permit_desc,
  6970. A.permit_type,
  6971. A.parent_id,
  6972. A.root_id,
  6973. A.sort_no,
  6974. A.is_home
  6975. FROM s_role_permit AS A
  6976. WHERE 1 = 1
  6977. AND A.client_id = 2
  6978. AND A.role_id = 6
  6979. ORDER BY A.parent_id ASC ,A.sort_no ASC
  6980. 16:14:34.736 [XNIO-1 task-2] INFO p6spy - 2023-09-07 16:14:34 | Time Consuming: 9 ms | Connection: statement-1 | SQL: SELECT 1
  6981. 16:14:34.772 [XNIO-1 task-3] INFO p6spy - 2023-09-07 16:14:34 | Time Consuming: 35 ms | Connection: statement-0 | SQL: SELECT count(*)
  6982. FROM msg AS M
  6983. WHERE M.oc_id = 406283
  6984. AND (
  6985. EXISTS (
  6986. SELECT 1 FROM msg_to TT
  6987. WHERE M.oc_id = TT.oc_id AND M.msg_id = TT.msg_id AND TT.msg_to_id = 406283 AND TT.status=0
  6988. ) OR
  6989. EXISTS (
  6990. SELECT 1 FROM msg_cc CC
  6991. WHERE M.oc_id = CC.oc_id AND M.msg_id = CC.msg_id AND CC.msg_cc_id = 406283 AND CC.status=0
  6992. )
  6993. )
  6994. 16:14:34.847 [XNIO-1 task-2] INFO p6spy - 2023-09-07 16:14:34 | Time Consuming: 10 ms | Connection: statement-1 | SQL: SELECT count(0) FROM goaf_devinfo WHERE oc_id = 406283
  6995. 16:14:34.860 [XNIO-1 task-2] INFO p6spy - 2023-09-07 16:14:34 | Time Consuming: 10 ms | Connection: statement-1 | SQL: SELECT *
  6996. FROM goaf_devinfo
  6997. where oc_id = 406283
  6998. LIMIT 10
  6999. 16:14:34.879 [XNIO-1 task-2] INFO p6spy - 2023-09-07 16:14:34 | Time Consuming: 11 ms | Connection: statement-1 | SQL: SELECT *
  7000. FROM goaf_sensor
  7001. where oc_id = 406283
  7002. AND goaf_dev_name = 'other'
  7003. 16:14:34.898 [XNIO-1 task-2] INFO p6spy - 2023-09-07 16:14:34 | Time Consuming: 14 ms | Connection: statement-1 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  7004. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  7005. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  7006. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  7007. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  7008. FROM goaf_sensordata AS A
  7009. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  7010. WHERE A.oc_id = 406283
  7011. AND A.goaf_sensor_id = 442129
  7012. ORDER BY A.goaf_datareport_time DESC
  7013. LIMIT 1
  7014. 16:14:34.911 [XNIO-1 task-2] INFO p6spy - 2023-09-07 16:14:34 | Time Consuming: 10 ms | Connection: statement-1 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  7015. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  7016. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  7017. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  7018. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  7019. FROM goaf_sensordata AS A
  7020. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  7021. WHERE A.oc_id = 406283
  7022. AND A.goaf_sensor_id = 442199
  7023. ORDER BY A.goaf_datareport_time DESC
  7024. LIMIT 1
  7025. 16:14:34.923 [XNIO-1 task-2] INFO p6spy - 2023-09-07 16:14:34 | Time Consuming: 10 ms | Connection: statement-1 | SQL: SELECT *
  7026. FROM goaf_sensor
  7027. where oc_id = 406283
  7028. AND goaf_dev_name = 'waterpump'
  7029. 16:14:34.935 [XNIO-1 task-2] INFO p6spy - 2023-09-07 16:14:34 | Time Consuming: 10 ms | Connection: statement-1 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  7030. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  7031. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  7032. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  7033. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  7034. FROM goaf_sensordata AS A
  7035. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  7036. WHERE A.oc_id = 406283
  7037. AND A.goaf_sensor_id = 442136
  7038. ORDER BY A.goaf_datareport_time DESC
  7039. LIMIT 1
  7040. 16:14:34.947 [XNIO-1 task-2] INFO p6spy - 2023-09-07 16:14:34 | Time Consuming: 10 ms | Connection: statement-1 | SQL: SELECT *
  7041. FROM goaf_sensor
  7042. where oc_id = 406283
  7043. AND goaf_dev_name = 'machinery'
  7044. 16:14:34.960 [XNIO-1 task-2] INFO p6spy - 2023-09-07 16:14:34 | Time Consuming: 10 ms | Connection: statement-1 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  7045. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  7046. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  7047. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  7048. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  7049. FROM goaf_sensordata AS A
  7050. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  7051. WHERE A.oc_id = 406283
  7052. AND A.goaf_sensor_id = 442137
  7053. ORDER BY A.goaf_datareport_time DESC
  7054. LIMIT 1
  7055. 16:14:34.972 [XNIO-1 task-2] INFO p6spy - 2023-09-07 16:14:34 | Time Consuming: 10 ms | Connection: statement-1 | SQL: SELECT *
  7056. FROM goaf_sensor
  7057. where oc_id = 406283
  7058. AND goaf_dev_name = 'compress'
  7059. 16:14:34.985 [XNIO-1 task-2] INFO p6spy - 2023-09-07 16:14:34 | Time Consuming: 10 ms | Connection: statement-1 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  7060. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  7061. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  7062. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  7063. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  7064. FROM goaf_sensordata AS A
  7065. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  7066. WHERE A.oc_id = 406283
  7067. AND A.goaf_sensor_id = 442135
  7068. ORDER BY A.goaf_datareport_time DESC
  7069. LIMIT 1
  7070. 16:14:34.996 [XNIO-1 task-2] INFO p6spy - 2023-09-07 16:14:34 | Time Consuming: 10 ms | Connection: statement-1 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  7071. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  7072. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  7073. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  7074. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  7075. FROM goaf_sensordata AS A
  7076. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  7077. WHERE A.oc_id = 406283
  7078. AND A.goaf_sensor_id = 442139
  7079. ORDER BY A.goaf_datareport_time DESC
  7080. LIMIT 1
  7081. 16:15:15.923 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:15:15 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  7082. 16:15:15.923 [XNIO-1 task-3] INFO p6spy - 2023-09-07 16:15:15 | Time Consuming: 4 ms | Connection: statement-2 | SQL: SELECT 1
  7083. 16:15:15.923 [XNIO-1 task-2] INFO p6spy - 2023-09-07 16:15:15 | Time Consuming: 4 ms | Connection: statement-1 | SQL: SELECT 1
  7084. 16:15:15.931 [XNIO-1 task-3] INFO p6spy - 2023-09-07 16:15:15 | Time Consuming: 3 ms | Connection: statement-2 | SQL: SELECT *
  7085. FROM goaf_syscfg
  7086. WHERE oc_id = 406283
  7087. 16:15:15.932 [XNIO-1 task-2] INFO p6spy - 2023-09-07 16:15:15 | Time Consuming: 4 ms | Connection: statement-1 | SQL: SELECT count(0) FROM goaf_devinfo WHERE oc_id = 406283
  7088. 16:15:15.932 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:15:15 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT *
  7089. FROM goaf_baseinfo
  7090. WHERE oc_id = 406283
  7091. 16:15:15.939 [XNIO-1 task-2] INFO p6spy - 2023-09-07 16:15:15 | Time Consuming: 5 ms | Connection: statement-1 | SQL: SELECT *
  7092. FROM goaf_devinfo
  7093. where oc_id = 406283
  7094. LIMIT 10
  7095. 16:15:28.055 [XNIO-1 task-2] INFO p6spy - 2023-09-07 16:15:28 | Time Consuming: 4 ms | Connection: statement-1 | SQL: SELECT 1
  7096. 16:15:28.065 [XNIO-1 task-2] INFO p6spy - 2023-09-07 16:15:28 | Time Consuming: 4 ms | Connection: statement-1 | SQL: SELECT count(0) FROM goaf_devinfo WHERE oc_id = 406283
  7097. 16:15:28.069 [XNIO-1 task-2] INFO p6spy - 2023-09-07 16:15:28 | Time Consuming: 3 ms | Connection: statement-1 | SQL: SELECT *
  7098. FROM goaf_devinfo
  7099. where oc_id = 406283
  7100. LIMIT 10
  7101. 16:15:28.075 [XNIO-1 task-2] INFO p6spy - 2023-09-07 16:15:28 | Time Consuming: 4 ms | Connection: statement-1 | SQL: SELECT *
  7102. FROM goaf_sensor
  7103. where oc_id = 406283
  7104. AND goaf_dev_name = 'other'
  7105. 16:15:28.085 [XNIO-1 task-2] INFO p6spy - 2023-09-07 16:15:28 | Time Consuming: 8 ms | Connection: statement-1 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  7106. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  7107. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  7108. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  7109. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  7110. FROM goaf_sensordata AS A
  7111. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  7112. WHERE A.oc_id = 406283
  7113. AND A.goaf_sensor_id = 442129
  7114. ORDER BY A.goaf_datareport_time DESC
  7115. LIMIT 1
  7116. 16:15:28.115 [XNIO-1 task-2] INFO p6spy - 2023-09-07 16:15:28 | Time Consuming: 29 ms | Connection: statement-1 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  7117. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  7118. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  7119. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  7120. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  7121. FROM goaf_sensordata AS A
  7122. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  7123. WHERE A.oc_id = 406283
  7124. AND A.goaf_sensor_id = 442199
  7125. ORDER BY A.goaf_datareport_time DESC
  7126. LIMIT 1
  7127. 16:15:28.120 [XNIO-1 task-2] INFO p6spy - 2023-09-07 16:15:28 | Time Consuming: 4 ms | Connection: statement-1 | SQL: SELECT *
  7128. FROM goaf_sensor
  7129. where oc_id = 406283
  7130. AND goaf_dev_name = 'waterpump'
  7131. 16:15:28.129 [XNIO-1 task-2] INFO p6spy - 2023-09-07 16:15:28 | Time Consuming: 7 ms | Connection: statement-1 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  7132. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  7133. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  7134. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  7135. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  7136. FROM goaf_sensordata AS A
  7137. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  7138. WHERE A.oc_id = 406283
  7139. AND A.goaf_sensor_id = 442136
  7140. ORDER BY A.goaf_datareport_time DESC
  7141. LIMIT 1
  7142. 16:15:28.134 [XNIO-1 task-2] INFO p6spy - 2023-09-07 16:15:28 | Time Consuming: 4 ms | Connection: statement-1 | SQL: SELECT *
  7143. FROM goaf_sensor
  7144. where oc_id = 406283
  7145. AND goaf_dev_name = 'machinery'
  7146. 16:15:28.140 [XNIO-1 task-2] INFO p6spy - 2023-09-07 16:15:28 | Time Consuming: 4 ms | Connection: statement-1 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  7147. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  7148. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  7149. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  7150. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  7151. FROM goaf_sensordata AS A
  7152. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  7153. WHERE A.oc_id = 406283
  7154. AND A.goaf_sensor_id = 442137
  7155. ORDER BY A.goaf_datareport_time DESC
  7156. LIMIT 1
  7157. 16:15:28.145 [XNIO-1 task-2] INFO p6spy - 2023-09-07 16:15:28 | Time Consuming: 3 ms | Connection: statement-1 | SQL: SELECT *
  7158. FROM goaf_sensor
  7159. where oc_id = 406283
  7160. AND goaf_dev_name = 'compress'
  7161. 16:15:28.151 [XNIO-1 task-2] INFO p6spy - 2023-09-07 16:15:28 | Time Consuming: 4 ms | Connection: statement-1 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  7162. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  7163. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  7164. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  7165. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  7166. FROM goaf_sensordata AS A
  7167. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  7168. WHERE A.oc_id = 406283
  7169. AND A.goaf_sensor_id = 442135
  7170. ORDER BY A.goaf_datareport_time DESC
  7171. LIMIT 1
  7172. 16:15:28.157 [XNIO-1 task-2] INFO p6spy - 2023-09-07 16:15:28 | Time Consuming: 5 ms | Connection: statement-1 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  7173. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  7174. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  7175. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  7176. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  7177. FROM goaf_sensordata AS A
  7178. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  7179. WHERE A.oc_id = 406283
  7180. AND A.goaf_sensor_id = 442139
  7181. ORDER BY A.goaf_datareport_time DESC
  7182. LIMIT 1
  7183. 16:23:21.278 [XNIO-1 task-2] INFO p6spy - 2023-09-07 16:23:21 | Time Consuming: 10 ms | Connection: statement-5 | SQL: SELECT 1
  7184. 16:23:21.299 [XNIO-1 task-2] INFO p6spy - 2023-09-07 16:23:21 | Time Consuming: 10 ms | Connection: statement-5 | SQL: SELECT
  7185. client_id,
  7186. client_title,
  7187. client_app_id,
  7188. client_app_key,
  7189. client_app_secret,
  7190. client_desc,
  7191. status,
  7192. is_fixed
  7193. FROM client
  7194. WHERE deleted_flag = 0
  7195. AND client_app_id = '10001'
  7196. AND client_app_key = '82a8bf439373e305'
  7197. 16:23:21.341 [XNIO-1 task-2] INFO p6spy - 2023-09-07 16:23:21 | Time Consuming: 10 ms | Connection: statement-5 | SQL: SELECT
  7198. A.client_id,
  7199. A.role_id,
  7200. A.permit_id,
  7201. A.permit_title,
  7202. A.permit_code,
  7203. A.permit_entry,
  7204. A.permit_desc,
  7205. A.permit_type,
  7206. A.parent_id,
  7207. A.root_id,
  7208. A.sort_no,
  7209. A.is_home
  7210. FROM s_role_permit AS A
  7211. WHERE 1 = 1
  7212. AND A.client_id = 2
  7213. AND A.role_id = 6
  7214. ORDER BY A.parent_id ASC ,A.sort_no ASC
  7215. 16:23:21.742 [XNIO-1 task-2] INFO p6spy - 2023-09-07 16:23:21 | Time Consuming: 4 ms | Connection: statement-6 | SQL: SELECT 1
  7216. 16:23:21.749 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:23:21 | Time Consuming: 5 ms | Connection: statement-5 | SQL: SELECT count(0) FROM goaf_devinfo WHERE oc_id = 406283
  7217. 16:23:21.760 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:23:21 | Time Consuming: 9 ms | Connection: statement-5 | SQL: SELECT *
  7218. FROM goaf_devinfo
  7219. where oc_id = 406283
  7220. LIMIT 10
  7221. 16:23:21.773 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:23:21 | Time Consuming: 10 ms | Connection: statement-5 | SQL: SELECT *
  7222. FROM goaf_sensor
  7223. where oc_id = 406283
  7224. AND goaf_dev_name = 'other'
  7225. 16:23:21.784 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:23:21 | Time Consuming: 9 ms | Connection: statement-5 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  7226. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  7227. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  7228. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  7229. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  7230. FROM goaf_sensordata AS A
  7231. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  7232. WHERE A.oc_id = 406283
  7233. AND A.goaf_sensor_id = 442129
  7234. ORDER BY A.goaf_datareport_time DESC
  7235. LIMIT 1
  7236. 16:23:21.784 [XNIO-1 task-2] INFO p6spy - 2023-09-07 16:23:21 | Time Consuming: 33 ms | Connection: statement-6 | SQL: SELECT count(*)
  7237. FROM msg AS M
  7238. WHERE M.oc_id = 406283
  7239. AND (
  7240. EXISTS (
  7241. SELECT 1 FROM msg_to TT
  7242. WHERE M.oc_id = TT.oc_id AND M.msg_id = TT.msg_id AND TT.msg_to_id = 406283 AND TT.status=0
  7243. ) OR
  7244. EXISTS (
  7245. SELECT 1 FROM msg_cc CC
  7246. WHERE M.oc_id = CC.oc_id AND M.msg_id = CC.msg_id AND CC.msg_cc_id = 406283 AND CC.status=0
  7247. )
  7248. )
  7249. 16:23:21.797 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:23:21 | Time Consuming: 10 ms | Connection: statement-5 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  7250. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  7251. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  7252. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  7253. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  7254. FROM goaf_sensordata AS A
  7255. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  7256. WHERE A.oc_id = 406283
  7257. AND A.goaf_sensor_id = 442199
  7258. ORDER BY A.goaf_datareport_time DESC
  7259. LIMIT 1
  7260. 16:23:21.807 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:23:21 | Time Consuming: 9 ms | Connection: statement-5 | SQL: SELECT *
  7261. FROM goaf_sensor
  7262. where oc_id = 406283
  7263. AND goaf_dev_name = 'waterpump'
  7264. 16:23:21.819 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:23:21 | Time Consuming: 10 ms | Connection: statement-5 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  7265. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  7266. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  7267. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  7268. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  7269. FROM goaf_sensordata AS A
  7270. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  7271. WHERE A.oc_id = 406283
  7272. AND A.goaf_sensor_id = 442136
  7273. ORDER BY A.goaf_datareport_time DESC
  7274. LIMIT 1
  7275. 16:23:21.830 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:23:21 | Time Consuming: 10 ms | Connection: statement-5 | SQL: SELECT *
  7276. FROM goaf_sensor
  7277. where oc_id = 406283
  7278. AND goaf_dev_name = 'machinery'
  7279. 16:23:21.849 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:23:21 | Time Consuming: 13 ms | Connection: statement-5 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  7280. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  7281. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  7282. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  7283. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  7284. FROM goaf_sensordata AS A
  7285. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  7286. WHERE A.oc_id = 406283
  7287. AND A.goaf_sensor_id = 442137
  7288. ORDER BY A.goaf_datareport_time DESC
  7289. LIMIT 1
  7290. 16:23:21.857 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:23:21 | Time Consuming: 6 ms | Connection: statement-5 | SQL: SELECT *
  7291. FROM goaf_sensor
  7292. where oc_id = 406283
  7293. AND goaf_dev_name = 'compress'
  7294. 16:23:21.868 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:23:21 | Time Consuming: 10 ms | Connection: statement-5 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  7295. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  7296. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  7297. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  7298. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  7299. FROM goaf_sensordata AS A
  7300. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  7301. WHERE A.oc_id = 406283
  7302. AND A.goaf_sensor_id = 442135
  7303. ORDER BY A.goaf_datareport_time DESC
  7304. LIMIT 1
  7305. 16:23:21.880 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:23:21 | Time Consuming: 10 ms | Connection: statement-5 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  7306. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  7307. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  7308. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  7309. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  7310. FROM goaf_sensordata AS A
  7311. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  7312. WHERE A.oc_id = 406283
  7313. AND A.goaf_sensor_id = 442139
  7314. ORDER BY A.goaf_datareport_time DESC
  7315. LIMIT 1
  7316. 16:24:13.782 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:24:13 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT 1
  7317. 16:24:13.791 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:24:13 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT count(0) FROM goaf_devinfo WHERE oc_id = 406283
  7318. 16:24:13.796 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:24:13 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT *
  7319. FROM goaf_devinfo
  7320. where oc_id = 406283
  7321. LIMIT 10
  7322. 16:24:13.801 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:24:13 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT *
  7323. FROM goaf_sensor
  7324. where oc_id = 406283
  7325. AND goaf_dev_name = 'other'
  7326. 16:24:13.808 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:24:13 | Time Consuming: 5 ms | Connection: statement-5 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  7327. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  7328. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  7329. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  7330. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  7331. FROM goaf_sensordata AS A
  7332. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  7333. WHERE A.oc_id = 406283
  7334. AND A.goaf_sensor_id = 442129
  7335. ORDER BY A.goaf_datareport_time DESC
  7336. LIMIT 1
  7337. 16:24:13.819 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:24:13 | Time Consuming: 5 ms | Connection: statement-5 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  7338. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  7339. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  7340. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  7341. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  7342. FROM goaf_sensordata AS A
  7343. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  7344. WHERE A.oc_id = 406283
  7345. AND A.goaf_sensor_id = 442199
  7346. ORDER BY A.goaf_datareport_time DESC
  7347. LIMIT 1
  7348. 16:24:13.825 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:24:13 | Time Consuming: 5 ms | Connection: statement-5 | SQL: SELECT *
  7349. FROM goaf_sensor
  7350. where oc_id = 406283
  7351. AND goaf_dev_name = 'waterpump'
  7352. 16:24:13.833 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:24:13 | Time Consuming: 6 ms | Connection: statement-5 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  7353. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  7354. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  7355. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  7356. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  7357. FROM goaf_sensordata AS A
  7358. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  7359. WHERE A.oc_id = 406283
  7360. AND A.goaf_sensor_id = 442136
  7361. ORDER BY A.goaf_datareport_time DESC
  7362. LIMIT 1
  7363. 16:24:13.839 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:24:13 | Time Consuming: 5 ms | Connection: statement-5 | SQL: SELECT *
  7364. FROM goaf_sensor
  7365. where oc_id = 406283
  7366. AND goaf_dev_name = 'machinery'
  7367. 16:24:13.845 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:24:13 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  7368. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  7369. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  7370. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  7371. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  7372. FROM goaf_sensordata AS A
  7373. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  7374. WHERE A.oc_id = 406283
  7375. AND A.goaf_sensor_id = 442137
  7376. ORDER BY A.goaf_datareport_time DESC
  7377. LIMIT 1
  7378. 16:24:13.851 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:24:13 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT *
  7379. FROM goaf_sensor
  7380. where oc_id = 406283
  7381. AND goaf_dev_name = 'compress'
  7382. 16:24:13.858 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:24:13 | Time Consuming: 5 ms | Connection: statement-5 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  7383. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  7384. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  7385. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  7386. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  7387. FROM goaf_sensordata AS A
  7388. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  7389. WHERE A.oc_id = 406283
  7390. AND A.goaf_sensor_id = 442135
  7391. ORDER BY A.goaf_datareport_time DESC
  7392. LIMIT 1
  7393. 16:24:13.864 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:24:13 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  7394. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  7395. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  7396. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  7397. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  7398. FROM goaf_sensordata AS A
  7399. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  7400. WHERE A.oc_id = 406283
  7401. AND A.goaf_sensor_id = 442139
  7402. ORDER BY A.goaf_datareport_time DESC
  7403. LIMIT 1
  7404. 16:24:21.779 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:24:21 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT 1
  7405. 16:24:21.788 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:24:21 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT count(0) FROM goaf_devinfo WHERE oc_id = 406283
  7406. 16:24:21.792 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:24:21 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT *
  7407. FROM goaf_devinfo
  7408. where oc_id = 406283
  7409. LIMIT 10
  7410. 16:24:21.796 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:24:21 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT *
  7411. FROM goaf_sensor
  7412. where oc_id = 406283
  7413. AND goaf_dev_name = 'other'
  7414. 16:24:21.809 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:24:21 | Time Consuming: 11 ms | Connection: statement-5 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  7415. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  7416. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  7417. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  7418. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  7419. FROM goaf_sensordata AS A
  7420. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  7421. WHERE A.oc_id = 406283
  7422. AND A.goaf_sensor_id = 442129
  7423. ORDER BY A.goaf_datareport_time DESC
  7424. LIMIT 1
  7425. 16:24:21.826 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:24:21 | Time Consuming: 16 ms | Connection: statement-5 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  7426. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  7427. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  7428. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  7429. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  7430. FROM goaf_sensordata AS A
  7431. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  7432. WHERE A.oc_id = 406283
  7433. AND A.goaf_sensor_id = 442199
  7434. ORDER BY A.goaf_datareport_time DESC
  7435. LIMIT 1
  7436. 16:24:21.830 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:24:21 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT *
  7437. FROM goaf_sensor
  7438. where oc_id = 406283
  7439. AND goaf_dev_name = 'waterpump'
  7440. 16:24:21.836 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:24:21 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  7441. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  7442. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  7443. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  7444. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  7445. FROM goaf_sensordata AS A
  7446. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  7447. WHERE A.oc_id = 406283
  7448. AND A.goaf_sensor_id = 442136
  7449. ORDER BY A.goaf_datareport_time DESC
  7450. LIMIT 1
  7451. 16:24:21.841 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:24:21 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT *
  7452. FROM goaf_sensor
  7453. where oc_id = 406283
  7454. AND goaf_dev_name = 'machinery'
  7455. 16:24:21.848 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:24:21 | Time Consuming: 6 ms | Connection: statement-5 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  7456. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  7457. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  7458. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  7459. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  7460. FROM goaf_sensordata AS A
  7461. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  7462. WHERE A.oc_id = 406283
  7463. AND A.goaf_sensor_id = 442137
  7464. ORDER BY A.goaf_datareport_time DESC
  7465. LIMIT 1
  7466. 16:24:21.853 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:24:21 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT *
  7467. FROM goaf_sensor
  7468. where oc_id = 406283
  7469. AND goaf_dev_name = 'compress'
  7470. 16:24:21.859 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:24:21 | Time Consuming: 6 ms | Connection: statement-5 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  7471. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  7472. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  7473. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  7474. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  7475. FROM goaf_sensordata AS A
  7476. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  7477. WHERE A.oc_id = 406283
  7478. AND A.goaf_sensor_id = 442135
  7479. ORDER BY A.goaf_datareport_time DESC
  7480. LIMIT 1
  7481. 16:24:21.866 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:24:21 | Time Consuming: 5 ms | Connection: statement-5 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  7482. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  7483. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  7484. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  7485. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  7486. FROM goaf_sensordata AS A
  7487. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  7488. WHERE A.oc_id = 406283
  7489. AND A.goaf_sensor_id = 442139
  7490. ORDER BY A.goaf_datareport_time DESC
  7491. LIMIT 1
  7492. 16:24:32.997 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:24:32 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT 1
  7493. 16:24:33.016 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:24:33 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT count(0) FROM goaf_sensoralarm AS A LEFT JOIN goaf_sensordata AS B ON A.goaf_data_id = B.goaf_data_id WHERE B.oc_id = 406283
  7494. 16:24:33.021 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:24:33 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT A.*,
  7495. B.oc_id,
  7496. B.goaf_sensor_id,
  7497. B.goaf_sensor_name,
  7498. B.goaf_dev_name,
  7499. B.goaf_dev_typename,
  7500. B.frequency_x,
  7501. B.frequency_y,
  7502. B.frequency_z,
  7503. B.acc_x,
  7504. B.acc_y,
  7505. B.acc_z,
  7506. B.vel_x,
  7507. B.vel_y,
  7508. B.vel_z,
  7509. B.dis_x,
  7510. B.dis_y,
  7511. B.dis_z,
  7512. B.sensor_temperature,
  7513. B.ang_x,
  7514. B.ang_y,
  7515. B.ang_z,
  7516. B.f_alarm_temperature,
  7517. B.goaf_datareport_time
  7518. FROM goaf_sensoralarm AS A
  7519. LEFT JOIN goaf_sensordata AS B ON A.goaf_data_id = B.goaf_data_id
  7520. WHERE B.oc_id = 406283
  7521. ORDER BY B.goaf_datareport_time DESC
  7522. LIMIT 10
  7523. 16:24:36.253 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:24:36 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT 1
  7524. 16:24:36.263 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:24:36 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT count(0) FROM goaf_devinfo WHERE oc_id = 406283
  7525. 16:24:36.266 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:24:36 | Time Consuming: 2 ms | Connection: statement-5 | SQL: SELECT *
  7526. FROM goaf_devinfo
  7527. where oc_id = 406283
  7528. LIMIT 10
  7529. 16:24:36.271 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:24:36 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT *
  7530. FROM goaf_sensor
  7531. where oc_id = 406283
  7532. AND goaf_dev_name = 'other'
  7533. 16:24:36.275 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:24:36 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  7534. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  7535. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  7536. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  7537. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  7538. FROM goaf_sensordata AS A
  7539. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  7540. WHERE A.oc_id = 406283
  7541. AND A.goaf_sensor_id = 442129
  7542. ORDER BY A.goaf_datareport_time DESC
  7543. LIMIT 1
  7544. 16:24:36.281 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:24:36 | Time Consuming: 5 ms | Connection: statement-5 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  7545. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  7546. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  7547. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  7548. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  7549. FROM goaf_sensordata AS A
  7550. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  7551. WHERE A.oc_id = 406283
  7552. AND A.goaf_sensor_id = 442199
  7553. ORDER BY A.goaf_datareport_time DESC
  7554. LIMIT 1
  7555. 16:24:36.285 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:24:36 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT *
  7556. FROM goaf_sensor
  7557. where oc_id = 406283
  7558. AND goaf_dev_name = 'waterpump'
  7559. 16:24:36.291 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:24:36 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  7560. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  7561. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  7562. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  7563. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  7564. FROM goaf_sensordata AS A
  7565. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  7566. WHERE A.oc_id = 406283
  7567. AND A.goaf_sensor_id = 442136
  7568. ORDER BY A.goaf_datareport_time DESC
  7569. LIMIT 1
  7570. 16:24:36.295 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:24:36 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT *
  7571. FROM goaf_sensor
  7572. where oc_id = 406283
  7573. AND goaf_dev_name = 'machinery'
  7574. 16:24:36.300 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:24:36 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  7575. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  7576. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  7577. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  7578. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  7579. FROM goaf_sensordata AS A
  7580. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  7581. WHERE A.oc_id = 406283
  7582. AND A.goaf_sensor_id = 442137
  7583. ORDER BY A.goaf_datareport_time DESC
  7584. LIMIT 1
  7585. 16:24:36.304 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:24:36 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT *
  7586. FROM goaf_sensor
  7587. where oc_id = 406283
  7588. AND goaf_dev_name = 'compress'
  7589. 16:24:36.309 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:24:36 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  7590. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  7591. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  7592. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  7593. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  7594. FROM goaf_sensordata AS A
  7595. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  7596. WHERE A.oc_id = 406283
  7597. AND A.goaf_sensor_id = 442135
  7598. ORDER BY A.goaf_datareport_time DESC
  7599. LIMIT 1
  7600. 16:24:36.313 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:24:36 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  7601. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  7602. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  7603. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  7604. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  7605. FROM goaf_sensordata AS A
  7606. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  7607. WHERE A.oc_id = 406283
  7608. AND A.goaf_sensor_id = 442139
  7609. ORDER BY A.goaf_datareport_time DESC
  7610. LIMIT 1
  7611. 16:24:39.316 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:24:39 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT 1
  7612. 16:24:39.325 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:24:39 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT count(0) FROM goaf_sensordata WHERE oc_id = 406283
  7613. 16:24:40.152 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:24:40 | Time Consuming: 826 ms | Connection: statement-5 | SQL: SELECT *
  7614. FROM goaf_sensordata
  7615. WHERE oc_id = 406283
  7616. ORDER BY goaf_datareport_time DESC
  7617. LIMIT 10
  7618. 16:24:43.956 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:24:43 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT 1
  7619. 16:24:43.965 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:24:43 | Time Consuming: 5 ms | Connection: statement-5 | SQL: SELECT *
  7620. FROM goaf_devinfo
  7621. where oc_id = 406283
  7622. 16:24:43.974 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:24:43 | Time Consuming: 8 ms | Connection: statement-5 | SQL: SELECT *
  7623. FROM goaf_sensor
  7624. where oc_id = 406283
  7625. AND goaf_dev_name = 'other'
  7626. 16:24:43.986 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:24:43 | Time Consuming: 11 ms | Connection: statement-5 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  7627. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  7628. FROM goaf_sensor AS C
  7629. LEFT JOIN
  7630. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  7631. FROM goaf_sensordata
  7632. ORDER BY goaf_datareport_time DESC
  7633. LIMIT 1) AS A ON A.goaf_sensor_id = C.goaf_sensor_id
  7634. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  7635. WHERE C.goaf_sensor_id = 442129
  7636. 16:24:44.001 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:24:44 | Time Consuming: 13 ms | Connection: statement-5 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  7637. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  7638. FROM goaf_sensor AS C
  7639. LEFT JOIN
  7640. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  7641. FROM goaf_sensordata
  7642. ORDER BY goaf_datareport_time DESC
  7643. LIMIT 1) AS A ON A.goaf_sensor_id = C.goaf_sensor_id
  7644. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  7645. WHERE C.goaf_sensor_id = 442199
  7646. 16:24:44.005 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:24:44 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT *
  7647. FROM goaf_sensor
  7648. where oc_id = 406283
  7649. AND goaf_dev_name = 'waterpump'
  7650. 16:24:44.012 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:24:44 | Time Consuming: 5 ms | Connection: statement-5 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  7651. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  7652. FROM goaf_sensor AS C
  7653. LEFT JOIN
  7654. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  7655. FROM goaf_sensordata
  7656. ORDER BY goaf_datareport_time DESC
  7657. LIMIT 1) AS A ON A.goaf_sensor_id = C.goaf_sensor_id
  7658. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  7659. WHERE C.goaf_sensor_id = 442136
  7660. 16:24:44.016 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:24:44 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT *
  7661. FROM goaf_sensor
  7662. where oc_id = 406283
  7663. AND goaf_dev_name = 'machinery'
  7664. 16:24:44.020 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:24:44 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  7665. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  7666. FROM goaf_sensor AS C
  7667. LEFT JOIN
  7668. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  7669. FROM goaf_sensordata
  7670. ORDER BY goaf_datareport_time DESC
  7671. LIMIT 1) AS A ON A.goaf_sensor_id = C.goaf_sensor_id
  7672. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  7673. WHERE C.goaf_sensor_id = 442137
  7674. 16:24:44.024 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:24:44 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT *
  7675. FROM goaf_sensor
  7676. where oc_id = 406283
  7677. AND goaf_dev_name = 'compress'
  7678. 16:24:44.045 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:24:44 | Time Consuming: 20 ms | Connection: statement-5 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  7679. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  7680. FROM goaf_sensor AS C
  7681. LEFT JOIN
  7682. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  7683. FROM goaf_sensordata
  7684. ORDER BY goaf_datareport_time DESC
  7685. LIMIT 1) AS A ON A.goaf_sensor_id = C.goaf_sensor_id
  7686. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  7687. WHERE C.goaf_sensor_id = 442135
  7688. 16:24:44.053 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:24:44 | Time Consuming: 7 ms | Connection: statement-5 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  7689. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  7690. FROM goaf_sensor AS C
  7691. LEFT JOIN
  7692. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  7693. FROM goaf_sensordata
  7694. ORDER BY goaf_datareport_time DESC
  7695. LIMIT 1) AS A ON A.goaf_sensor_id = C.goaf_sensor_id
  7696. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  7697. WHERE C.goaf_sensor_id = 442139
  7698. 16:24:48.890 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:24:48 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT 1
  7699. 16:24:48.897 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:24:48 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT *
  7700. FROM goaf_syscfg
  7701. WHERE oc_id = 406283
  7702. 16:24:48.897 [XNIO-1 task-2] INFO p6spy - 2023-09-07 16:24:48 | Time Consuming: 4 ms | Connection: statement-6 | SQL: SELECT 1
  7703. 16:24:48.899 [XNIO-1 task-3] INFO p6spy - 2023-09-07 16:24:48 | Time Consuming: 4 ms | Connection: statement-7 | SQL: SELECT 1
  7704. 16:24:48.903 [XNIO-1 task-3] INFO p6spy - 2023-09-07 16:24:48 | Time Consuming: 3 ms | Connection: statement-7 | SQL: SELECT count(0) FROM goaf_sensor WHERE oc_id = 406283
  7705. 16:24:48.906 [XNIO-1 task-2] INFO p6spy - 2023-09-07 16:24:48 | Time Consuming: 4 ms | Connection: statement-6 | SQL: SELECT *
  7706. FROM goaf_devinfo
  7707. where oc_id = 406283
  7708. 16:24:48.908 [XNIO-1 task-3] INFO p6spy - 2023-09-07 16:24:48 | Time Consuming: 4 ms | Connection: statement-7 | SQL: SELECT *
  7709. FROM goaf_sensor
  7710. where oc_id = 406283
  7711. LIMIT 10
  7712. 16:24:51.800 [XNIO-1 task-2] INFO p6spy - 2023-09-07 16:24:51 | Time Consuming: 4 ms | Connection: statement-6 | SQL: SELECT 1
  7713. 16:24:51.811 [XNIO-1 task-2] INFO p6spy - 2023-09-07 16:24:51 | Time Consuming: 4 ms | Connection: statement-6 | SQL: SELECT *
  7714. FROM goaf_devinfo
  7715. where oc_id = 406283
  7716. 16:24:51.819 [XNIO-1 task-2] INFO p6spy - 2023-09-07 16:24:51 | Time Consuming: 8 ms | Connection: statement-6 | SQL: SELECT *
  7717. FROM goaf_sensor
  7718. where oc_id = 406283
  7719. AND goaf_dev_name = 'other'
  7720. 16:24:51.829 [XNIO-1 task-2] INFO p6spy - 2023-09-07 16:24:51 | Time Consuming: 9 ms | Connection: statement-6 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  7721. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  7722. FROM goaf_sensor AS C
  7723. LEFT JOIN
  7724. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  7725. FROM goaf_sensordata
  7726. ORDER BY goaf_datareport_time DESC
  7727. LIMIT 1) AS A ON A.goaf_sensor_id = C.goaf_sensor_id
  7728. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  7729. WHERE C.goaf_sensor_id = 442129
  7730. 16:24:51.835 [XNIO-1 task-2] INFO p6spy - 2023-09-07 16:24:51 | Time Consuming: 6 ms | Connection: statement-6 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  7731. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  7732. FROM goaf_sensor AS C
  7733. LEFT JOIN
  7734. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  7735. FROM goaf_sensordata
  7736. ORDER BY goaf_datareport_time DESC
  7737. LIMIT 1) AS A ON A.goaf_sensor_id = C.goaf_sensor_id
  7738. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  7739. WHERE C.goaf_sensor_id = 442199
  7740. 16:24:51.840 [XNIO-1 task-2] INFO p6spy - 2023-09-07 16:24:51 | Time Consuming: 4 ms | Connection: statement-6 | SQL: SELECT *
  7741. FROM goaf_sensor
  7742. where oc_id = 406283
  7743. AND goaf_dev_name = 'waterpump'
  7744. 16:24:51.849 [XNIO-1 task-2] INFO p6spy - 2023-09-07 16:24:51 | Time Consuming: 9 ms | Connection: statement-6 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  7745. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  7746. FROM goaf_sensor AS C
  7747. LEFT JOIN
  7748. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  7749. FROM goaf_sensordata
  7750. ORDER BY goaf_datareport_time DESC
  7751. LIMIT 1) AS A ON A.goaf_sensor_id = C.goaf_sensor_id
  7752. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  7753. WHERE C.goaf_sensor_id = 442136
  7754. 16:24:51.854 [XNIO-1 task-2] INFO p6spy - 2023-09-07 16:24:51 | Time Consuming: 3 ms | Connection: statement-6 | SQL: SELECT *
  7755. FROM goaf_sensor
  7756. where oc_id = 406283
  7757. AND goaf_dev_name = 'machinery'
  7758. 16:24:51.868 [XNIO-1 task-2] INFO p6spy - 2023-09-07 16:24:51 | Time Consuming: 13 ms | Connection: statement-6 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  7759. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  7760. FROM goaf_sensor AS C
  7761. LEFT JOIN
  7762. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  7763. FROM goaf_sensordata
  7764. ORDER BY goaf_datareport_time DESC
  7765. LIMIT 1) AS A ON A.goaf_sensor_id = C.goaf_sensor_id
  7766. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  7767. WHERE C.goaf_sensor_id = 442137
  7768. 16:24:51.897 [XNIO-1 task-2] INFO p6spy - 2023-09-07 16:24:51 | Time Consuming: 28 ms | Connection: statement-6 | SQL: SELECT *
  7769. FROM goaf_sensor
  7770. where oc_id = 406283
  7771. AND goaf_dev_name = 'compress'
  7772. 16:24:51.908 [XNIO-1 task-2] INFO p6spy - 2023-09-07 16:24:51 | Time Consuming: 11 ms | Connection: statement-6 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  7773. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  7774. FROM goaf_sensor AS C
  7775. LEFT JOIN
  7776. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  7777. FROM goaf_sensordata
  7778. ORDER BY goaf_datareport_time DESC
  7779. LIMIT 1) AS A ON A.goaf_sensor_id = C.goaf_sensor_id
  7780. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  7781. WHERE C.goaf_sensor_id = 442135
  7782. 16:24:51.921 [XNIO-1 task-2] INFO p6spy - 2023-09-07 16:24:51 | Time Consuming: 11 ms | Connection: statement-6 | SQL: SELECT C.goaf_sensor_name, C.goaf_sensor_location, C.goaf_sensor_status, C.goaf_install_time,
  7783. B.goaf_sensor_alarm_level, B.goaf_sensor_alarm_type, A.goaf_datareport_time
  7784. FROM goaf_sensor AS C
  7785. LEFT JOIN
  7786. (SELECT goaf_sensor_id, goaf_data_id, goaf_datareport_time
  7787. FROM goaf_sensordata
  7788. ORDER BY goaf_datareport_time DESC
  7789. LIMIT 1) AS A ON A.goaf_sensor_id = C.goaf_sensor_id
  7790. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  7791. WHERE C.goaf_sensor_id = 442139
  7792. 16:24:53.293 [XNIO-1 task-2] INFO p6spy - 2023-09-07 16:24:53 | Time Consuming: 4 ms | Connection: statement-6 | SQL: SELECT 1
  7793. 16:24:53.294 [XNIO-1 task-3] INFO p6spy - 2023-09-07 16:24:53 | Time Consuming: 5 ms | Connection: statement-7 | SQL: SELECT 1
  7794. 16:24:53.294 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:24:53 | Time Consuming: 5 ms | Connection: statement-5 | SQL: SELECT 1
  7795. 16:24:53.303 [XNIO-1 task-2] INFO p6spy - 2023-09-07 16:24:53 | Time Consuming: 5 ms | Connection: statement-6 | SQL: SELECT *
  7796. FROM goaf_syscfg
  7797. WHERE oc_id = 406283
  7798. 16:24:53.304 [XNIO-1 task-3] INFO p6spy - 2023-09-07 16:24:53 | Time Consuming: 4 ms | Connection: statement-7 | SQL: SELECT count(0) FROM goaf_devinfo WHERE oc_id = 406283
  7799. 16:24:53.305 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:24:53 | Time Consuming: 6 ms | Connection: statement-5 | SQL: SELECT *
  7800. FROM goaf_baseinfo
  7801. WHERE oc_id = 406283
  7802. 16:24:53.309 [XNIO-1 task-3] INFO p6spy - 2023-09-07 16:24:53 | Time Consuming: 4 ms | Connection: statement-7 | SQL: SELECT *
  7803. FROM goaf_devinfo
  7804. where oc_id = 406283
  7805. LIMIT 10
  7806. 16:24:55.066 [XNIO-1 task-3] INFO p6spy - 2023-09-07 16:24:55 | Time Consuming: 3 ms | Connection: statement-7 | SQL: SELECT 1
  7807. 16:24:55.084 [XNIO-1 task-3] INFO p6spy - 2023-09-07 16:24:55 | Time Consuming: 4 ms | Connection: statement-7 | SQL: SELECT count(0) FROM goaf_sensoralarm AS A LEFT JOIN goaf_sensordata AS B ON A.goaf_data_id = B.goaf_data_id WHERE B.oc_id = 406283
  7808. 16:24:55.090 [XNIO-1 task-3] INFO p6spy - 2023-09-07 16:24:55 | Time Consuming: 4 ms | Connection: statement-7 | SQL: SELECT A.*,
  7809. B.oc_id,
  7810. B.goaf_sensor_id,
  7811. B.goaf_sensor_name,
  7812. B.goaf_dev_name,
  7813. B.goaf_dev_typename,
  7814. B.frequency_x,
  7815. B.frequency_y,
  7816. B.frequency_z,
  7817. B.acc_x,
  7818. B.acc_y,
  7819. B.acc_z,
  7820. B.vel_x,
  7821. B.vel_y,
  7822. B.vel_z,
  7823. B.dis_x,
  7824. B.dis_y,
  7825. B.dis_z,
  7826. B.sensor_temperature,
  7827. B.ang_x,
  7828. B.ang_y,
  7829. B.ang_z,
  7830. B.f_alarm_temperature,
  7831. B.goaf_datareport_time
  7832. FROM goaf_sensoralarm AS A
  7833. LEFT JOIN goaf_sensordata AS B ON A.goaf_data_id = B.goaf_data_id
  7834. WHERE B.oc_id = 406283
  7835. ORDER BY B.goaf_datareport_time DESC
  7836. LIMIT 10
  7837. 16:26:14.186 [XNIO-1 task-3] INFO p6spy - 2023-09-07 16:26:14 | Time Consuming: 3 ms | Connection: statement-7 | SQL: SELECT 1
  7838. 16:26:14.195 [XNIO-1 task-3] INFO p6spy - 2023-09-07 16:26:14 | Time Consuming: 3 ms | Connection: statement-7 | SQL: SELECT count(0) FROM goaf_devinfo WHERE oc_id = 406283
  7839. 16:26:14.201 [XNIO-1 task-3] INFO p6spy - 2023-09-07 16:26:14 | Time Consuming: 5 ms | Connection: statement-7 | SQL: SELECT *
  7840. FROM goaf_devinfo
  7841. where oc_id = 406283
  7842. LIMIT 10
  7843. 16:26:14.204 [XNIO-1 task-3] INFO p6spy - 2023-09-07 16:26:14 | Time Consuming: 4 ms | Connection: statement-7 | SQL: SELECT *
  7844. FROM goaf_sensor
  7845. where oc_id = 406283
  7846. AND goaf_dev_name = 'other'
  7847. 16:26:14.214 [XNIO-1 task-3] INFO p6spy - 2023-09-07 16:26:14 | Time Consuming: 8 ms | Connection: statement-7 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  7848. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  7849. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  7850. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  7851. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  7852. FROM goaf_sensordata AS A
  7853. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  7854. WHERE A.oc_id = 406283
  7855. AND A.goaf_sensor_id = 442129
  7856. ORDER BY A.goaf_datareport_time DESC
  7857. LIMIT 1
  7858. 16:26:14.221 [XNIO-1 task-3] INFO p6spy - 2023-09-07 16:26:14 | Time Consuming: 6 ms | Connection: statement-7 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  7859. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  7860. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  7861. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  7862. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  7863. FROM goaf_sensordata AS A
  7864. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  7865. WHERE A.oc_id = 406283
  7866. AND A.goaf_sensor_id = 442199
  7867. ORDER BY A.goaf_datareport_time DESC
  7868. LIMIT 1
  7869. 16:26:14.229 [XNIO-1 task-3] INFO p6spy - 2023-09-07 16:26:14 | Time Consuming: 6 ms | Connection: statement-7 | SQL: SELECT *
  7870. FROM goaf_sensor
  7871. where oc_id = 406283
  7872. AND goaf_dev_name = 'waterpump'
  7873. 16:26:14.235 [XNIO-1 task-3] INFO p6spy - 2023-09-07 16:26:14 | Time Consuming: 5 ms | Connection: statement-7 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  7874. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  7875. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  7876. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  7877. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  7878. FROM goaf_sensordata AS A
  7879. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  7880. WHERE A.oc_id = 406283
  7881. AND A.goaf_sensor_id = 442136
  7882. ORDER BY A.goaf_datareport_time DESC
  7883. LIMIT 1
  7884. 16:26:14.242 [XNIO-1 task-3] INFO p6spy - 2023-09-07 16:26:14 | Time Consuming: 6 ms | Connection: statement-7 | SQL: SELECT *
  7885. FROM goaf_sensor
  7886. where oc_id = 406283
  7887. AND goaf_dev_name = 'machinery'
  7888. 16:26:14.247 [XNIO-1 task-3] INFO p6spy - 2023-09-07 16:26:14 | Time Consuming: 4 ms | Connection: statement-7 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  7889. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  7890. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  7891. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  7892. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  7893. FROM goaf_sensordata AS A
  7894. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  7895. WHERE A.oc_id = 406283
  7896. AND A.goaf_sensor_id = 442137
  7897. ORDER BY A.goaf_datareport_time DESC
  7898. LIMIT 1
  7899. 16:26:14.252 [XNIO-1 task-3] INFO p6spy - 2023-09-07 16:26:14 | Time Consuming: 4 ms | Connection: statement-7 | SQL: SELECT *
  7900. FROM goaf_sensor
  7901. where oc_id = 406283
  7902. AND goaf_dev_name = 'compress'
  7903. 16:26:14.259 [XNIO-1 task-3] INFO p6spy - 2023-09-07 16:26:14 | Time Consuming: 6 ms | Connection: statement-7 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  7904. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  7905. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  7906. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  7907. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  7908. FROM goaf_sensordata AS A
  7909. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  7910. WHERE A.oc_id = 406283
  7911. AND A.goaf_sensor_id = 442135
  7912. ORDER BY A.goaf_datareport_time DESC
  7913. LIMIT 1
  7914. 16:26:14.265 [XNIO-1 task-3] INFO p6spy - 2023-09-07 16:26:14 | Time Consuming: 5 ms | Connection: statement-7 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  7915. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  7916. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  7917. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  7918. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  7919. FROM goaf_sensordata AS A
  7920. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  7921. WHERE A.oc_id = 406283
  7922. AND A.goaf_sensor_id = 442139
  7923. ORDER BY A.goaf_datareport_time DESC
  7924. LIMIT 1
  7925. 16:30:10.518 [XNIO-1 task-3] INFO p6spy - 2023-09-07 16:30:10 | Time Consuming: 5 ms | Connection: statement-7 | SQL: SELECT 1
  7926. 16:30:10.530 [XNIO-1 task-3] INFO p6spy - 2023-09-07 16:30:10 | Time Consuming: 4 ms | Connection: statement-7 | SQL: SELECT count(0) FROM goaf_devinfo WHERE oc_id = 406283
  7927. 16:30:10.534 [XNIO-1 task-3] INFO p6spy - 2023-09-07 16:30:10 | Time Consuming: 3 ms | Connection: statement-7 | SQL: SELECT *
  7928. FROM goaf_devinfo
  7929. where oc_id = 406283
  7930. LIMIT 10
  7931. 16:30:10.539 [XNIO-1 task-3] INFO p6spy - 2023-09-07 16:30:10 | Time Consuming: 4 ms | Connection: statement-7 | SQL: SELECT *
  7932. FROM goaf_sensor
  7933. where oc_id = 406283
  7934. AND goaf_dev_name = 'other'
  7935. 16:30:10.546 [XNIO-1 task-3] INFO p6spy - 2023-09-07 16:30:10 | Time Consuming: 5 ms | Connection: statement-7 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  7936. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  7937. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  7938. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  7939. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  7940. FROM goaf_sensordata AS A
  7941. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  7942. WHERE A.oc_id = 406283
  7943. AND A.goaf_sensor_id = 442129
  7944. ORDER BY A.goaf_datareport_time DESC
  7945. LIMIT 1
  7946. 16:30:10.553 [XNIO-1 task-3] INFO p6spy - 2023-09-07 16:30:10 | Time Consuming: 5 ms | Connection: statement-7 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  7947. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  7948. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  7949. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  7950. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  7951. FROM goaf_sensordata AS A
  7952. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  7953. WHERE A.oc_id = 406283
  7954. AND A.goaf_sensor_id = 442199
  7955. ORDER BY A.goaf_datareport_time DESC
  7956. LIMIT 1
  7957. 16:30:10.560 [XNIO-1 task-3] INFO p6spy - 2023-09-07 16:30:10 | Time Consuming: 6 ms | Connection: statement-7 | SQL: SELECT *
  7958. FROM goaf_sensor
  7959. where oc_id = 406283
  7960. AND goaf_dev_name = 'waterpump'
  7961. 16:30:10.569 [XNIO-1 task-3] INFO p6spy - 2023-09-07 16:30:10 | Time Consuming: 7 ms | Connection: statement-7 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  7962. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  7963. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  7964. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  7965. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  7966. FROM goaf_sensordata AS A
  7967. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  7968. WHERE A.oc_id = 406283
  7969. AND A.goaf_sensor_id = 442136
  7970. ORDER BY A.goaf_datareport_time DESC
  7971. LIMIT 1
  7972. 16:30:10.576 [XNIO-1 task-3] INFO p6spy - 2023-09-07 16:30:10 | Time Consuming: 5 ms | Connection: statement-7 | SQL: SELECT *
  7973. FROM goaf_sensor
  7974. where oc_id = 406283
  7975. AND goaf_dev_name = 'machinery'
  7976. 16:30:10.584 [XNIO-1 task-3] INFO p6spy - 2023-09-07 16:30:10 | Time Consuming: 7 ms | Connection: statement-7 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  7977. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  7978. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  7979. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  7980. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  7981. FROM goaf_sensordata AS A
  7982. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  7983. WHERE A.oc_id = 406283
  7984. AND A.goaf_sensor_id = 442137
  7985. ORDER BY A.goaf_datareport_time DESC
  7986. LIMIT 1
  7987. 16:30:10.590 [XNIO-1 task-3] INFO p6spy - 2023-09-07 16:30:10 | Time Consuming: 4 ms | Connection: statement-7 | SQL: SELECT *
  7988. FROM goaf_sensor
  7989. where oc_id = 406283
  7990. AND goaf_dev_name = 'compress'
  7991. 16:30:10.598 [XNIO-1 task-3] INFO p6spy - 2023-09-07 16:30:10 | Time Consuming: 6 ms | Connection: statement-7 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  7992. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  7993. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  7994. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  7995. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  7996. FROM goaf_sensordata AS A
  7997. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  7998. WHERE A.oc_id = 406283
  7999. AND A.goaf_sensor_id = 442135
  8000. ORDER BY A.goaf_datareport_time DESC
  8001. LIMIT 1
  8002. 16:30:10.607 [XNIO-1 task-3] INFO p6spy - 2023-09-07 16:30:10 | Time Consuming: 5 ms | Connection: statement-7 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  8003. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  8004. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  8005. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  8006. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  8007. FROM goaf_sensordata AS A
  8008. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  8009. WHERE A.oc_id = 406283
  8010. AND A.goaf_sensor_id = 442139
  8011. ORDER BY A.goaf_datareport_time DESC
  8012. LIMIT 1
  8013. 16:30:15.538 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:30:15 | Time Consuming: 5013 ms | Connection: statement-5 | SQL: SELECT 1
  8014. 16:30:20.542 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:30:20 | Time Consuming: 5002 ms | Connection: statement-6 | SQL: SELECT 1
  8015. 16:30:20.546 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:30:20 | Time Consuming: 3 ms | Connection: statement-7 | SQL: SELECT 1
  8016. 16:30:20.555 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:30:20 | Time Consuming: 3 ms | Connection: statement-7 | SQL: SELECT count(0) FROM goaf_devinfo WHERE oc_id = 406283
  8017. 16:30:20.561 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:30:20 | Time Consuming: 4 ms | Connection: statement-7 | SQL: SELECT *
  8018. FROM goaf_devinfo
  8019. where oc_id = 406283
  8020. LIMIT 10
  8021. 16:30:20.566 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:30:20 | Time Consuming: 4 ms | Connection: statement-7 | SQL: SELECT *
  8022. FROM goaf_sensor
  8023. where oc_id = 406283
  8024. AND goaf_dev_name = 'other'
  8025. 16:30:20.573 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:30:20 | Time Consuming: 5 ms | Connection: statement-7 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  8026. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  8027. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  8028. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  8029. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  8030. FROM goaf_sensordata AS A
  8031. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  8032. WHERE A.oc_id = 406283
  8033. AND A.goaf_sensor_id = 442129
  8034. ORDER BY A.goaf_datareport_time DESC
  8035. LIMIT 1
  8036. 16:30:20.578 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:30:20 | Time Consuming: 4 ms | Connection: statement-7 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  8037. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  8038. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  8039. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  8040. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  8041. FROM goaf_sensordata AS A
  8042. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  8043. WHERE A.oc_id = 406283
  8044. AND A.goaf_sensor_id = 442199
  8045. ORDER BY A.goaf_datareport_time DESC
  8046. LIMIT 1
  8047. 16:30:20.582 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:30:20 | Time Consuming: 3 ms | Connection: statement-7 | SQL: SELECT *
  8048. FROM goaf_sensor
  8049. where oc_id = 406283
  8050. AND goaf_dev_name = 'waterpump'
  8051. 16:30:20.588 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:30:20 | Time Consuming: 5 ms | Connection: statement-7 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  8052. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  8053. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  8054. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  8055. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  8056. FROM goaf_sensordata AS A
  8057. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  8058. WHERE A.oc_id = 406283
  8059. AND A.goaf_sensor_id = 442136
  8060. ORDER BY A.goaf_datareport_time DESC
  8061. LIMIT 1
  8062. 16:30:20.593 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:30:20 | Time Consuming: 3 ms | Connection: statement-7 | SQL: SELECT *
  8063. FROM goaf_sensor
  8064. where oc_id = 406283
  8065. AND goaf_dev_name = 'machinery'
  8066. 16:30:20.599 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:30:20 | Time Consuming: 4 ms | Connection: statement-7 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  8067. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  8068. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  8069. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  8070. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  8071. FROM goaf_sensordata AS A
  8072. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  8073. WHERE A.oc_id = 406283
  8074. AND A.goaf_sensor_id = 442137
  8075. ORDER BY A.goaf_datareport_time DESC
  8076. LIMIT 1
  8077. 16:30:20.605 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:30:20 | Time Consuming: 4 ms | Connection: statement-7 | SQL: SELECT *
  8078. FROM goaf_sensor
  8079. where oc_id = 406283
  8080. AND goaf_dev_name = 'compress'
  8081. 16:30:20.609 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:30:20 | Time Consuming: 4 ms | Connection: statement-7 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  8082. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  8083. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  8084. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  8085. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  8086. FROM goaf_sensordata AS A
  8087. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  8088. WHERE A.oc_id = 406283
  8089. AND A.goaf_sensor_id = 442135
  8090. ORDER BY A.goaf_datareport_time DESC
  8091. LIMIT 1
  8092. 16:30:20.614 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:30:20 | Time Consuming: 4 ms | Connection: statement-7 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  8093. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  8094. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  8095. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  8096. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  8097. FROM goaf_sensordata AS A
  8098. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  8099. WHERE A.oc_id = 406283
  8100. AND A.goaf_sensor_id = 442139
  8101. ORDER BY A.goaf_datareport_time DESC
  8102. LIMIT 1
  8103. 16:30:47.906 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:30:47 | Time Consuming: 4 ms | Connection: statement-7 | SQL: SELECT 1
  8104. 16:30:47.917 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:30:47 | Time Consuming: 7 ms | Connection: statement-7 | SQL: SELECT
  8105. client_id,
  8106. client_title,
  8107. client_app_id,
  8108. client_app_key,
  8109. client_app_secret,
  8110. client_desc,
  8111. status,
  8112. is_fixed
  8113. FROM client
  8114. WHERE deleted_flag = 0
  8115. AND client_app_id = '10001'
  8116. AND client_app_key = '82a8bf439373e305'
  8117. 16:30:47.934 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:30:47 | Time Consuming: 5 ms | Connection: statement-7 | SQL: SELECT
  8118. A.client_id,
  8119. A.role_id,
  8120. A.permit_id,
  8121. A.permit_title,
  8122. A.permit_code,
  8123. A.permit_entry,
  8124. A.permit_desc,
  8125. A.permit_type,
  8126. A.parent_id,
  8127. A.root_id,
  8128. A.sort_no,
  8129. A.is_home
  8130. FROM s_role_permit AS A
  8131. WHERE 1 = 1
  8132. AND A.client_id = 2
  8133. AND A.role_id = 6
  8134. ORDER BY A.parent_id ASC ,A.sort_no ASC
  8135. 16:30:48.117 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:30:48 | Time Consuming: 3 ms | Connection: statement-7 | SQL: SELECT count(0) FROM goaf_devinfo WHERE oc_id = 406283
  8136. 16:30:48.122 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:30:48 | Time Consuming: 4 ms | Connection: statement-7 | SQL: SELECT *
  8137. FROM goaf_devinfo
  8138. where oc_id = 406283
  8139. LIMIT 10
  8140. 16:30:48.127 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:30:48 | Time Consuming: 4 ms | Connection: statement-7 | SQL: SELECT *
  8141. FROM goaf_sensor
  8142. where oc_id = 406283
  8143. AND goaf_dev_name = 'other'
  8144. 16:30:48.133 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:30:48 | Time Consuming: 4 ms | Connection: statement-7 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  8145. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  8146. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  8147. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  8148. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  8149. FROM goaf_sensordata AS A
  8150. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  8151. WHERE A.oc_id = 406283
  8152. AND A.goaf_sensor_id = 442129
  8153. ORDER BY A.goaf_datareport_time DESC
  8154. LIMIT 1
  8155. 16:30:48.139 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:30:48 | Time Consuming: 5 ms | Connection: statement-7 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  8156. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  8157. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  8158. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  8159. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  8160. FROM goaf_sensordata AS A
  8161. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  8162. WHERE A.oc_id = 406283
  8163. AND A.goaf_sensor_id = 442199
  8164. ORDER BY A.goaf_datareport_time DESC
  8165. LIMIT 1
  8166. 16:30:48.145 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:30:48 | Time Consuming: 4 ms | Connection: statement-7 | SQL: SELECT *
  8167. FROM goaf_sensor
  8168. where oc_id = 406283
  8169. AND goaf_dev_name = 'waterpump'
  8170. 16:30:48.152 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:30:48 | Time Consuming: 5 ms | Connection: statement-7 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  8171. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  8172. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  8173. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  8174. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  8175. FROM goaf_sensordata AS A
  8176. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  8177. WHERE A.oc_id = 406283
  8178. AND A.goaf_sensor_id = 442136
  8179. ORDER BY A.goaf_datareport_time DESC
  8180. LIMIT 1
  8181. 16:30:48.157 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:30:48 | Time Consuming: 4 ms | Connection: statement-7 | SQL: SELECT *
  8182. FROM goaf_sensor
  8183. where oc_id = 406283
  8184. AND goaf_dev_name = 'machinery'
  8185. 16:30:48.162 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:30:48 | Time Consuming: 3 ms | Connection: statement-7 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  8186. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  8187. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  8188. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  8189. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  8190. FROM goaf_sensordata AS A
  8191. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  8192. WHERE A.oc_id = 406283
  8193. AND A.goaf_sensor_id = 442137
  8194. ORDER BY A.goaf_datareport_time DESC
  8195. LIMIT 1
  8196. 16:30:48.166 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:30:48 | Time Consuming: 3 ms | Connection: statement-7 | SQL: SELECT *
  8197. FROM goaf_sensor
  8198. where oc_id = 406283
  8199. AND goaf_dev_name = 'compress'
  8200. 16:30:48.172 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:30:48 | Time Consuming: 4 ms | Connection: statement-7 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  8201. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  8202. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  8203. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  8204. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  8205. FROM goaf_sensordata AS A
  8206. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  8207. WHERE A.oc_id = 406283
  8208. AND A.goaf_sensor_id = 442135
  8209. ORDER BY A.goaf_datareport_time DESC
  8210. LIMIT 1
  8211. 16:30:48.177 [XNIO-1 task-4] INFO p6spy - 2023-09-07 16:30:48 | Time Consuming: 4 ms | Connection: statement-7 | SQL: SELECT A.goaf_data_id, A.oc_id, A.goaf_sensor_id, A.goaf_sensor_name, A.frequency_x, A.frequency_y, A.frequency_z,
  8212. A.acc_x, A.acc_y, A.acc_z, A.vel_x, A.vel_y, A.vel_z, A.dis_x, A.dis_y, A.dis_z, A.sensor_temperature,
  8213. A.ang_x, A.ang_y, A.ang_z, A.f_alarm_acc_x, A.f_alarm_acc_y, A.f_alarm_acc_z,
  8214. A.f_alarm_vel_x, A.f_alarm_vel_y, A.f_alarm_vel_z, A.f_alarm_dis_x, A.f_alarm_dis_y, A.f_alarm_dis_z,
  8215. A.f_alarm_temperature, A.goaf_datareport_time,B.goaf_sensor_alarm_level,B.goaf_sensor_alarm_type
  8216. FROM goaf_sensordata AS A
  8217. LEFT JOIN goaf_sensoralarm AS B ON A.goaf_data_id = B.goaf_data_id
  8218. WHERE A.oc_id = 406283
  8219. AND A.goaf_sensor_id = 442139
  8220. ORDER BY A.goaf_datareport_time DESC
  8221. LIMIT 1
  8222. 16:30:53.112 [XNIO-1 task-3] INFO p6spy - 2023-09-07 16:30:53 | Time Consuming: 5002 ms | Connection: statement-8 | SQL: SELECT 1
  8223. 16:30:53.117 [XNIO-1 task-3] INFO p6spy - 2023-09-07 16:30:53 | Time Consuming: 4 ms | Connection: statement-10 | SQL: SELECT 1
  8224. 16:30:53.151 [XNIO-1 task-3] INFO p6spy - 2023-09-07 16:30:53 | Time Consuming: 30 ms | Connection: statement-10 | SQL: SELECT count(*)
  8225. FROM msg AS M
  8226. WHERE M.oc_id = 406283
  8227. AND (
  8228. EXISTS (
  8229. SELECT 1 FROM msg_to TT
  8230. WHERE M.oc_id = TT.oc_id AND M.msg_id = TT.msg_id AND TT.msg_to_id = 406283 AND TT.status=0
  8231. ) OR
  8232. EXISTS (
  8233. SELECT 1 FROM msg_cc CC
  8234. WHERE M.oc_id = CC.oc_id AND M.msg_id = CC.msg_id AND CC.msg_cc_id = 406283 AND CC.status=0
  8235. )
  8236. )
  8237. 16:32:31.377 [XNIO-1 task-3] INFO p6spy - 2023-09-07 16:32:31 | Time Consuming: 6 ms | Connection: statement-10 | SQL: SELECT 1
  8238. 16:32:31.395 [XNIO-1 task-3] INFO p6spy - 2023-09-07 16:32:31 | Time Consuming: 11 ms | Connection: statement-10 | SQL: SELECT td_wave_value_x, td_wave_value_y, td_wave_value_z
  8239. FROM goaf_sensordata
  8240. WHERE goaf_data_id = 442169
  8241. 16:32:45.423 [XNIO-1 task-3] INFO p6spy - 2023-09-07 16:32:45 | Time Consuming: 3 ms | Connection: statement-10 | SQL: SELECT 1
  8242. 16:32:45.434 [XNIO-1 task-3] INFO p6spy - 2023-09-07 16:32:45 | Time Consuming: 5 ms | Connection: statement-10 | SQL: SELECT td_wave_value_x, td_wave_value_y, td_wave_value_z
  8243. FROM goaf_sensordata
  8244. WHERE goaf_data_id = 442159
  8245. 16:32:48.524 [XNIO-1 task-3] INFO p6spy - 2023-09-07 16:32:48 | Time Consuming: 3 ms | Connection: statement-10 | SQL: SELECT 1
  8246. 16:32:48.541 [XNIO-1 task-3] INFO p6spy - 2023-09-07 16:32:48 | Time Consuming: 12 ms | Connection: statement-10 | SQL: SELECT td_wave_value_x, td_wave_value_y, td_wave_value_z
  8247. FROM goaf_sensordata
  8248. WHERE goaf_data_id = 442178
  8249. 18:10:04.378 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  8250. 18:10:04.380 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.4.Final
  8251. 18:10:04.384 [SpringApplicationShutdownHook] INFO io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
  8252. 18:10:04.387 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - Removing {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  8253. 18:10:04.387 [SpringApplicationShutdownHook] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 0 subscriber(s).
  8254. 18:10:04.387 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - stopped bean '_org.springframework.integration.errorLogger'
  8255. 18:10:04.394 [SpringApplicationShutdownHook] INFO o.s.j.e.a.AnnotationMBeanExporter - Could not unregister MBean [com.github.tobato.fastdfs.domain.conn:name=fdfsConnectionPool,type=FdfsConnectionPool] as said MBean is not registered (perhaps already unregistered by an external process)
  8256. 18:10:04.395 [SpringApplicationShutdownHook] INFO o.s.s.quartz.SchedulerFactoryBean - Shutting down Quartz Scheduler
  8257. 18:10:04.395 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
  8258. 18:10:04.396 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  8259. 18:10:04.396 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
  8260. 18:10:04.409 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown initiated...
  8261. 18:10:04.411 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown completed.