info.2023-08-25.log 502 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554
  1. 00:09:15.123 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  2. 00:09:15.130 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.4.Final
  3. 00:09:15.135 [SpringApplicationShutdownHook] INFO io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
  4. 00:09:15.139 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - Removing {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  5. 00:09:15.139 [SpringApplicationShutdownHook] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 0 subscriber(s).
  6. 00:09:15.171 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - stopped bean '_org.springframework.integration.errorLogger'
  7. 00:09:15.184 [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)
  8. 00:09:15.187 [SpringApplicationShutdownHook] INFO o.s.s.quartz.SchedulerFactoryBean - Shutting down Quartz Scheduler
  9. 00:09:15.187 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
  10. 00:09:15.187 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  11. 00:09:15.188 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
  12. 00:09:15.213 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown initiated...
  13. 00:09:15.218 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown completed.
  14. 00:42:32.111 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.0.Final
  15. 00:42:32.220 [restartedMain] INFO com.zhyc.xps.XPSApplication - Starting XPSApplication using Java 17.0.6 with PID 20676 (E:\zhycnewprj\iotplatform\xps-server-3\xps-application\target\classes started by qzz19 in E:\zhycnewprj\iotplatform\xps-server-3)
  16. 00:42:32.222 [restartedMain] INFO com.zhyc.xps.XPSApplication - The following 1 profile is active: "local"
  17. 00:42:32.325 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
  18. 00:42:32.326 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
  19. 00:42:35.861 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
  20. 00:42:35.866 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  21. 00:42:36.108 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 222 ms. Found 0 Redis repository interfaces.
  22. 00:42:36.388 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created.
  23. 00:42:36.409 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created.
  24. 00:42:37.679 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  25. 00:42:37.680 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 5354 ms
  26. 00:42:42.174 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor
  27. 00:42:42.189 [restartedMain] INFO o.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  28. 00:42:42.189 [restartedMain] INFO org.quartz.core.QuartzScheduler - Quartz Scheduler v.2.3.2 created.
  29. 00:42:42.190 [restartedMain] INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized.
  30. 00:42:42.190 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
  31. Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  32. NOT STARTED.
  33. Currently in standby mode.
  34. Number of jobs executed: 0
  35. Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  36. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
  37. 00:42:42.191 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  38. 00:42:42.191 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2
  39. 00:42:42.191 [restartedMain] INFO org.quartz.core.QuartzScheduler - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@23a9a157
  40. 00:42:44.750 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer - LiveReload server is running on port 35729
  41. 00:42:44.757 [restartedMain] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 15 endpoint(s) beneath base path '/actuator/z'
  42. 00:42:44.962 [restartedMain] INFO io.undertow.websockets.jsr - UT026003: Adding annotated server endpoint class com.zhyc.xps.common.ws.WebSocketServer for path /websocket/link
  43. 00:42:45.006 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  44. 00:42:45.007 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 1 subscriber(s).
  45. 00:42:45.008 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - started bean '_org.springframework.integration.errorLogger'
  46. 00:42:45.035 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  47. 00:42:45.047 [restartedMain] INFO org.xnio - XNIO version 3.8.8.Final
  48. 00:42:45.063 [restartedMain] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.8.Final
  49. 00:42:45.109 [restartedMain] INFO org.jboss.threads - JBoss Threads version 3.5.0.Final
  50. 00:42:45.212 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 1788 (http)
  51. 00:42:45.214 [restartedMain] INFO o.s.s.quartz.SchedulerFactoryBean - Starting Quartz Scheduler now
  52. 00:42:45.216 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  53. 00:42:45.255 [restartedMain] INFO com.zhyc.xps.XPSApplication - Started XPSApplication in 14.103 seconds (process running for 15.489)
  54. 00:42:45.265 [restartedMain] INFO com.zhyc.xps.sys.job.InitSystemJob - 初始化系统定时任务
  55. 00:42:45.276 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Starting...
  56. 00:42:45.793 [restartedMain] INFO p6spy - 2023-08-25 00:42:45 | Time Consuming: 16 ms | Connection: statement-0 | SQL: SELECT 1
  57. 00:42:45.800 [restartedMain] INFO com.zaxxer.hikari.pool.HikariPool - DatebookHikariCP - Added connection com.p6spy.engine.wrapper.ConnectionWrapper@77ea6194
  58. 00:42:45.813 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Start completed.
  59. 00:42:45.906 [restartedMain] INFO p6spy - 2023-08-25 00:42:45 | Time Consuming: 12 ms | Connection: statement-0 | SQL: SELECT
  60. A.job_id,
  61. A.job_title,
  62. A.job_desc,
  63. A.status,
  64. A.job_type,
  65. A.job_code,
  66. A.job_cron,
  67. A.job_class_id,
  68. B.job_class,
  69. A.cycle_title,
  70. A.cycle_period,
  71. A.cycle_unit
  72. FROM job AS A
  73. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  74. WHERE A.deleted_flag = 0
  75. AND A.status = 1
  76. ORDER BY A.job_id ASC
  77. 00:42:45.935 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  78. 00:42:45.940 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  79. 00:42:46.888 [RMI TCP Connection(8)-192.168.3.17] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
  80. 00:42:46.888 [RMI TCP Connection(8)-192.168.3.17] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
  81. 00:42:46.892 [RMI TCP Connection(9)-192.168.3.17] INFO p6spy - 2023-08-25 00:42:46 | Time Consuming: 8 ms | Connection: statement-0 | SQL: SELECT 1
  82. 00:42:46.894 [RMI TCP Connection(8)-192.168.3.17] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 6 ms
  83. 00:42:46.912 [RMI TCP Connection(9)-192.168.3.17] INFO p6spy - 2023-08-25 00:42:46 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT 1
  84. 00:42:58.790 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  85. 00:42:58.793 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.4.Final
  86. 00:42:58.809 [SpringApplicationShutdownHook] INFO io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
  87. 00:42:58.813 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - Removing {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  88. 00:42:58.813 [SpringApplicationShutdownHook] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 0 subscriber(s).
  89. 00:42:58.814 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - stopped bean '_org.springframework.integration.errorLogger'
  90. 00:42:58.825 [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)
  91. 00:42:58.829 [SpringApplicationShutdownHook] INFO o.s.s.quartz.SchedulerFactoryBean - Shutting down Quartz Scheduler
  92. 00:42:58.829 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
  93. 00:42:58.830 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  94. 00:42:58.830 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
  95. 00:42:58.869 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown initiated...
  96. 00:42:58.890 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown completed.
  97. 09:47:53.993 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.0.Final
  98. 09:47:54.051 [restartedMain] INFO com.zhyc.xps.XPSApplication - Starting XPSApplication using Java 17.0.6 with PID 516 (E:\zhycnewprj\iotplatform\xps-server-3\xps-application\target\classes started by qzz19 in E:\zhycnewprj\iotplatform\xps-server-3)
  99. 09:47:54.051 [restartedMain] INFO com.zhyc.xps.XPSApplication - The following 1 profile is active: "local"
  100. 09:47:54.112 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
  101. 09:47:54.112 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
  102. 09:47:56.225 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
  103. 09:47:56.229 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  104. 09:47:56.329 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 82 ms. Found 0 Redis repository interfaces.
  105. 09:47:56.502 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created.
  106. 09:47:56.521 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created.
  107. 09:47:57.325 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  108. 09:47:57.325 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 3213 ms
  109. 09:47:59.850 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor
  110. 09:47:59.862 [restartedMain] INFO o.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  111. 09:47:59.862 [restartedMain] INFO org.quartz.core.QuartzScheduler - Quartz Scheduler v.2.3.2 created.
  112. 09:47:59.863 [restartedMain] INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized.
  113. 09:47:59.863 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
  114. Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  115. NOT STARTED.
  116. Currently in standby mode.
  117. Number of jobs executed: 0
  118. Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  119. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
  120. 09:47:59.863 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  121. 09:47:59.863 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2
  122. 09:47:59.863 [restartedMain] INFO org.quartz.core.QuartzScheduler - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@1747a9cc
  123. 09:48:01.602 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer - LiveReload server is running on port 35729
  124. 09:48:01.613 [restartedMain] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 15 endpoint(s) beneath base path '/actuator/z'
  125. 09:48:01.764 [restartedMain] INFO io.undertow.websockets.jsr - UT026003: Adding annotated server endpoint class com.zhyc.xps.common.ws.WebSocketServer for path /websocket/link
  126. 09:48:01.799 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  127. 09:48:01.799 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 1 subscriber(s).
  128. 09:48:01.799 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - started bean '_org.springframework.integration.errorLogger'
  129. 09:48:01.826 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  130. 09:48:01.838 [restartedMain] INFO org.xnio - XNIO version 3.8.8.Final
  131. 09:48:01.849 [restartedMain] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.8.Final
  132. 09:48:01.882 [restartedMain] INFO org.jboss.threads - JBoss Threads version 3.5.0.Final
  133. 09:48:01.935 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 1788 (http)
  134. 09:48:01.937 [restartedMain] INFO o.s.s.quartz.SchedulerFactoryBean - Starting Quartz Scheduler now
  135. 09:48:01.937 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  136. 09:48:01.963 [restartedMain] INFO com.zhyc.xps.XPSApplication - Started XPSApplication in 8.473 seconds (process running for 11.897)
  137. 09:48:01.965 [restartedMain] INFO com.zhyc.xps.sys.job.InitSystemJob - 初始化系统定时任务
  138. 09:48:01.974 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Starting...
  139. 09:48:02.390 [restartedMain] INFO p6spy - 2023-08-25 09:48:02 | Time Consuming: 12 ms | Connection: statement-0 | SQL: SELECT 1
  140. 09:48:02.395 [restartedMain] INFO com.zaxxer.hikari.pool.HikariPool - DatebookHikariCP - Added connection com.p6spy.engine.wrapper.ConnectionWrapper@2a7b1e6d
  141. 09:48:02.398 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Start completed.
  142. 09:48:02.468 [restartedMain] INFO p6spy - 2023-08-25 09:48:02 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT
  143. A.job_id,
  144. A.job_title,
  145. A.job_desc,
  146. A.status,
  147. A.job_type,
  148. A.job_code,
  149. A.job_cron,
  150. A.job_class_id,
  151. B.job_class,
  152. A.cycle_title,
  153. A.cycle_period,
  154. A.cycle_unit
  155. FROM job AS A
  156. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  157. WHERE A.deleted_flag = 0
  158. AND A.status = 1
  159. ORDER BY A.job_id ASC
  160. 09:48:02.489 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  161. 09:48:02.492 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  162. 09:48:16.143 [XNIO-1 task-2] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
  163. 09:48:16.143 [XNIO-1 task-2] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
  164. 09:48:16.146 [XNIO-1 task-2] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 3 ms
  165. 09:48:35.080 [XNIO-1 task-3] INFO p6spy - 2023-08-25 09:48:35 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  166. 09:48:35.089 [XNIO-1 task-3] INFO p6spy - 2023-08-25 09:48:35 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT
  167. client_id,
  168. client_title,
  169. client_app_id,
  170. client_app_key,
  171. client_app_secret,
  172. client_desc,
  173. status,
  174. is_fixed
  175. FROM client
  176. WHERE deleted_flag = 0
  177. AND client_app_id = '10001'
  178. AND client_app_key = '82a8bf439373e305'
  179. 09:48:35.105 [XNIO-1 task-3] INFO p6spy - 2023-08-25 09:48:35 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT
  180. A.oc_id,
  181. B.oc_type_id,
  182. B.oc_name,
  183. A.account_id,
  184. A.account_name,
  185. A.account_real_name,
  186. A.password,
  187. A.account_type,
  188. A.account_staff_no,
  189. A.account_phone,
  190. A.account_last_ip,
  191. A.account_loc,
  192. A.status,
  193. A.account_avatar,
  194. A.account_photo,
  195. A.account_real_name,
  196. A.account_intro,
  197. A.wx_id,
  198. A.is_fixed
  199. FROM account AS A
  200. LEFT JOIN oc AS B ON (A.oc_id = B.oc_id )
  201. WHERE A.deleted_flag = 0
  202. AND (A.account_name = 'sxky'
  203. OR A.account_phone = 'sxky'
  204. OR A.account_mail = 'sxky'
  205. OR A.account_staff_no = 'sxky')
  206. 09:48:35.112 [XNIO-1 task-3] INFO p6spy - 2023-08-25 09:48:35 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT
  207. A.oc_id,
  208. A.oc_name,
  209. A.oc_type_id,
  210. A.root_id,
  211. A.parent_id,
  212. A.admin_id,
  213. B.account_name AS admin_name,
  214. A.group_id,
  215. A.node_left,
  216. A.node_right,
  217. A.node_level,
  218. A.is_leaf,
  219. A.status,
  220. A.if_lic
  221. FROM oc AS A
  222. LEFT JOIN account AS B ON (A.oc_id = B.oc_id AND A.admin_id = B.account_id)
  223. WHERE A.oc_id = 406283
  224. 09:48:35.117 [XNIO-1 task-3] INFO p6spy - 2023-08-25 09:48:35 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT
  225. A.rm_id,
  226. A.role_id,
  227. B.role_type_id,
  228. B.role_code,
  229. B.role_name,
  230. A.account_id
  231. FROM s_role_member AS A
  232. LEFT JOIN s_role AS B ON (A.role_id = B.role_id)
  233. WHERE account_id = 406283
  234. LIMIT 1
  235. 09:48:35.122 [XNIO-1 task-3] INFO p6spy - 2023-08-25 09:48:35 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT
  236. A.gm_id,
  237. A.oc_id,
  238. A.group_id,
  239. B.group_name,
  240. B.node_left ,
  241. B.node_right,
  242. A.account_id
  243. FROM s_group_member AS A
  244. LEFT JOIN s_group AS B ON (A.oc_id = B.oc_id AND A.group_id = B.group_id)
  245. WHERE B.deleted_flag = 0
  246. AND A.oc_id = 406283
  247. AND A.account_id = 406283
  248. LIMIT 1
  249. 09:48:35.129 [XNIO-1 task-3] INFO p6spy - 2023-08-25 09:48:35 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT
  250. A.gmp_id,
  251. A.oc_id,
  252. A.group_id,
  253. B.group_name,
  254. A.account_id,
  255. D.account_name,
  256. D.account_real_name,
  257. A.position_id,
  258. C.position_name
  259. FROM s_group_member_position A
  260. LEFT JOIN s_group B ON (A.oc_id = B.oc_id AND A.group_id = B.group_id)
  261. LEFT JOIN s_position C ON (A.oc_id = C.oc_id AND A.position_id = C.position_id)
  262. LEFT JOIN account D ON (A.oc_id = D.oc_id AND A.account_id = D.account_id)
  263. WHERE A.deleted_flag = 0
  264. AND A.oc_id = 406283
  265. AND A.group_id = 406283
  266. AND A.account_id = 406283
  267. LIMIT 1
  268. 09:48:35.134 [XNIO-1 task-3] INFO p6spy - 2023-08-25 09:48:35 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT
  269. A.gmpg_id,
  270. A.oc_id,
  271. A.group_id,
  272. A.account_id,
  273. A.position_id,
  274. A.grant_group_id,
  275. B.group_name AS grant_group_name
  276. FROM s_group_member_position_grant A
  277. LEFT JOIN s_group B ON(A.oc_id = B.oc_id AND A.grant_group_id = B.group_id)
  278. WHERE A.deleted_flag = 0
  279. AND A.oc_id = 406283
  280. AND A.group_id = 406283
  281. AND A.account_id = 406283
  282. AND A.position_id = 406283
  283. LIMIT 1
  284. 09:48:35.577 [XNIO-1 task-3] INFO p6spy - 2023-08-25 09:48:35 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT
  285. client_id,
  286. client_title,
  287. client_app_id,
  288. client_app_key,
  289. client_app_secret,
  290. client_desc,
  291. status,
  292. is_fixed
  293. FROM client
  294. WHERE deleted_flag = 0
  295. AND client_app_id = '10001'
  296. AND client_app_key = '82a8bf439373e305'
  297. 09:48:35.593 [XNIO-1 task-3] INFO p6spy - 2023-08-25 09:48:35 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT
  298. A.client_id,
  299. A.role_id,
  300. A.permit_id,
  301. A.permit_title,
  302. A.permit_code,
  303. A.permit_entry,
  304. A.permit_desc,
  305. A.permit_type,
  306. A.parent_id,
  307. A.root_id,
  308. A.sort_no,
  309. A.is_home
  310. FROM s_role_permit AS A
  311. WHERE 1 = 1
  312. AND A.client_id = 2
  313. AND A.role_id = 6
  314. ORDER BY A.parent_id ASC ,A.sort_no ASC
  315. 09:48:35.851 [XNIO-1 task-3] INFO p6spy - 2023-08-25 09:48:35 | Time Consuming: 28 ms | Connection: statement-0 | SQL: SELECT count(*)
  316. FROM msg AS M
  317. WHERE M.oc_id = 406283
  318. AND (
  319. EXISTS (
  320. SELECT 1 FROM msg_to TT
  321. WHERE M.oc_id = TT.oc_id AND M.msg_id = TT.msg_id AND TT.msg_to_id = 406283 AND TT.status=0
  322. ) OR
  323. EXISTS (
  324. SELECT 1 FROM msg_cc CC
  325. WHERE M.oc_id = CC.oc_id AND M.msg_id = CC.msg_id AND CC.msg_cc_id = 406283 AND CC.status=0
  326. )
  327. )
  328. 09:48:36.386 [XNIO-1 task-3] INFO p6spy - 2023-08-25 09:48:36 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  329. 09:48:36.390 [XNIO-1 task-3] INFO p6spy - 2023-08-25 09:48:36 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT count(0) FROM goaf_sensor WHERE oc_id = 406283
  330. 09:48:36.396 [XNIO-1 task-3] INFO p6spy - 2023-08-25 09:48:36 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT *
  331. FROM goaf_sensor
  332. where oc_id = 406283
  333. LIMIT 10
  334. 09:48:40.620 [XNIO-1 task-3] INFO p6spy - 2023-08-25 09:48:40 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  335. 09:48:40.624 [XNIO-1 task-3] INFO p6spy - 2023-08-25 09:48:40 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT count(0) FROM goaf_sensor WHERE oc_id = 406283
  336. 09:48:40.628 [XNIO-1 task-3] INFO p6spy - 2023-08-25 09:48:40 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT *
  337. FROM goaf_sensor
  338. where oc_id = 406283
  339. LIMIT 10
  340. 09:49:04.257 [XNIO-1 task-3] INFO p6spy - 2023-08-25 09:49:04 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  341. 09:49:04.279 [XNIO-1 task-3] INFO p6spy - 2023-08-25 09:49:04 | Time Consuming: 17 ms | Connection: statement-0 | SQL: SELECT *
  342. FROM goaf_sensordata
  343. WHERE oc_id = 406283
  344. AND goaf_sensor_id = '442139'
  345. ORDER BY goaf_datareport_time DESC
  346. LIMIT 1
  347. 09:49:31.577 [XNIO-1 task-3] INFO p6spy - 2023-08-25 09:49:31 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  348. 09:49:31.585 [XNIO-1 task-3] INFO p6spy - 2023-08-25 09:49:31 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT *
  349. FROM goaf_devinfo
  350. where oc_id = 406283
  351. 09:49:42.841 [XNIO-1 task-3] INFO p6spy - 2023-08-25 09:49:42 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  352. 09:49:42.849 [XNIO-1 task-3] INFO p6spy - 2023-08-25 09:49:42 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT *
  353. FROM goaf_devinfo
  354. where oc_id = 406283
  355. 09:50:58.809 [XNIO-1 task-3] INFO p6spy - 2023-08-25 09:50:58 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  356. 09:50:58.818 [XNIO-1 task-3] INFO p6spy - 2023-08-25 09:50:58 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT *
  357. FROM goaf_devinfo
  358. where oc_id = 406283
  359. 09:52:47.794 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  360. 09:52:47.796 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.4.Final
  361. 09:52:47.799 [SpringApplicationShutdownHook] INFO io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
  362. 09:52:47.801 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - Removing {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  363. 09:52:47.801 [SpringApplicationShutdownHook] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 0 subscriber(s).
  364. 09:52:47.801 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - stopped bean '_org.springframework.integration.errorLogger'
  365. 09:52:47.897 [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)
  366. 09:52:47.898 [SpringApplicationShutdownHook] INFO o.s.s.quartz.SchedulerFactoryBean - Shutting down Quartz Scheduler
  367. 09:52:47.898 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
  368. 09:52:47.898 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  369. 09:52:47.898 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
  370. 09:52:47.911 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown initiated...
  371. 09:52:47.915 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown completed.
  372. 09:53:07.942 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.0.Final
  373. 09:53:07.991 [restartedMain] INFO com.zhyc.xps.XPSApplication - Starting XPSApplication using Java 17.0.6 with PID 18596 (E:\zhycnewprj\iotplatform\xps-server-3\xps-application\target\classes started by qzz19 in E:\zhycnewprj\iotplatform\xps-server-3)
  374. 09:53:07.991 [restartedMain] INFO com.zhyc.xps.XPSApplication - The following 1 profile is active: "local"
  375. 09:53:08.048 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
  376. 09:53:08.048 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
  377. 09:53:10.289 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
  378. 09:53:10.293 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  379. 09:53:10.404 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 89 ms. Found 0 Redis repository interfaces.
  380. 09:53:10.584 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created.
  381. 09:53:10.601 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created.
  382. 09:53:11.369 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  383. 09:53:11.369 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 3321 ms
  384. 09:53:13.742 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor
  385. 09:53:13.754 [restartedMain] INFO o.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  386. 09:53:13.755 [restartedMain] INFO org.quartz.core.QuartzScheduler - Quartz Scheduler v.2.3.2 created.
  387. 09:53:13.755 [restartedMain] INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized.
  388. 09:53:13.756 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
  389. Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  390. NOT STARTED.
  391. Currently in standby mode.
  392. Number of jobs executed: 0
  393. Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  394. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
  395. 09:53:13.756 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  396. 09:53:13.756 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2
  397. 09:53:13.756 [restartedMain] INFO org.quartz.core.QuartzScheduler - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@44072e5e
  398. 09:53:15.486 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer - LiveReload server is running on port 35729
  399. 09:53:15.491 [restartedMain] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 15 endpoint(s) beneath base path '/actuator/z'
  400. 09:53:15.635 [restartedMain] INFO io.undertow.websockets.jsr - UT026003: Adding annotated server endpoint class com.zhyc.xps.common.ws.WebSocketServer for path /websocket/link
  401. 09:53:15.666 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  402. 09:53:15.667 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 1 subscriber(s).
  403. 09:53:15.667 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - started bean '_org.springframework.integration.errorLogger'
  404. 09:53:15.687 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  405. 09:53:15.697 [restartedMain] INFO org.xnio - XNIO version 3.8.8.Final
  406. 09:53:15.707 [restartedMain] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.8.Final
  407. 09:53:15.737 [restartedMain] INFO org.jboss.threads - JBoss Threads version 3.5.0.Final
  408. 09:53:15.789 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 1788 (http)
  409. 09:53:15.791 [restartedMain] INFO o.s.s.quartz.SchedulerFactoryBean - Starting Quartz Scheduler now
  410. 09:53:15.791 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  411. 09:53:15.815 [restartedMain] INFO com.zhyc.xps.XPSApplication - Started XPSApplication in 8.344 seconds (process running for 9.257)
  412. 09:53:15.817 [restartedMain] INFO com.zhyc.xps.sys.job.InitSystemJob - 初始化系统定时任务
  413. 09:53:15.824 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Starting...
  414. 09:53:16.148 [restartedMain] INFO p6spy - 2023-08-25 09:53:16 | Time Consuming: 13 ms | Connection: statement-0 | SQL: SELECT 1
  415. 09:53:16.153 [restartedMain] INFO com.zaxxer.hikari.pool.HikariPool - DatebookHikariCP - Added connection com.p6spy.engine.wrapper.ConnectionWrapper@21e83685
  416. 09:53:16.163 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Start completed.
  417. 09:53:16.236 [restartedMain] INFO p6spy - 2023-08-25 09:53:16 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT
  418. A.job_id,
  419. A.job_title,
  420. A.job_desc,
  421. A.status,
  422. A.job_type,
  423. A.job_code,
  424. A.job_cron,
  425. A.job_class_id,
  426. B.job_class,
  427. A.cycle_title,
  428. A.cycle_period,
  429. A.cycle_unit
  430. FROM job AS A
  431. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  432. WHERE A.deleted_flag = 0
  433. AND A.status = 1
  434. ORDER BY A.job_id ASC
  435. 09:53:16.256 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  436. 09:53:16.258 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  437. 09:53:16.679 [RMI TCP Connection(7)-192.168.3.5] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
  438. 09:53:16.680 [RMI TCP Connection(7)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
  439. 09:53:16.685 [RMI TCP Connection(7)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 5 ms
  440. 09:53:16.695 [RMI TCP Connection(6)-192.168.3.5] INFO p6spy - 2023-08-25 09:53:16 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  441. 09:53:28.573 [XNIO-1 task-2] INFO p6spy - 2023-08-25 09:53:28 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  442. 09:53:28.583 [XNIO-1 task-2] INFO p6spy - 2023-08-25 09:53:28 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT *
  443. FROM goaf_devinfo
  444. where oc_id = 406283
  445. 09:58:06.690 [XNIO-1 task-2] INFO p6spy - 2023-08-25 09:58:06 | Time Consuming: 5020 ms | Connection: statement-0 | SQL: SELECT 1
  446. 09:58:11.692 [XNIO-1 task-2] INFO p6spy - 2023-08-25 09:58:11 | Time Consuming: 5001 ms | Connection: statement-1 | SQL: SELECT 1
  447. 09:58:16.696 [XNIO-1 task-2] INFO p6spy - 2023-08-25 09:58:16 | Time Consuming: 5003 ms | Connection: statement-2 | SQL: SELECT 1
  448. 09:58:21.701 [XNIO-1 task-2] INFO p6spy - 2023-08-25 09:58:21 | Time Consuming: 5002 ms | Connection: statement-3 | SQL: SELECT 1
  449. 09:58:26.704 [XNIO-1 task-2] INFO p6spy - 2023-08-25 09:58:26 | Time Consuming: 5001 ms | Connection: statement-4 | SQL: SELECT 1
  450. 09:58:26.709 [XNIO-1 task-2] INFO p6spy - 2023-08-25 09:58:26 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT 1
  451. 09:58:34.094 [XNIO-1 task-2] INFO p6spy - 2023-08-25 09:58:34 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT 1
  452. 09:58:34.105 [XNIO-1 task-2] INFO p6spy - 2023-08-25 09:58:34 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT
  453. client_id,
  454. client_title,
  455. client_app_id,
  456. client_app_key,
  457. client_app_secret,
  458. client_desc,
  459. status,
  460. is_fixed
  461. FROM client
  462. WHERE deleted_flag = 0
  463. AND client_app_id = '10001'
  464. AND client_app_key = '82a8bf439373e305'
  465. 09:58:34.120 [XNIO-1 task-2] INFO p6spy - 2023-08-25 09:58:34 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT
  466. A.oc_id,
  467. B.oc_type_id,
  468. B.oc_name,
  469. A.account_id,
  470. A.account_name,
  471. A.account_real_name,
  472. A.password,
  473. A.account_type,
  474. A.account_staff_no,
  475. A.account_phone,
  476. A.account_last_ip,
  477. A.account_loc,
  478. A.status,
  479. A.account_avatar,
  480. A.account_photo,
  481. A.account_real_name,
  482. A.account_intro,
  483. A.wx_id,
  484. A.is_fixed
  485. FROM account AS A
  486. LEFT JOIN oc AS B ON (A.oc_id = B.oc_id )
  487. WHERE A.deleted_flag = 0
  488. AND (A.account_name = 'sxky'
  489. OR A.account_phone = 'sxky'
  490. OR A.account_mail = 'sxky'
  491. OR A.account_staff_no = 'sxky')
  492. 09:58:34.127 [XNIO-1 task-2] INFO p6spy - 2023-08-25 09:58:34 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT
  493. A.oc_id,
  494. A.oc_name,
  495. A.oc_type_id,
  496. A.root_id,
  497. A.parent_id,
  498. A.admin_id,
  499. B.account_name AS admin_name,
  500. A.group_id,
  501. A.node_left,
  502. A.node_right,
  503. A.node_level,
  504. A.is_leaf,
  505. A.status,
  506. A.if_lic
  507. FROM oc AS A
  508. LEFT JOIN account AS B ON (A.oc_id = B.oc_id AND A.admin_id = B.account_id)
  509. WHERE A.oc_id = 406283
  510. 09:58:34.132 [XNIO-1 task-2] INFO p6spy - 2023-08-25 09:58:34 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT
  511. A.rm_id,
  512. A.role_id,
  513. B.role_type_id,
  514. B.role_code,
  515. B.role_name,
  516. A.account_id
  517. FROM s_role_member AS A
  518. LEFT JOIN s_role AS B ON (A.role_id = B.role_id)
  519. WHERE account_id = 406283
  520. LIMIT 1
  521. 09:58:34.137 [XNIO-1 task-2] INFO p6spy - 2023-08-25 09:58:34 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT
  522. A.gm_id,
  523. A.oc_id,
  524. A.group_id,
  525. B.group_name,
  526. B.node_left ,
  527. B.node_right,
  528. A.account_id
  529. FROM s_group_member AS A
  530. LEFT JOIN s_group AS B ON (A.oc_id = B.oc_id AND A.group_id = B.group_id)
  531. WHERE B.deleted_flag = 0
  532. AND A.oc_id = 406283
  533. AND A.account_id = 406283
  534. LIMIT 1
  535. 09:58:34.143 [XNIO-1 task-2] INFO p6spy - 2023-08-25 09:58:34 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT
  536. A.gmp_id,
  537. A.oc_id,
  538. A.group_id,
  539. B.group_name,
  540. A.account_id,
  541. D.account_name,
  542. D.account_real_name,
  543. A.position_id,
  544. C.position_name
  545. FROM s_group_member_position A
  546. LEFT JOIN s_group B ON (A.oc_id = B.oc_id AND A.group_id = B.group_id)
  547. LEFT JOIN s_position C ON (A.oc_id = C.oc_id AND A.position_id = C.position_id)
  548. LEFT JOIN account D ON (A.oc_id = D.oc_id AND A.account_id = D.account_id)
  549. WHERE A.deleted_flag = 0
  550. AND A.oc_id = 406283
  551. AND A.group_id = 406283
  552. AND A.account_id = 406283
  553. LIMIT 1
  554. 09:58:34.152 [XNIO-1 task-2] INFO p6spy - 2023-08-25 09:58:34 | Time Consuming: 7 ms | Connection: statement-5 | SQL: SELECT
  555. A.gmpg_id,
  556. A.oc_id,
  557. A.group_id,
  558. A.account_id,
  559. A.position_id,
  560. A.grant_group_id,
  561. B.group_name AS grant_group_name
  562. FROM s_group_member_position_grant A
  563. LEFT JOIN s_group B ON(A.oc_id = B.oc_id AND A.grant_group_id = B.group_id)
  564. WHERE A.deleted_flag = 0
  565. AND A.oc_id = 406283
  566. AND A.group_id = 406283
  567. AND A.account_id = 406283
  568. AND A.position_id = 406283
  569. LIMIT 1
  570. 09:58:34.205 [XNIO-1 task-3] INFO p6spy - 2023-08-25 09:58:34 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT
  571. client_id,
  572. client_title,
  573. client_app_id,
  574. client_app_key,
  575. client_app_secret,
  576. client_desc,
  577. status,
  578. is_fixed
  579. FROM client
  580. WHERE deleted_flag = 0
  581. AND client_app_id = '10001'
  582. AND client_app_key = '82a8bf439373e305'
  583. 09:58:34.221 [XNIO-1 task-3] INFO p6spy - 2023-08-25 09:58:34 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT
  584. A.client_id,
  585. A.role_id,
  586. A.permit_id,
  587. A.permit_title,
  588. A.permit_code,
  589. A.permit_entry,
  590. A.permit_desc,
  591. A.permit_type,
  592. A.parent_id,
  593. A.root_id,
  594. A.sort_no,
  595. A.is_home
  596. FROM s_role_permit AS A
  597. WHERE 1 = 1
  598. AND A.client_id = 2
  599. AND A.role_id = 6
  600. ORDER BY A.parent_id ASC ,A.sort_no ASC
  601. 09:58:34.469 [XNIO-1 task-3] INFO p6spy - 2023-08-25 09:58:34 | Time Consuming: 32 ms | Connection: statement-5 | SQL: SELECT count(*)
  602. FROM msg AS M
  603. WHERE M.oc_id = 406283
  604. AND (
  605. EXISTS (
  606. SELECT 1 FROM msg_to TT
  607. WHERE M.oc_id = TT.oc_id AND M.msg_id = TT.msg_id AND TT.msg_to_id = 406283 AND TT.status=0
  608. ) OR
  609. EXISTS (
  610. SELECT 1 FROM msg_cc CC
  611. WHERE M.oc_id = CC.oc_id AND M.msg_id = CC.msg_id AND CC.msg_cc_id = 406283 AND CC.status=0
  612. )
  613. )
  614. 09:58:34.932 [XNIO-1 task-3] INFO p6spy - 2023-08-25 09:58:34 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT count(0) FROM goaf_sensor WHERE oc_id = 406283
  615. 09:58:34.938 [XNIO-1 task-3] INFO p6spy - 2023-08-25 09:58:34 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT *
  616. FROM goaf_sensor
  617. where oc_id = 406283
  618. LIMIT 10
  619. 10:06:30.895 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:06:30 | Time Consuming: 5002 ms | Connection: statement-6 | SQL: SELECT 1
  620. 10:06:35.898 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:06:35 | Time Consuming: 5002 ms | Connection: statement-10 | SQL: SELECT 1
  621. 10:06:35.902 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:06:35 | Time Consuming: 3 ms | Connection: statement-11 | SQL: SELECT 1
  622. 10:06:35.913 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:06:35 | Time Consuming: 6 ms | Connection: statement-11 | SQL: SELECT
  623. client_id,
  624. client_title,
  625. client_app_id,
  626. client_app_key,
  627. client_app_secret,
  628. client_desc,
  629. status,
  630. is_fixed
  631. FROM client
  632. WHERE deleted_flag = 0
  633. AND client_app_id = '10001'
  634. AND client_app_key = '82a8bf439373e305'
  635. 10:06:35.932 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:06:35 | Time Consuming: 4 ms | Connection: statement-11 | SQL: SELECT
  636. A.oc_id,
  637. B.oc_type_id,
  638. B.oc_name,
  639. A.account_id,
  640. A.account_name,
  641. A.account_real_name,
  642. A.password,
  643. A.account_type,
  644. A.account_staff_no,
  645. A.account_phone,
  646. A.account_last_ip,
  647. A.account_loc,
  648. A.status,
  649. A.account_avatar,
  650. A.account_photo,
  651. A.account_real_name,
  652. A.account_intro,
  653. A.wx_id,
  654. A.is_fixed
  655. FROM account AS A
  656. LEFT JOIN oc AS B ON (A.oc_id = B.oc_id )
  657. WHERE A.deleted_flag = 0
  658. AND (A.account_name = 'sxky'
  659. OR A.account_phone = 'sxky'
  660. OR A.account_mail = 'sxky'
  661. OR A.account_staff_no = 'sxky')
  662. 10:06:35.937 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:06:35 | Time Consuming: 3 ms | Connection: statement-11 | SQL: SELECT
  663. A.oc_id,
  664. A.oc_name,
  665. A.oc_type_id,
  666. A.root_id,
  667. A.parent_id,
  668. A.admin_id,
  669. B.account_name AS admin_name,
  670. A.group_id,
  671. A.node_left,
  672. A.node_right,
  673. A.node_level,
  674. A.is_leaf,
  675. A.status,
  676. A.if_lic
  677. FROM oc AS A
  678. LEFT JOIN account AS B ON (A.oc_id = B.oc_id AND A.admin_id = B.account_id)
  679. WHERE A.oc_id = 406283
  680. 10:06:35.942 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:06:35 | Time Consuming: 4 ms | Connection: statement-11 | SQL: SELECT
  681. A.rm_id,
  682. A.role_id,
  683. B.role_type_id,
  684. B.role_code,
  685. B.role_name,
  686. A.account_id
  687. FROM s_role_member AS A
  688. LEFT JOIN s_role AS B ON (A.role_id = B.role_id)
  689. WHERE account_id = 406283
  690. LIMIT 1
  691. 10:06:35.950 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:06:35 | Time Consuming: 6 ms | Connection: statement-11 | SQL: SELECT
  692. A.gm_id,
  693. A.oc_id,
  694. A.group_id,
  695. B.group_name,
  696. B.node_left ,
  697. B.node_right,
  698. A.account_id
  699. FROM s_group_member AS A
  700. LEFT JOIN s_group AS B ON (A.oc_id = B.oc_id AND A.group_id = B.group_id)
  701. WHERE B.deleted_flag = 0
  702. AND A.oc_id = 406283
  703. AND A.account_id = 406283
  704. LIMIT 1
  705. 10:06:35.954 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:06:35 | Time Consuming: 3 ms | Connection: statement-11 | SQL: SELECT
  706. A.gmp_id,
  707. A.oc_id,
  708. A.group_id,
  709. B.group_name,
  710. A.account_id,
  711. D.account_name,
  712. D.account_real_name,
  713. A.position_id,
  714. C.position_name
  715. FROM s_group_member_position A
  716. LEFT JOIN s_group B ON (A.oc_id = B.oc_id AND A.group_id = B.group_id)
  717. LEFT JOIN s_position C ON (A.oc_id = C.oc_id AND A.position_id = C.position_id)
  718. LEFT JOIN account D ON (A.oc_id = D.oc_id AND A.account_id = D.account_id)
  719. WHERE A.deleted_flag = 0
  720. AND A.oc_id = 406283
  721. AND A.group_id = 406283
  722. AND A.account_id = 406283
  723. LIMIT 1
  724. 10:06:35.959 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:06:35 | Time Consuming: 3 ms | Connection: statement-11 | SQL: SELECT
  725. A.gmpg_id,
  726. A.oc_id,
  727. A.group_id,
  728. A.account_id,
  729. A.position_id,
  730. A.grant_group_id,
  731. B.group_name AS grant_group_name
  732. FROM s_group_member_position_grant A
  733. LEFT JOIN s_group B ON(A.oc_id = B.oc_id AND A.grant_group_id = B.group_id)
  734. WHERE A.deleted_flag = 0
  735. AND A.oc_id = 406283
  736. AND A.group_id = 406283
  737. AND A.account_id = 406283
  738. AND A.position_id = 406283
  739. LIMIT 1
  740. 10:11:44.963 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:11:44 | Time Consuming: 5001 ms | Connection: statement-11 | SQL: SELECT 1
  741. 10:11:49.966 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:11:49 | Time Consuming: 5001 ms | Connection: statement-12 | SQL: SELECT 1
  742. 10:11:54.968 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:11:54 | Time Consuming: 5001 ms | Connection: statement-13 | SQL: SELECT 1
  743. 10:11:59.969 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:11:59 | Time Consuming: 5001 ms | Connection: statement-14 | SQL: SELECT 1
  744. 10:12:04.298 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:12:04 | Time Consuming: 3 ms | Connection: statement-17 | SQL: SELECT 1
  745. 10:12:04.307 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:12:04 | Time Consuming: 3 ms | Connection: statement-17 | SQL: SELECT *
  746. FROM goaf_devinfo
  747. where oc_id = 406283
  748. 10:12:04.972 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:12:04 | Time Consuming: 5002 ms | Connection: statement-15 | SQL: SELECT 1
  749. 10:12:04.979 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:12:04 | Time Consuming: 5 ms | Connection: statement-17 | SQL: SELECT 1
  750. 10:12:04.988 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:12:04 | Time Consuming: 3 ms | Connection: statement-17 | SQL: SELECT *
  751. FROM goaf_devinfo
  752. where oc_id = 406283
  753. 10:12:22.614 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:12:22 | Time Consuming: 4 ms | Connection: statement-17 | SQL: SELECT 1
  754. 10:12:22.624 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:12:22 | Time Consuming: 4 ms | Connection: statement-17 | SQL: SELECT *
  755. FROM goaf_devinfo
  756. where oc_id = 406283
  757. 10:17:09.476 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  758. 10:17:09.478 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.4.Final
  759. 10:17:09.480 [SpringApplicationShutdownHook] INFO io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
  760. 10:17:09.482 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - Removing {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  761. 10:17:09.482 [SpringApplicationShutdownHook] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 0 subscriber(s).
  762. 10:17:09.482 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - stopped bean '_org.springframework.integration.errorLogger'
  763. 10:17:09.490 [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)
  764. 10:17:09.491 [SpringApplicationShutdownHook] INFO o.s.s.quartz.SchedulerFactoryBean - Shutting down Quartz Scheduler
  765. 10:17:09.491 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
  766. 10:17:09.491 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  767. 10:17:09.491 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
  768. 10:17:09.526 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown initiated...
  769. 10:17:09.529 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown completed.
  770. 10:17:14.215 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.0.Final
  771. 10:17:14.264 [restartedMain] INFO com.zhyc.xps.XPSApplication - Starting XPSApplication using Java 17.0.6 with PID 14236 (E:\zhycnewprj\iotplatform\xps-server-3\xps-application\target\classes started by qzz19 in E:\zhycnewprj\iotplatform\xps-server-3)
  772. 10:17:14.264 [restartedMain] INFO com.zhyc.xps.XPSApplication - The following 1 profile is active: "local"
  773. 10:17:14.318 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
  774. 10:17:14.318 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
  775. 10:17:16.097 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
  776. 10:17:16.100 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  777. 10:17:16.189 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 75 ms. Found 0 Redis repository interfaces.
  778. 10:17:16.360 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created.
  779. 10:17:16.376 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created.
  780. 10:17:17.113 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  781. 10:17:17.113 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 2795 ms
  782. 10:17:19.447 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor
  783. 10:17:19.457 [restartedMain] INFO o.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  784. 10:17:19.457 [restartedMain] INFO org.quartz.core.QuartzScheduler - Quartz Scheduler v.2.3.2 created.
  785. 10:17:19.458 [restartedMain] INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized.
  786. 10:17:19.458 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
  787. Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  788. NOT STARTED.
  789. Currently in standby mode.
  790. Number of jobs executed: 0
  791. Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  792. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
  793. 10:17:19.459 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  794. 10:17:19.459 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2
  795. 10:17:19.459 [restartedMain] INFO org.quartz.core.QuartzScheduler - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@2bddd33c
  796. 10:17:21.137 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer - LiveReload server is running on port 35729
  797. 10:17:21.143 [restartedMain] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 15 endpoint(s) beneath base path '/actuator/z'
  798. 10:17:21.287 [restartedMain] INFO io.undertow.websockets.jsr - UT026003: Adding annotated server endpoint class com.zhyc.xps.common.ws.WebSocketServer for path /websocket/link
  799. 10:17:21.316 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  800. 10:17:21.317 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 1 subscriber(s).
  801. 10:17:21.317 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - started bean '_org.springframework.integration.errorLogger'
  802. 10:17:21.337 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  803. 10:17:21.346 [restartedMain] INFO org.xnio - XNIO version 3.8.8.Final
  804. 10:17:21.355 [restartedMain] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.8.Final
  805. 10:17:21.385 [restartedMain] INFO org.jboss.threads - JBoss Threads version 3.5.0.Final
  806. 10:17:21.436 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 1788 (http)
  807. 10:17:21.438 [restartedMain] INFO o.s.s.quartz.SchedulerFactoryBean - Starting Quartz Scheduler now
  808. 10:17:21.438 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  809. 10:17:21.463 [restartedMain] INFO com.zhyc.xps.XPSApplication - Started XPSApplication in 7.733 seconds (process running for 8.578)
  810. 10:17:21.466 [restartedMain] INFO com.zhyc.xps.sys.job.InitSystemJob - 初始化系统定时任务
  811. 10:17:21.473 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Starting...
  812. 10:17:21.804 [restartedMain] INFO p6spy - 2023-08-25 10:17:21 | Time Consuming: 13 ms | Connection: statement-0 | SQL: SELECT 1
  813. 10:17:21.810 [restartedMain] INFO com.zaxxer.hikari.pool.HikariPool - DatebookHikariCP - Added connection com.p6spy.engine.wrapper.ConnectionWrapper@74389453
  814. 10:17:21.820 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Start completed.
  815. 10:17:21.885 [restartedMain] INFO p6spy - 2023-08-25 10:17:21 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT
  816. A.job_id,
  817. A.job_title,
  818. A.job_desc,
  819. A.status,
  820. A.job_type,
  821. A.job_code,
  822. A.job_cron,
  823. A.job_class_id,
  824. B.job_class,
  825. A.cycle_title,
  826. A.cycle_period,
  827. A.cycle_unit
  828. FROM job AS A
  829. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  830. WHERE A.deleted_flag = 0
  831. AND A.status = 1
  832. ORDER BY A.job_id ASC
  833. 10:17:21.904 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  834. 10:17:21.906 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  835. 10:17:22.351 [RMI TCP Connection(4)-192.168.3.5] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
  836. 10:17:22.351 [RMI TCP Connection(4)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
  837. 10:17:22.355 [RMI TCP Connection(4)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 4 ms
  838. 10:17:22.372 [RMI TCP Connection(5)-192.168.3.5] INFO p6spy - 2023-08-25 10:17:22 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  839. 10:17:31.713 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:17:31 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  840. 10:17:31.722 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:17:31 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT *
  841. FROM goaf_devinfo
  842. where oc_id = 406283
  843. 10:17:40.500 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:17:40 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  844. 10:17:40.508 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:17:40 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT *
  845. FROM goaf_devinfo
  846. where oc_id = 406283
  847. 10:18:24.700 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  848. 10:18:24.701 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.4.Final
  849. 10:18:24.703 [SpringApplicationShutdownHook] INFO io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
  850. 10:18:24.706 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - Removing {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  851. 10:18:24.706 [SpringApplicationShutdownHook] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 0 subscriber(s).
  852. 10:18:24.707 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - stopped bean '_org.springframework.integration.errorLogger'
  853. 10:18:24.834 [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)
  854. 10:18:24.836 [SpringApplicationShutdownHook] INFO o.s.s.quartz.SchedulerFactoryBean - Shutting down Quartz Scheduler
  855. 10:18:24.836 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
  856. 10:18:24.836 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  857. 10:18:24.836 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
  858. 10:18:24.850 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown initiated...
  859. 10:18:24.856 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown completed.
  860. 10:20:57.531 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.0.Final
  861. 10:20:57.579 [restartedMain] INFO com.zhyc.xps.XPSApplication - Starting XPSApplication using Java 17.0.6 with PID 2308 (E:\zhycnewprj\iotplatform\xps-server-3\xps-application\target\classes started by qzz19 in E:\zhycnewprj\iotplatform\xps-server-3)
  862. 10:20:57.580 [restartedMain] INFO com.zhyc.xps.XPSApplication - The following 1 profile is active: "local"
  863. 10:20:57.632 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
  864. 10:20:57.632 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
  865. 10:20:59.396 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
  866. 10:20:59.399 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  867. 10:20:59.490 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 79 ms. Found 0 Redis repository interfaces.
  868. 10:20:59.658 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created.
  869. 10:20:59.675 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created.
  870. 10:21:00.409 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  871. 10:21:00.409 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 2776 ms
  872. 10:21:02.814 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor
  873. 10:21:02.824 [restartedMain] INFO o.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  874. 10:21:02.825 [restartedMain] INFO org.quartz.core.QuartzScheduler - Quartz Scheduler v.2.3.2 created.
  875. 10:21:02.825 [restartedMain] INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized.
  876. 10:21:02.826 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
  877. Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  878. NOT STARTED.
  879. Currently in standby mode.
  880. Number of jobs executed: 0
  881. Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  882. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
  883. 10:21:02.826 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  884. 10:21:02.826 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2
  885. 10:21:02.826 [restartedMain] INFO org.quartz.core.QuartzScheduler - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@1339a395
  886. 10:21:04.513 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer - LiveReload server is running on port 35729
  887. 10:21:04.519 [restartedMain] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 15 endpoint(s) beneath base path '/actuator/z'
  888. 10:21:04.660 [restartedMain] INFO io.undertow.websockets.jsr - UT026003: Adding annotated server endpoint class com.zhyc.xps.common.ws.WebSocketServer for path /websocket/link
  889. 10:21:04.689 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  890. 10:21:04.689 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 1 subscriber(s).
  891. 10:21:04.690 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - started bean '_org.springframework.integration.errorLogger'
  892. 10:21:04.709 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  893. 10:21:04.718 [restartedMain] INFO org.xnio - XNIO version 3.8.8.Final
  894. 10:21:04.728 [restartedMain] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.8.Final
  895. 10:21:04.757 [restartedMain] INFO org.jboss.threads - JBoss Threads version 3.5.0.Final
  896. 10:21:04.806 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 1788 (http)
  897. 10:21:04.808 [restartedMain] INFO o.s.s.quartz.SchedulerFactoryBean - Starting Quartz Scheduler now
  898. 10:21:04.808 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  899. 10:21:04.835 [restartedMain] INFO com.zhyc.xps.XPSApplication - Started XPSApplication in 7.779 seconds (process running for 8.49)
  900. 10:21:04.838 [restartedMain] INFO com.zhyc.xps.sys.job.InitSystemJob - 初始化系统定时任务
  901. 10:21:04.845 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Starting...
  902. 10:21:05.163 [restartedMain] INFO p6spy - 2023-08-25 10:21:05 | Time Consuming: 12 ms | Connection: statement-0 | SQL: SELECT 1
  903. 10:21:05.167 [restartedMain] INFO com.zaxxer.hikari.pool.HikariPool - DatebookHikariCP - Added connection com.p6spy.engine.wrapper.ConnectionWrapper@7a17d297
  904. 10:21:05.177 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Start completed.
  905. 10:21:05.249 [restartedMain] INFO p6spy - 2023-08-25 10:21:05 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT
  906. A.job_id,
  907. A.job_title,
  908. A.job_desc,
  909. A.status,
  910. A.job_type,
  911. A.job_code,
  912. A.job_cron,
  913. A.job_class_id,
  914. B.job_class,
  915. A.cycle_title,
  916. A.cycle_period,
  917. A.cycle_unit
  918. FROM job AS A
  919. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  920. WHERE A.deleted_flag = 0
  921. AND A.status = 1
  922. ORDER BY A.job_id ASC
  923. 10:21:05.270 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  924. 10:21:05.272 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  925. 10:21:05.654 [RMI TCP Connection(1)-192.168.3.5] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
  926. 10:21:05.655 [RMI TCP Connection(1)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
  927. 10:21:05.659 [RMI TCP Connection(1)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 4 ms
  928. 10:21:05.678 [RMI TCP Connection(3)-192.168.3.5] INFO p6spy - 2023-08-25 10:21:05 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  929. 10:21:13.821 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:21:13 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  930. 10:21:13.830 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:21:13 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT *
  931. FROM goaf_devinfo
  932. where oc_id = 406283
  933. 10:21:13.845 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:21:13 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT *
  934. FROM goaf_sensor
  935. where oc_id = 406283
  936. AND goaf_dev_name = '空压机01'
  937. 10:21:13.850 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:21:13 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT *
  938. FROM goaf_sensor
  939. where oc_id = 406283
  940. AND goaf_dev_name = '12'
  941. 10:28:52.130 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:28:52 | Time Consuming: 5009 ms | Connection: statement-0 | SQL: SELECT 1
  942. 10:28:52.171 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:28:52 | Time Consuming: 5001 ms | Connection: statement-1 | SQL: SELECT 1
  943. 10:28:57.132 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:28:57 | Time Consuming: 5001 ms | Connection: statement-2 | SQL: SELECT 1
  944. 10:28:57.173 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:28:57 | Time Consuming: 5000 ms | Connection: statement-3 | SQL: SELECT 1
  945. 10:28:57.177 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:28:57 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT 1
  946. 10:28:57.181 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:28:57 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT count(0) FROM goaf_sensor WHERE oc_id = 406283
  947. 10:28:57.188 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:28:57 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT *
  948. FROM goaf_sensor
  949. where oc_id = 406283
  950. LIMIT 10
  951. 10:28:59.952 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:28:59 | Time Consuming: 5 ms | Connection: statement-5 | SQL: SELECT 1
  952. 10:28:59.962 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:28:59 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT *
  953. FROM goaf_devinfo
  954. where oc_id = 406283
  955. 10:28:59.975 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:28:59 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT *
  956. FROM goaf_sensor
  957. where oc_id = 406283
  958. AND goaf_dev_name = 'other'
  959. 10:28:59.997 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:28:59 | Time Consuming: 15 ms | Connection: statement-5 | SQL: SELECT *
  960. FROM goaf_sensordata
  961. WHERE oc_id = 406283
  962. AND goaf_sensor_id = 442129
  963. ORDER BY goaf_datareport_time DESC
  964. LIMIT 1
  965. 10:29:00.012 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:29:00 | Time Consuming: 5 ms | Connection: statement-5 | SQL: SELECT *
  966. FROM goaf_sensor
  967. where oc_id = 406283
  968. AND goaf_dev_name = 'waterpump'
  969. 10:29:00.022 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:29:00 | Time Consuming: 5 ms | Connection: statement-5 | SQL: SELECT *
  970. FROM goaf_sensordata
  971. WHERE oc_id = 406283
  972. AND goaf_sensor_id = 442136
  973. ORDER BY goaf_datareport_time DESC
  974. LIMIT 1
  975. 10:29:00.033 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:29:00 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT *
  976. FROM goaf_sensor
  977. where oc_id = 406283
  978. AND goaf_dev_name = 'machinery'
  979. 10:29:00.042 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:29:00 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT *
  980. FROM goaf_sensordata
  981. WHERE oc_id = 406283
  982. AND goaf_sensor_id = 442137
  983. ORDER BY goaf_datareport_time DESC
  984. LIMIT 1
  985. 10:29:00.055 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:29:00 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT *
  986. FROM goaf_sensor
  987. where oc_id = 406283
  988. AND goaf_dev_name = 'compress'
  989. 10:29:00.063 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:29:00 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT *
  990. FROM goaf_sensordata
  991. WHERE oc_id = 406283
  992. AND goaf_sensor_id = 442135
  993. ORDER BY goaf_datareport_time DESC
  994. LIMIT 1
  995. 10:29:00.079 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:29:00 | Time Consuming: 5 ms | Connection: statement-5 | SQL: SELECT *
  996. FROM goaf_sensordata
  997. WHERE oc_id = 406283
  998. AND goaf_sensor_id = 442139
  999. ORDER BY goaf_datareport_time DESC
  1000. LIMIT 1
  1001. 10:29:02.135 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:29:02 | Time Consuming: 5002 ms | Connection: statement-4 | SQL: SELECT 1
  1002. 10:29:02.140 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:29:02 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT 1
  1003. 10:29:02.145 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:29:02 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT
  1004. COUNT(*) AS 'goafSensorTotalNum',
  1005. IFNULL(SUM( CASE WHEN goaf_sensor_status = 1 THEN 1 ELSE 0 END ), 0) AS 'sensorOnlineNum'
  1006. FROM goaf_sensor
  1007. WHERE oc_id = 406283
  1008. 10:29:02.487 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:29:02 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT count(0) FROM goaf_sensor WHERE oc_id = 406283
  1009. 10:29:02.491 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:29:02 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT *
  1010. FROM goaf_sensor
  1011. where oc_id = 406283
  1012. LIMIT 10
  1013. 10:29:02.493 [XNIO-1 task-4] INFO p6spy - 2023-08-25 10:29:02 | Time Consuming: 3 ms | Connection: statement-6 | SQL: SELECT 1
  1014. 10:29:02.501 [XNIO-1 task-4] INFO p6spy - 2023-08-25 10:29:02 | Time Consuming: 3 ms | Connection: statement-6 | SQL: SELECT *
  1015. FROM goaf_syscfg
  1016. WHERE oc_id = 406283
  1017. 10:29:39.355 [XNIO-1 task-4] INFO p6spy - 2023-08-25 10:29:39 | Time Consuming: 4 ms | Connection: statement-6 | SQL: SELECT 1
  1018. 10:29:39.360 [XNIO-1 task-4] INFO p6spy - 2023-08-25 10:29:39 | Time Consuming: 4 ms | Connection: statement-6 | SQL: SELECT count(0) FROM goaf_sensor WHERE oc_id = 406283
  1019. 10:29:39.365 [XNIO-1 task-4] INFO p6spy - 2023-08-25 10:29:39 | Time Consuming: 4 ms | Connection: statement-6 | SQL: SELECT *
  1020. FROM goaf_sensor
  1021. where oc_id = 406283
  1022. LIMIT 10
  1023. 10:29:42.114 [XNIO-1 task-4] INFO p6spy - 2023-08-25 10:29:42 | Time Consuming: 3 ms | Connection: statement-6 | SQL: SELECT 1
  1024. 10:29:42.123 [XNIO-1 task-4] INFO p6spy - 2023-08-25 10:29:42 | Time Consuming: 3 ms | Connection: statement-6 | SQL: SELECT *
  1025. FROM goaf_syscfg
  1026. WHERE oc_id = 406283
  1027. 10:29:42.124 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:29:42 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT 1
  1028. 10:29:42.126 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:29:42 | Time Consuming: 4 ms | Connection: statement-7 | SQL: SELECT 1
  1029. 10:29:42.133 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:29:42 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT count(0) FROM goaf_devinfo WHERE oc_id = 406283
  1030. 10:29:42.134 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:29:42 | Time Consuming: 3 ms | Connection: statement-7 | SQL: SELECT *
  1031. FROM goaf_baseinfo
  1032. WHERE oc_id = 406283
  1033. 10:29:42.137 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:29:42 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT *
  1034. FROM goaf_devinfo
  1035. where oc_id = 406283
  1036. LIMIT 10
  1037. 10:31:42.573 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  1038. 10:31:42.575 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.4.Final
  1039. 10:31:42.577 [SpringApplicationShutdownHook] INFO io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
  1040. 10:31:42.579 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - Removing {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  1041. 10:31:42.579 [SpringApplicationShutdownHook] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 0 subscriber(s).
  1042. 10:31:42.579 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - stopped bean '_org.springframework.integration.errorLogger'
  1043. 10:31:42.587 [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)
  1044. 10:31:42.590 [SpringApplicationShutdownHook] INFO o.s.s.quartz.SchedulerFactoryBean - Shutting down Quartz Scheduler
  1045. 10:31:42.590 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
  1046. 10:31:42.590 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  1047. 10:31:42.590 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
  1048. 10:31:42.610 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown initiated...
  1049. 10:31:42.613 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown completed.
  1050. 10:31:47.323 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.0.Final
  1051. 10:31:47.371 [restartedMain] INFO com.zhyc.xps.XPSApplication - Starting XPSApplication using Java 17.0.6 with PID 11332 (E:\zhycnewprj\iotplatform\xps-server-3\xps-application\target\classes started by qzz19 in E:\zhycnewprj\iotplatform\xps-server-3)
  1052. 10:31:47.372 [restartedMain] INFO com.zhyc.xps.XPSApplication - The following 1 profile is active: "local"
  1053. 10:31:47.427 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
  1054. 10:31:47.427 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
  1055. 10:31:49.214 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
  1056. 10:31:49.217 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  1057. 10:31:49.305 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 75 ms. Found 0 Redis repository interfaces.
  1058. 10:31:49.472 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created.
  1059. 10:31:49.489 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created.
  1060. 10:31:50.277 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  1061. 10:31:50.277 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 2850 ms
  1062. 10:31:52.656 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor
  1063. 10:31:52.666 [restartedMain] INFO o.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  1064. 10:31:52.666 [restartedMain] INFO org.quartz.core.QuartzScheduler - Quartz Scheduler v.2.3.2 created.
  1065. 10:31:52.667 [restartedMain] INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized.
  1066. 10:31:52.667 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
  1067. Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  1068. NOT STARTED.
  1069. Currently in standby mode.
  1070. Number of jobs executed: 0
  1071. Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  1072. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
  1073. 10:31:52.667 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  1074. 10:31:52.667 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2
  1075. 10:31:52.667 [restartedMain] INFO org.quartz.core.QuartzScheduler - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@3bb1cb0e
  1076. 10:31:54.354 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer - LiveReload server is running on port 35729
  1077. 10:31:54.360 [restartedMain] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 15 endpoint(s) beneath base path '/actuator/z'
  1078. 10:31:54.503 [restartedMain] INFO io.undertow.websockets.jsr - UT026003: Adding annotated server endpoint class com.zhyc.xps.common.ws.WebSocketServer for path /websocket/link
  1079. 10:31:54.533 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  1080. 10:31:54.534 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 1 subscriber(s).
  1081. 10:31:54.534 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - started bean '_org.springframework.integration.errorLogger'
  1082. 10:31:54.554 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  1083. 10:31:54.563 [restartedMain] INFO org.xnio - XNIO version 3.8.8.Final
  1084. 10:31:54.572 [restartedMain] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.8.Final
  1085. 10:31:54.602 [restartedMain] INFO org.jboss.threads - JBoss Threads version 3.5.0.Final
  1086. 10:31:54.652 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 1788 (http)
  1087. 10:31:54.654 [restartedMain] INFO o.s.s.quartz.SchedulerFactoryBean - Starting Quartz Scheduler now
  1088. 10:31:54.654 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  1089. 10:31:54.679 [restartedMain] INFO com.zhyc.xps.XPSApplication - Started XPSApplication in 7.848 seconds (process running for 8.662)
  1090. 10:31:54.681 [restartedMain] INFO com.zhyc.xps.sys.job.InitSystemJob - 初始化系统定时任务
  1091. 10:31:54.689 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Starting...
  1092. 10:31:55.050 [restartedMain] INFO p6spy - 2023-08-25 10:31:55 | Time Consuming: 13 ms | Connection: statement-0 | SQL: SELECT 1
  1093. 10:31:55.054 [restartedMain] INFO com.zaxxer.hikari.pool.HikariPool - DatebookHikariCP - Added connection com.p6spy.engine.wrapper.ConnectionWrapper@46c52dbd
  1094. 10:31:55.057 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Start completed.
  1095. 10:31:55.122 [restartedMain] INFO p6spy - 2023-08-25 10:31:55 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT
  1096. A.job_id,
  1097. A.job_title,
  1098. A.job_desc,
  1099. A.status,
  1100. A.job_type,
  1101. A.job_code,
  1102. A.job_cron,
  1103. A.job_class_id,
  1104. B.job_class,
  1105. A.cycle_title,
  1106. A.cycle_period,
  1107. A.cycle_unit
  1108. FROM job AS A
  1109. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  1110. WHERE A.deleted_flag = 0
  1111. AND A.status = 1
  1112. ORDER BY A.job_id ASC
  1113. 10:31:55.144 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  1114. 10:31:55.146 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  1115. 10:31:55.467 [RMI TCP Connection(7)-192.168.3.5] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
  1116. 10:31:55.468 [RMI TCP Connection(7)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
  1117. 10:31:55.472 [RMI TCP Connection(7)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 4 ms
  1118. 10:31:55.496 [RMI TCP Connection(6)-192.168.3.5] INFO p6spy - 2023-08-25 10:31:55 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  1119. 10:31:59.203 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:31:59 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  1120. 10:31:59.211 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:31:59 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT *
  1121. FROM goaf_devinfo
  1122. where oc_id = 406283
  1123. 10:31:59.227 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:31:59 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT *
  1124. FROM goaf_sensor
  1125. where oc_id = 406283
  1126. AND goaf_dev_name = 'other'
  1127. 10:31:59.232 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:31:59 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  1128. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  1129. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  1130. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  1131. f_alarm_temperature, goaf_datareport_time
  1132. FROM goaf_sensordata
  1133. WHERE oc_id = 406283
  1134. AND goaf_sensor_id = 442129
  1135. ORDER BY goaf_datareport_time DESC
  1136. LIMIT 1
  1137. 10:31:59.237 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:31:59 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT *
  1138. FROM goaf_sensor
  1139. where oc_id = 406283
  1140. AND goaf_dev_name = 'waterpump'
  1141. 10:31:59.242 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:31:59 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  1142. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  1143. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  1144. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  1145. f_alarm_temperature, goaf_datareport_time
  1146. FROM goaf_sensordata
  1147. WHERE oc_id = 406283
  1148. AND goaf_sensor_id = 442136
  1149. ORDER BY goaf_datareport_time DESC
  1150. LIMIT 1
  1151. 10:31:59.254 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:31:59 | Time Consuming: 10 ms | Connection: statement-0 | SQL: SELECT *
  1152. FROM goaf_sensor
  1153. where oc_id = 406283
  1154. AND goaf_dev_name = 'machinery'
  1155. 10:31:59.260 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:31:59 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  1156. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  1157. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  1158. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  1159. f_alarm_temperature, goaf_datareport_time
  1160. FROM goaf_sensordata
  1161. WHERE oc_id = 406283
  1162. AND goaf_sensor_id = 442137
  1163. ORDER BY goaf_datareport_time DESC
  1164. LIMIT 1
  1165. 10:31:59.264 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:31:59 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT *
  1166. FROM goaf_sensor
  1167. where oc_id = 406283
  1168. AND goaf_dev_name = 'compress'
  1169. 10:31:59.269 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:31:59 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  1170. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  1171. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  1172. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  1173. f_alarm_temperature, goaf_datareport_time
  1174. FROM goaf_sensordata
  1175. WHERE oc_id = 406283
  1176. AND goaf_sensor_id = 442135
  1177. ORDER BY goaf_datareport_time DESC
  1178. LIMIT 1
  1179. 10:31:59.274 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:31:59 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  1180. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  1181. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  1182. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  1183. f_alarm_temperature, goaf_datareport_time
  1184. FROM goaf_sensordata
  1185. WHERE oc_id = 406283
  1186. AND goaf_sensor_id = 442139
  1187. ORDER BY goaf_datareport_time DESC
  1188. LIMIT 1
  1189. 10:32:20.569 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:32:20 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  1190. 10:32:20.577 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:32:20 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT *
  1191. FROM goaf_devinfo
  1192. where oc_id = 406283
  1193. 10:32:20.591 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:32:20 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT *
  1194. FROM goaf_sensor
  1195. where oc_id = 406283
  1196. AND goaf_dev_name = 'other'
  1197. 10:32:20.600 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:32:20 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  1198. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  1199. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  1200. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  1201. f_alarm_temperature, goaf_datareport_time
  1202. FROM goaf_sensordata
  1203. WHERE oc_id = 406283
  1204. AND goaf_sensor_id = 442129
  1205. ORDER BY goaf_datareport_time DESC
  1206. LIMIT 1
  1207. 10:32:20.604 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:32:20 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT *
  1208. FROM goaf_sensor
  1209. where oc_id = 406283
  1210. AND goaf_dev_name = 'waterpump'
  1211. 10:32:20.609 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:32:20 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  1212. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  1213. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  1214. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  1215. f_alarm_temperature, goaf_datareport_time
  1216. FROM goaf_sensordata
  1217. WHERE oc_id = 406283
  1218. AND goaf_sensor_id = 442136
  1219. ORDER BY goaf_datareport_time DESC
  1220. LIMIT 1
  1221. 10:32:20.613 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:32:20 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT *
  1222. FROM goaf_sensor
  1223. where oc_id = 406283
  1224. AND goaf_dev_name = 'machinery'
  1225. 10:32:20.622 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:32:20 | Time Consuming: 7 ms | Connection: statement-0 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  1226. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  1227. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  1228. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  1229. f_alarm_temperature, goaf_datareport_time
  1230. FROM goaf_sensordata
  1231. WHERE oc_id = 406283
  1232. AND goaf_sensor_id = 442137
  1233. ORDER BY goaf_datareport_time DESC
  1234. LIMIT 1
  1235. 10:32:20.626 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:32:20 | Time Consuming: 2 ms | Connection: statement-0 | SQL: SELECT *
  1236. FROM goaf_sensor
  1237. where oc_id = 406283
  1238. AND goaf_dev_name = 'compress'
  1239. 10:32:20.630 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:32:20 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  1240. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  1241. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  1242. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  1243. f_alarm_temperature, goaf_datareport_time
  1244. FROM goaf_sensordata
  1245. WHERE oc_id = 406283
  1246. AND goaf_sensor_id = 442135
  1247. ORDER BY goaf_datareport_time DESC
  1248. LIMIT 1
  1249. 10:32:20.634 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:32:20 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  1250. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  1251. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  1252. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  1253. f_alarm_temperature, goaf_datareport_time
  1254. FROM goaf_sensordata
  1255. WHERE oc_id = 406283
  1256. AND goaf_sensor_id = 442139
  1257. ORDER BY goaf_datareport_time DESC
  1258. LIMIT 1
  1259. 10:33:28.146 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:33:28 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  1260. 10:33:28.162 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:33:28 | Time Consuming: 11 ms | Connection: statement-0 | SQL: SELECT *
  1261. FROM goaf_sensordata
  1262. WHERE oc_id = 406283
  1263. ORDER BY goaf_datareport_time DESC
  1264. LIMIT 1
  1265. 10:33:44.801 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:33:44 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  1266. 10:33:44.858 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:33:44 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT count(0) FROM goaf_sensordata WHERE oc_id = 406283
  1267. 10:33:45.110 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:33:45 | Time Consuming: 249 ms | Connection: statement-0 | SQL: SELECT *
  1268. FROM goaf_sensordata
  1269. WHERE oc_id = 406283
  1270. ORDER BY goaf_datareport_time DESC
  1271. LIMIT 10
  1272. 10:33:50.490 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:33:50 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  1273. 10:33:50.499 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:33:50 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT count(0) FROM goaf_sensordata WHERE oc_id = 406283
  1274. 10:33:50.733 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:33:50 | Time Consuming: 234 ms | Connection: statement-0 | SQL: SELECT *
  1275. FROM goaf_sensordata
  1276. WHERE oc_id = 406283
  1277. ORDER BY goaf_datareport_time DESC
  1278. LIMIT 10
  1279. 10:34:37.723 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:34:37 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  1280. 10:34:37.733 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:34:37 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT count(0) FROM goaf_sensordata WHERE oc_id = 406283
  1281. 10:34:37.971 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:34:37 | Time Consuming: 237 ms | Connection: statement-0 | SQL: SELECT *
  1282. FROM goaf_sensordata
  1283. WHERE oc_id = 406283
  1284. ORDER BY goaf_datareport_time DESC
  1285. LIMIT 10
  1286. 10:35:36.464 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:35:36 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT 1
  1287. 10:35:36.476 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:35:36 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT count(0) FROM goaf_sensordata WHERE oc_id = 406283
  1288. 10:35:36.714 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:35:36 | Time Consuming: 237 ms | Connection: statement-0 | SQL: SELECT *
  1289. FROM goaf_sensordata
  1290. WHERE oc_id = 406283
  1291. ORDER BY goaf_datareport_time DESC
  1292. LIMIT 10
  1293. 10:36:56.123 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:36:56 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  1294. 10:36:56.144 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:36:56 | Time Consuming: 14 ms | Connection: statement-0 | SQL: SELECT td_wave_value_x, td_wave_value_y, td_wave_value_z
  1295. FROM goaf_sensordata
  1296. AND goaf_data_id = 442169
  1297. 10:36:56.183 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:36:56 | Time Consuming: 4 ms | Connection: rollback-0 | SQL:
  1298. 10:37:26.299 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:37:26 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  1299. 10:37:26.310 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:37:26 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT count(0) FROM goaf_sensordata WHERE oc_id = 406283
  1300. 10:37:26.566 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:37:26 | Time Consuming: 253 ms | Connection: statement-0 | SQL: SELECT *
  1301. FROM goaf_sensordata
  1302. WHERE oc_id = 406283
  1303. ORDER BY goaf_datareport_time DESC
  1304. LIMIT 10
  1305. 10:37:32.102 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:37:32 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  1306. 10:37:32.110 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:37:32 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT *
  1307. FROM goaf_devinfo
  1308. where oc_id = 406283
  1309. 10:37:32.123 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:37:32 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT *
  1310. FROM goaf_sensor
  1311. where oc_id = 406283
  1312. AND goaf_dev_name = 'other'
  1313. 10:37:32.129 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:37:32 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  1314. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  1315. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  1316. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  1317. f_alarm_temperature, goaf_datareport_time
  1318. FROM goaf_sensordata
  1319. WHERE oc_id = 406283
  1320. AND goaf_sensor_id = 442129
  1321. ORDER BY goaf_datareport_time DESC
  1322. LIMIT 1
  1323. 10:37:32.134 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:37:32 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT *
  1324. FROM goaf_sensor
  1325. where oc_id = 406283
  1326. AND goaf_dev_name = 'waterpump'
  1327. 10:37:32.141 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:37:32 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  1328. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  1329. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  1330. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  1331. f_alarm_temperature, goaf_datareport_time
  1332. FROM goaf_sensordata
  1333. WHERE oc_id = 406283
  1334. AND goaf_sensor_id = 442136
  1335. ORDER BY goaf_datareport_time DESC
  1336. LIMIT 1
  1337. 10:37:32.147 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:37:32 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT *
  1338. FROM goaf_sensor
  1339. where oc_id = 406283
  1340. AND goaf_dev_name = 'machinery'
  1341. 10:37:32.151 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:37:32 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  1342. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  1343. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  1344. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  1345. f_alarm_temperature, goaf_datareport_time
  1346. FROM goaf_sensordata
  1347. WHERE oc_id = 406283
  1348. AND goaf_sensor_id = 442137
  1349. ORDER BY goaf_datareport_time DESC
  1350. LIMIT 1
  1351. 10:37:32.156 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:37:32 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT *
  1352. FROM goaf_sensor
  1353. where oc_id = 406283
  1354. AND goaf_dev_name = 'compress'
  1355. 10:37:32.164 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:37:32 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  1356. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  1357. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  1358. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  1359. f_alarm_temperature, goaf_datareport_time
  1360. FROM goaf_sensordata
  1361. WHERE oc_id = 406283
  1362. AND goaf_sensor_id = 442135
  1363. ORDER BY goaf_datareport_time DESC
  1364. LIMIT 1
  1365. 10:37:32.170 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:37:32 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  1366. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  1367. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  1368. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  1369. f_alarm_temperature, goaf_datareport_time
  1370. FROM goaf_sensordata
  1371. WHERE oc_id = 406283
  1372. AND goaf_sensor_id = 442139
  1373. ORDER BY goaf_datareport_time DESC
  1374. LIMIT 1
  1375. 10:38:20.201 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:38:20 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  1376. 10:38:48.272 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:38:48 | Time Consuming: 10 ms | Connection: statement-0 | SQL: SELECT td_wave_value_x, td_wave_value_y, td_wave_value_z
  1377. FROM goaf_sensordata
  1378. AND goaf_data_id = 442169
  1379. 10:38:48.276 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:38:48 | Time Consuming: 2 ms | Connection: rollback-0 | SQL:
  1380. 10:38:53.280 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:38:53 | Time Consuming: 5005 ms | Connection: statement-1 | SQL: SELECT 1
  1381. 10:38:53.285 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:38:53 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  1382. 10:38:53.297 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:38:53 | Time Consuming: 7 ms | Connection: statement-0 | SQL: SELECT *
  1383. FROM goaf_devinfo
  1384. where oc_id = 406283
  1385. 10:38:53.315 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:38:53 | Time Consuming: 6 ms | Connection: statement-0 | SQL: SELECT *
  1386. FROM goaf_sensor
  1387. where oc_id = 406283
  1388. AND goaf_dev_name = 'other'
  1389. 10:38:53.323 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:38:53 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  1390. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  1391. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  1392. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  1393. f_alarm_temperature, goaf_datareport_time
  1394. FROM goaf_sensordata
  1395. WHERE oc_id = 406283
  1396. AND goaf_sensor_id = 442129
  1397. ORDER BY goaf_datareport_time DESC
  1398. LIMIT 1
  1399. 10:38:53.328 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:38:53 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT *
  1400. FROM goaf_sensor
  1401. where oc_id = 406283
  1402. AND goaf_dev_name = 'waterpump'
  1403. 10:38:53.334 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:38:53 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  1404. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  1405. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  1406. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  1407. f_alarm_temperature, goaf_datareport_time
  1408. FROM goaf_sensordata
  1409. WHERE oc_id = 406283
  1410. AND goaf_sensor_id = 442136
  1411. ORDER BY goaf_datareport_time DESC
  1412. LIMIT 1
  1413. 10:38:53.338 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:38:53 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT *
  1414. FROM goaf_sensor
  1415. where oc_id = 406283
  1416. AND goaf_dev_name = 'machinery'
  1417. 10:38:53.344 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:38:53 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  1418. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  1419. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  1420. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  1421. f_alarm_temperature, goaf_datareport_time
  1422. FROM goaf_sensordata
  1423. WHERE oc_id = 406283
  1424. AND goaf_sensor_id = 442137
  1425. ORDER BY goaf_datareport_time DESC
  1426. LIMIT 1
  1427. 10:38:53.349 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:38:53 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT *
  1428. FROM goaf_sensor
  1429. where oc_id = 406283
  1430. AND goaf_dev_name = 'compress'
  1431. 10:38:53.354 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:38:53 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  1432. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  1433. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  1434. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  1435. f_alarm_temperature, goaf_datareport_time
  1436. FROM goaf_sensordata
  1437. WHERE oc_id = 406283
  1438. AND goaf_sensor_id = 442135
  1439. ORDER BY goaf_datareport_time DESC
  1440. LIMIT 1
  1441. 10:38:53.359 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:38:53 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  1442. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  1443. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  1444. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  1445. f_alarm_temperature, goaf_datareport_time
  1446. FROM goaf_sensordata
  1447. WHERE oc_id = 406283
  1448. AND goaf_sensor_id = 442139
  1449. ORDER BY goaf_datareport_time DESC
  1450. LIMIT 1
  1451. 10:38:54.723 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:38:54 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  1452. 10:38:54.735 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:38:54 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT
  1453. client_id,
  1454. client_title,
  1455. client_app_id,
  1456. client_app_key,
  1457. client_app_secret,
  1458. client_desc,
  1459. status,
  1460. is_fixed
  1461. FROM client
  1462. WHERE deleted_flag = 0
  1463. AND client_app_id = '10001'
  1464. AND client_app_key = '82a8bf439373e305'
  1465. 10:38:54.749 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:38:54 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT
  1466. A.client_id,
  1467. A.role_id,
  1468. A.permit_id,
  1469. A.permit_title,
  1470. A.permit_code,
  1471. A.permit_entry,
  1472. A.permit_desc,
  1473. A.permit_type,
  1474. A.parent_id,
  1475. A.root_id,
  1476. A.sort_no,
  1477. A.is_home
  1478. FROM s_role_permit AS A
  1479. WHERE 1 = 1
  1480. AND A.client_id = 2
  1481. AND A.role_id = 6
  1482. ORDER BY A.parent_id ASC ,A.sort_no ASC
  1483. 10:38:55.064 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:38:55 | Time Consuming: 9 ms | Connection: statement-0 | SQL: SELECT *
  1484. FROM goaf_devinfo
  1485. where oc_id = 406283
  1486. 10:38:55.080 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:38:55 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT *
  1487. FROM goaf_sensor
  1488. where oc_id = 406283
  1489. AND goaf_dev_name = 'other'
  1490. 10:38:55.087 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:38:55 | Time Consuming: 6 ms | Connection: statement-0 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  1491. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  1492. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  1493. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  1494. f_alarm_temperature, goaf_datareport_time
  1495. FROM goaf_sensordata
  1496. WHERE oc_id = 406283
  1497. AND goaf_sensor_id = 442129
  1498. ORDER BY goaf_datareport_time DESC
  1499. LIMIT 1
  1500. 10:38:55.091 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:38:55 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT *
  1501. FROM goaf_sensor
  1502. where oc_id = 406283
  1503. AND goaf_dev_name = 'waterpump'
  1504. 10:38:55.096 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:38:55 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  1505. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  1506. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  1507. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  1508. f_alarm_temperature, goaf_datareport_time
  1509. FROM goaf_sensordata
  1510. WHERE oc_id = 406283
  1511. AND goaf_sensor_id = 442136
  1512. ORDER BY goaf_datareport_time DESC
  1513. LIMIT 1
  1514. 10:38:55.100 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:38:55 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT *
  1515. FROM goaf_sensor
  1516. where oc_id = 406283
  1517. AND goaf_dev_name = 'machinery'
  1518. 10:38:55.105 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:38:55 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  1519. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  1520. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  1521. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  1522. f_alarm_temperature, goaf_datareport_time
  1523. FROM goaf_sensordata
  1524. WHERE oc_id = 406283
  1525. AND goaf_sensor_id = 442137
  1526. ORDER BY goaf_datareport_time DESC
  1527. LIMIT 1
  1528. 10:38:55.108 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:38:55 | Time Consuming: 2 ms | Connection: statement-0 | SQL: SELECT *
  1529. FROM goaf_sensor
  1530. where oc_id = 406283
  1531. AND goaf_dev_name = 'compress'
  1532. 10:38:55.112 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:38:55 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  1533. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  1534. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  1535. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  1536. f_alarm_temperature, goaf_datareport_time
  1537. FROM goaf_sensordata
  1538. WHERE oc_id = 406283
  1539. AND goaf_sensor_id = 442135
  1540. ORDER BY goaf_datareport_time DESC
  1541. LIMIT 1
  1542. 10:38:55.116 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:38:55 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  1543. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  1544. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  1545. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  1546. f_alarm_temperature, goaf_datareport_time
  1547. FROM goaf_sensordata
  1548. WHERE oc_id = 406283
  1549. AND goaf_sensor_id = 442139
  1550. ORDER BY goaf_datareport_time DESC
  1551. LIMIT 1
  1552. 10:39:00.070 [XNIO-1 task-4] INFO p6spy - 2023-08-25 10:39:00 | Time Consuming: 5001 ms | Connection: statement-2 | SQL: SELECT 1
  1553. 10:39:00.074 [XNIO-1 task-4] INFO p6spy - 2023-08-25 10:39:00 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  1554. 10:39:00.109 [XNIO-1 task-4] INFO p6spy - 2023-08-25 10:39:00 | Time Consuming: 30 ms | Connection: statement-0 | SQL: SELECT count(*)
  1555. FROM msg AS M
  1556. WHERE M.oc_id = 406283
  1557. AND (
  1558. EXISTS (
  1559. SELECT 1 FROM msg_to TT
  1560. WHERE M.oc_id = TT.oc_id AND M.msg_id = TT.msg_id AND TT.msg_to_id = 406283 AND TT.status=0
  1561. ) OR
  1562. EXISTS (
  1563. SELECT 1 FROM msg_cc CC
  1564. WHERE M.oc_id = CC.oc_id AND M.msg_id = CC.msg_id AND CC.msg_cc_id = 406283 AND CC.status=0
  1565. )
  1566. )
  1567. 10:39:08.477 [XNIO-1 task-4] INFO p6spy - 2023-08-25 10:39:08 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  1568. 10:39:08.485 [XNIO-1 task-4] INFO p6spy - 2023-08-25 10:39:08 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT *
  1569. FROM goaf_devinfo
  1570. where oc_id = 406283
  1571. 10:39:08.496 [XNIO-1 task-4] INFO p6spy - 2023-08-25 10:39:08 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT *
  1572. FROM goaf_sensor
  1573. where oc_id = 406283
  1574. AND goaf_dev_name = 'other'
  1575. 10:39:08.501 [XNIO-1 task-4] INFO p6spy - 2023-08-25 10:39:08 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  1576. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  1577. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  1578. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  1579. f_alarm_temperature, goaf_datareport_time
  1580. FROM goaf_sensordata
  1581. WHERE oc_id = 406283
  1582. AND goaf_sensor_id = 442129
  1583. ORDER BY goaf_datareport_time DESC
  1584. LIMIT 1
  1585. 10:39:08.505 [XNIO-1 task-4] INFO p6spy - 2023-08-25 10:39:08 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT *
  1586. FROM goaf_sensor
  1587. where oc_id = 406283
  1588. AND goaf_dev_name = 'waterpump'
  1589. 10:39:08.509 [XNIO-1 task-4] INFO p6spy - 2023-08-25 10:39:08 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  1590. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  1591. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  1592. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  1593. f_alarm_temperature, goaf_datareport_time
  1594. FROM goaf_sensordata
  1595. WHERE oc_id = 406283
  1596. AND goaf_sensor_id = 442136
  1597. ORDER BY goaf_datareport_time DESC
  1598. LIMIT 1
  1599. 10:39:08.513 [XNIO-1 task-4] INFO p6spy - 2023-08-25 10:39:08 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT *
  1600. FROM goaf_sensor
  1601. where oc_id = 406283
  1602. AND goaf_dev_name = 'machinery'
  1603. 10:39:08.518 [XNIO-1 task-4] INFO p6spy - 2023-08-25 10:39:08 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  1604. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  1605. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  1606. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  1607. f_alarm_temperature, goaf_datareport_time
  1608. FROM goaf_sensordata
  1609. WHERE oc_id = 406283
  1610. AND goaf_sensor_id = 442137
  1611. ORDER BY goaf_datareport_time DESC
  1612. LIMIT 1
  1613. 10:39:08.522 [XNIO-1 task-4] INFO p6spy - 2023-08-25 10:39:08 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT *
  1614. FROM goaf_sensor
  1615. where oc_id = 406283
  1616. AND goaf_dev_name = 'compress'
  1617. 10:39:08.527 [XNIO-1 task-4] INFO p6spy - 2023-08-25 10:39:08 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  1618. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  1619. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  1620. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  1621. f_alarm_temperature, goaf_datareport_time
  1622. FROM goaf_sensordata
  1623. WHERE oc_id = 406283
  1624. AND goaf_sensor_id = 442135
  1625. ORDER BY goaf_datareport_time DESC
  1626. LIMIT 1
  1627. 10:39:08.532 [XNIO-1 task-4] INFO p6spy - 2023-08-25 10:39:08 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  1628. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  1629. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  1630. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  1631. f_alarm_temperature, goaf_datareport_time
  1632. FROM goaf_sensordata
  1633. WHERE oc_id = 406283
  1634. AND goaf_sensor_id = 442139
  1635. ORDER BY goaf_datareport_time DESC
  1636. LIMIT 1
  1637. 10:39:38.406 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  1638. 10:39:38.407 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.4.Final
  1639. 10:39:38.410 [SpringApplicationShutdownHook] INFO io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
  1640. 10:39:38.412 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - Removing {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  1641. 10:39:38.412 [SpringApplicationShutdownHook] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 0 subscriber(s).
  1642. 10:39:38.412 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - stopped bean '_org.springframework.integration.errorLogger'
  1643. 10:39:38.420 [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)
  1644. 10:39:38.422 [SpringApplicationShutdownHook] INFO o.s.s.quartz.SchedulerFactoryBean - Shutting down Quartz Scheduler
  1645. 10:39:38.422 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
  1646. 10:39:38.422 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  1647. 10:39:38.422 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
  1648. 10:39:38.438 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown initiated...
  1649. 10:39:38.442 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown completed.
  1650. 10:39:41.762 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.0.Final
  1651. 10:39:41.809 [restartedMain] INFO com.zhyc.xps.XPSApplication - Starting XPSApplication using Java 17.0.6 with PID 9808 (E:\zhycnewprj\iotplatform\xps-server-3\xps-application\target\classes started by qzz19 in E:\zhycnewprj\iotplatform\xps-server-3)
  1652. 10:39:41.810 [restartedMain] INFO com.zhyc.xps.XPSApplication - The following 1 profile is active: "local"
  1653. 10:39:41.862 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
  1654. 10:39:41.863 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
  1655. 10:39:43.633 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
  1656. 10:39:43.636 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  1657. 10:39:43.722 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 72 ms. Found 0 Redis repository interfaces.
  1658. 10:39:43.887 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created.
  1659. 10:39:43.904 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created.
  1660. 10:39:44.652 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  1661. 10:39:44.652 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 2789 ms
  1662. 10:39:47.035 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor
  1663. 10:39:47.045 [restartedMain] INFO o.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  1664. 10:39:47.045 [restartedMain] INFO org.quartz.core.QuartzScheduler - Quartz Scheduler v.2.3.2 created.
  1665. 10:39:47.046 [restartedMain] INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized.
  1666. 10:39:47.046 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
  1667. Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  1668. NOT STARTED.
  1669. Currently in standby mode.
  1670. Number of jobs executed: 0
  1671. Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  1672. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
  1673. 10:39:47.046 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  1674. 10:39:47.046 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2
  1675. 10:39:47.046 [restartedMain] INFO org.quartz.core.QuartzScheduler - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@4739709e
  1676. 10:39:49.165 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer - LiveReload server is running on port 35729
  1677. 10:39:49.171 [restartedMain] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 15 endpoint(s) beneath base path '/actuator/z'
  1678. 10:39:49.324 [restartedMain] INFO io.undertow.websockets.jsr - UT026003: Adding annotated server endpoint class com.zhyc.xps.common.ws.WebSocketServer for path /websocket/link
  1679. 10:39:49.355 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  1680. 10:39:49.355 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 1 subscriber(s).
  1681. 10:39:49.356 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - started bean '_org.springframework.integration.errorLogger'
  1682. 10:39:49.376 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  1683. 10:39:49.386 [restartedMain] INFO org.xnio - XNIO version 3.8.8.Final
  1684. 10:39:49.396 [restartedMain] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.8.Final
  1685. 10:39:49.427 [restartedMain] INFO org.jboss.threads - JBoss Threads version 3.5.0.Final
  1686. 10:39:49.485 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 1788 (http)
  1687. 10:39:49.487 [restartedMain] INFO o.s.s.quartz.SchedulerFactoryBean - Starting Quartz Scheduler now
  1688. 10:39:49.487 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  1689. 10:39:49.512 [restartedMain] INFO com.zhyc.xps.XPSApplication - Started XPSApplication in 8.237 seconds (process running for 9.093)
  1690. 10:39:49.514 [restartedMain] INFO com.zhyc.xps.sys.job.InitSystemJob - 初始化系统定时任务
  1691. 10:39:49.521 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Starting...
  1692. 10:39:49.852 [restartedMain] INFO p6spy - 2023-08-25 10:39:49 | Time Consuming: 13 ms | Connection: statement-0 | SQL: SELECT 1
  1693. 10:39:49.857 [restartedMain] INFO com.zaxxer.hikari.pool.HikariPool - DatebookHikariCP - Added connection com.p6spy.engine.wrapper.ConnectionWrapper@1300a894
  1694. 10:39:49.861 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Start completed.
  1695. 10:39:49.929 [restartedMain] INFO p6spy - 2023-08-25 10:39:49 | Time Consuming: 6 ms | Connection: statement-0 | SQL: SELECT
  1696. A.job_id,
  1697. A.job_title,
  1698. A.job_desc,
  1699. A.status,
  1700. A.job_type,
  1701. A.job_code,
  1702. A.job_cron,
  1703. A.job_class_id,
  1704. B.job_class,
  1705. A.cycle_title,
  1706. A.cycle_period,
  1707. A.cycle_unit
  1708. FROM job AS A
  1709. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  1710. WHERE A.deleted_flag = 0
  1711. AND A.status = 1
  1712. ORDER BY A.job_id ASC
  1713. 10:39:49.951 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  1714. 10:39:49.953 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  1715. 10:39:50.277 [RMI TCP Connection(8)-192.168.3.5] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
  1716. 10:39:50.277 [RMI TCP Connection(8)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
  1717. 10:39:50.280 [RMI TCP Connection(8)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 2 ms
  1718. 10:39:50.284 [RMI TCP Connection(7)-192.168.3.5] INFO p6spy - 2023-08-25 10:39:50 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  1719. 10:39:57.864 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:39:57 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  1720. 10:39:57.881 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:39:57 | Time Consuming: 11 ms | Connection: statement-0 | SQL: SELECT td_wave_value_x, td_wave_value_y, td_wave_value_z
  1721. FROM goaf_sensordata
  1722. goaf_data_id = 442169
  1723. 10:39:57.911 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:39:57 | Time Consuming: 3 ms | Connection: rollback-0 | SQL:
  1724. 10:40:40.972 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  1725. 10:40:40.973 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.4.Final
  1726. 10:40:40.975 [SpringApplicationShutdownHook] INFO io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
  1727. 10:40:40.982 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - Removing {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  1728. 10:40:40.983 [SpringApplicationShutdownHook] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 0 subscriber(s).
  1729. 10:40:40.983 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - stopped bean '_org.springframework.integration.errorLogger'
  1730. 10:40:40.989 [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)
  1731. 10:40:40.990 [SpringApplicationShutdownHook] INFO o.s.s.quartz.SchedulerFactoryBean - Shutting down Quartz Scheduler
  1732. 10:40:40.990 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
  1733. 10:40:40.990 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  1734. 10:40:40.990 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
  1735. 10:40:41.002 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown initiated...
  1736. 10:40:41.006 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown completed.
  1737. 10:40:44.262 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.0.Final
  1738. 10:40:44.311 [restartedMain] INFO com.zhyc.xps.XPSApplication - Starting XPSApplication using Java 17.0.6 with PID 5660 (E:\zhycnewprj\iotplatform\xps-server-3\xps-application\target\classes started by qzz19 in E:\zhycnewprj\iotplatform\xps-server-3)
  1739. 10:40:44.311 [restartedMain] INFO com.zhyc.xps.XPSApplication - The following 1 profile is active: "local"
  1740. 10:40:44.364 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
  1741. 10:40:44.364 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
  1742. 10:40:46.166 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
  1743. 10:40:46.169 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  1744. 10:40:46.260 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 78 ms. Found 0 Redis repository interfaces.
  1745. 10:40:46.430 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created.
  1746. 10:40:46.446 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created.
  1747. 10:40:47.185 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  1748. 10:40:47.186 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 2821 ms
  1749. 10:40:49.553 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor
  1750. 10:40:49.562 [restartedMain] INFO o.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  1751. 10:40:49.563 [restartedMain] INFO org.quartz.core.QuartzScheduler - Quartz Scheduler v.2.3.2 created.
  1752. 10:40:49.563 [restartedMain] INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized.
  1753. 10:40:49.564 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
  1754. Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  1755. NOT STARTED.
  1756. Currently in standby mode.
  1757. Number of jobs executed: 0
  1758. Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  1759. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
  1760. 10:40:49.564 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  1761. 10:40:49.564 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2
  1762. 10:40:49.564 [restartedMain] INFO org.quartz.core.QuartzScheduler - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@54a923e7
  1763. 10:40:51.277 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer - LiveReload server is running on port 35729
  1764. 10:40:51.283 [restartedMain] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 15 endpoint(s) beneath base path '/actuator/z'
  1765. 10:40:51.427 [restartedMain] INFO io.undertow.websockets.jsr - UT026003: Adding annotated server endpoint class com.zhyc.xps.common.ws.WebSocketServer for path /websocket/link
  1766. 10:40:51.457 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  1767. 10:40:51.457 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 1 subscriber(s).
  1768. 10:40:51.458 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - started bean '_org.springframework.integration.errorLogger'
  1769. 10:40:51.477 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  1770. 10:40:51.486 [restartedMain] INFO org.xnio - XNIO version 3.8.8.Final
  1771. 10:40:51.497 [restartedMain] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.8.Final
  1772. 10:40:51.527 [restartedMain] INFO org.jboss.threads - JBoss Threads version 3.5.0.Final
  1773. 10:40:51.580 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 1788 (http)
  1774. 10:40:51.581 [restartedMain] INFO o.s.s.quartz.SchedulerFactoryBean - Starting Quartz Scheduler now
  1775. 10:40:51.581 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  1776. 10:40:51.606 [restartedMain] INFO com.zhyc.xps.XPSApplication - Started XPSApplication in 7.837 seconds (process running for 8.686)
  1777. 10:40:51.608 [restartedMain] INFO com.zhyc.xps.sys.job.InitSystemJob - 初始化系统定时任务
  1778. 10:40:51.615 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Starting...
  1779. 10:40:51.958 [restartedMain] INFO p6spy - 2023-08-25 10:40:51 | Time Consuming: 13 ms | Connection: statement-0 | SQL: SELECT 1
  1780. 10:40:51.962 [restartedMain] INFO com.zaxxer.hikari.pool.HikariPool - DatebookHikariCP - Added connection com.p6spy.engine.wrapper.ConnectionWrapper@76bea12f
  1781. 10:40:51.972 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Start completed.
  1782. 10:40:52.040 [restartedMain] INFO p6spy - 2023-08-25 10:40:52 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT
  1783. A.job_id,
  1784. A.job_title,
  1785. A.job_desc,
  1786. A.status,
  1787. A.job_type,
  1788. A.job_code,
  1789. A.job_cron,
  1790. A.job_class_id,
  1791. B.job_class,
  1792. A.cycle_title,
  1793. A.cycle_period,
  1794. A.cycle_unit
  1795. FROM job AS A
  1796. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  1797. WHERE A.deleted_flag = 0
  1798. AND A.status = 1
  1799. ORDER BY A.job_id ASC
  1800. 10:40:52.060 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  1801. 10:40:52.062 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  1802. 10:40:52.716 [RMI TCP Connection(6)-192.168.3.5] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
  1803. 10:40:52.716 [RMI TCP Connection(6)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
  1804. 10:40:52.717 [RMI TCP Connection(7)-192.168.3.5] INFO p6spy - 2023-08-25 10:40:52 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  1805. 10:40:52.719 [RMI TCP Connection(6)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 3 ms
  1806. 10:40:52.728 [RMI TCP Connection(7)-192.168.3.5] INFO p6spy - 2023-08-25 10:40:52 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  1807. 10:40:58.298 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:40:58 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  1808. 10:40:58.312 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:40:58 | Time Consuming: 9 ms | Connection: statement-0 | SQL: SELECT td_wave_value_x, td_wave_value_y, td_wave_value_z
  1809. FROM goaf_sensordata
  1810. WHERE goaf_data_id = 442169
  1811. 10:42:13.018 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:42:13 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT 1
  1812. 10:42:13.078 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:42:13 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT count(0) FROM goaf_sensordata WHERE oc_id = 406283
  1813. 10:42:13.345 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:42:13 | Time Consuming: 265 ms | Connection: statement-0 | SQL: SELECT *
  1814. FROM goaf_sensordata
  1815. WHERE oc_id = 406283
  1816. ORDER BY goaf_datareport_time DESC
  1817. LIMIT 10
  1818. 10:42:22.967 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:42:22 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  1819. 10:42:23.024 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:42:23 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT *
  1820. FROM goaf_devinfo
  1821. where oc_id = 406283
  1822. 10:42:23.039 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:42:23 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT *
  1823. FROM goaf_sensor
  1824. where oc_id = 406283
  1825. AND goaf_dev_name = 'other'
  1826. 10:42:23.044 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:42:23 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  1827. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  1828. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  1829. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  1830. f_alarm_temperature, goaf_datareport_time
  1831. FROM goaf_sensordata
  1832. WHERE oc_id = 406283
  1833. AND goaf_sensor_id = 442129
  1834. ORDER BY goaf_datareport_time DESC
  1835. LIMIT 1
  1836. 10:42:23.049 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:42:23 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT *
  1837. FROM goaf_sensor
  1838. where oc_id = 406283
  1839. AND goaf_dev_name = 'waterpump'
  1840. 10:42:23.060 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:42:23 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  1841. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  1842. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  1843. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  1844. f_alarm_temperature, goaf_datareport_time
  1845. FROM goaf_sensordata
  1846. WHERE oc_id = 406283
  1847. AND goaf_sensor_id = 442136
  1848. ORDER BY goaf_datareport_time DESC
  1849. LIMIT 1
  1850. 10:42:23.066 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:42:23 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT *
  1851. FROM goaf_sensor
  1852. where oc_id = 406283
  1853. AND goaf_dev_name = 'machinery'
  1854. 10:42:23.071 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:42:23 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  1855. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  1856. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  1857. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  1858. f_alarm_temperature, goaf_datareport_time
  1859. FROM goaf_sensordata
  1860. WHERE oc_id = 406283
  1861. AND goaf_sensor_id = 442137
  1862. ORDER BY goaf_datareport_time DESC
  1863. LIMIT 1
  1864. 10:42:23.076 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:42:23 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT *
  1865. FROM goaf_sensor
  1866. where oc_id = 406283
  1867. AND goaf_dev_name = 'compress'
  1868. 10:42:23.082 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:42:23 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  1869. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  1870. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  1871. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  1872. f_alarm_temperature, goaf_datareport_time
  1873. FROM goaf_sensordata
  1874. WHERE oc_id = 406283
  1875. AND goaf_sensor_id = 442135
  1876. ORDER BY goaf_datareport_time DESC
  1877. LIMIT 1
  1878. 10:42:23.086 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:42:23 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  1879. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  1880. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  1881. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  1882. f_alarm_temperature, goaf_datareport_time
  1883. FROM goaf_sensordata
  1884. WHERE oc_id = 406283
  1885. AND goaf_sensor_id = 442139
  1886. ORDER BY goaf_datareport_time DESC
  1887. LIMIT 1
  1888. 10:44:01.551 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:44:01 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  1889. 10:44:01.562 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:44:01 | Time Consuming: 7 ms | Connection: statement-0 | SQL: SELECT *
  1890. FROM goaf_devinfo
  1891. where oc_id = 406283
  1892. 10:44:01.578 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:44:01 | Time Consuming: 6 ms | Connection: statement-0 | SQL: SELECT *
  1893. FROM goaf_sensor
  1894. where oc_id = 406283
  1895. AND goaf_dev_name = 'other'
  1896. 10:44:01.585 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:44:01 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  1897. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  1898. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  1899. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  1900. f_alarm_temperature, goaf_datareport_time
  1901. FROM goaf_sensordata
  1902. WHERE oc_id = 406283
  1903. AND goaf_sensor_id = 442129
  1904. ORDER BY goaf_datareport_time DESC
  1905. LIMIT 1
  1906. 10:44:01.595 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:44:01 | Time Consuming: 6 ms | Connection: statement-0 | SQL: SELECT *
  1907. FROM goaf_sensor
  1908. where oc_id = 406283
  1909. AND goaf_dev_name = 'waterpump'
  1910. 10:44:01.603 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:44:01 | Time Consuming: 7 ms | Connection: statement-0 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  1911. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  1912. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  1913. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  1914. f_alarm_temperature, goaf_datareport_time
  1915. FROM goaf_sensordata
  1916. WHERE oc_id = 406283
  1917. AND goaf_sensor_id = 442136
  1918. ORDER BY goaf_datareport_time DESC
  1919. LIMIT 1
  1920. 10:44:01.611 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:44:01 | Time Consuming: 6 ms | Connection: statement-0 | SQL: SELECT *
  1921. FROM goaf_sensor
  1922. where oc_id = 406283
  1923. AND goaf_dev_name = 'machinery'
  1924. 10:44:01.618 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:44:01 | Time Consuming: 6 ms | Connection: statement-0 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  1925. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  1926. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  1927. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  1928. f_alarm_temperature, goaf_datareport_time
  1929. FROM goaf_sensordata
  1930. WHERE oc_id = 406283
  1931. AND goaf_sensor_id = 442137
  1932. ORDER BY goaf_datareport_time DESC
  1933. LIMIT 1
  1934. 10:44:01.624 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:44:01 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT *
  1935. FROM goaf_sensor
  1936. where oc_id = 406283
  1937. AND goaf_dev_name = 'compress'
  1938. 10:44:01.629 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:44:01 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  1939. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  1940. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  1941. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  1942. f_alarm_temperature, goaf_datareport_time
  1943. FROM goaf_sensordata
  1944. WHERE oc_id = 406283
  1945. AND goaf_sensor_id = 442135
  1946. ORDER BY goaf_datareport_time DESC
  1947. LIMIT 1
  1948. 10:44:01.635 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:44:01 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  1949. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  1950. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  1951. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  1952. f_alarm_temperature, goaf_datareport_time
  1953. FROM goaf_sensordata
  1954. WHERE oc_id = 406283
  1955. AND goaf_sensor_id = 442139
  1956. ORDER BY goaf_datareport_time DESC
  1957. LIMIT 1
  1958. 10:44:38.998 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:44:38 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  1959. 10:44:39.009 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:44:39 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT *
  1960. FROM goaf_devinfo
  1961. where oc_id = 406283
  1962. 10:44:39.025 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:44:39 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT *
  1963. FROM goaf_sensor
  1964. where oc_id = 406283
  1965. AND goaf_dev_name = 'other'
  1966. 10:44:39.031 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:44:39 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  1967. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  1968. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  1969. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  1970. f_alarm_temperature, goaf_datareport_time
  1971. FROM goaf_sensordata
  1972. WHERE oc_id = 406283
  1973. AND goaf_sensor_id = 442129
  1974. ORDER BY goaf_datareport_time DESC
  1975. LIMIT 1
  1976. 10:44:39.037 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:44:39 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT *
  1977. FROM goaf_sensor
  1978. where oc_id = 406283
  1979. AND goaf_dev_name = 'waterpump'
  1980. 10:44:39.042 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:44:39 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  1981. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  1982. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  1983. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  1984. f_alarm_temperature, goaf_datareport_time
  1985. FROM goaf_sensordata
  1986. WHERE oc_id = 406283
  1987. AND goaf_sensor_id = 442136
  1988. ORDER BY goaf_datareport_time DESC
  1989. LIMIT 1
  1990. 10:44:39.049 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:44:39 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT *
  1991. FROM goaf_sensor
  1992. where oc_id = 406283
  1993. AND goaf_dev_name = 'machinery'
  1994. 10:44:39.054 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:44:39 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  1995. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  1996. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  1997. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  1998. f_alarm_temperature, goaf_datareport_time
  1999. FROM goaf_sensordata
  2000. WHERE oc_id = 406283
  2001. AND goaf_sensor_id = 442137
  2002. ORDER BY goaf_datareport_time DESC
  2003. LIMIT 1
  2004. 10:44:39.058 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:44:39 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT *
  2005. FROM goaf_sensor
  2006. where oc_id = 406283
  2007. AND goaf_dev_name = 'compress'
  2008. 10:44:39.063 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:44:39 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  2009. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  2010. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  2011. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  2012. f_alarm_temperature, goaf_datareport_time
  2013. FROM goaf_sensordata
  2014. WHERE oc_id = 406283
  2015. AND goaf_sensor_id = 442135
  2016. ORDER BY goaf_datareport_time DESC
  2017. LIMIT 1
  2018. 10:44:39.072 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:44:39 | Time Consuming: 6 ms | Connection: statement-0 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  2019. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  2020. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  2021. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  2022. f_alarm_temperature, goaf_datareport_time
  2023. FROM goaf_sensordata
  2024. WHERE oc_id = 406283
  2025. AND goaf_sensor_id = 442139
  2026. ORDER BY goaf_datareport_time DESC
  2027. LIMIT 1
  2028. 10:51:50.025 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:51:50 | Time Consuming: 5 ms | Connection: statement-5 | SQL: SELECT 1
  2029. 10:51:50.034 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:51:50 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT *
  2030. FROM goaf_devinfo
  2031. where oc_id = 406283
  2032. 10:51:50.049 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:51:50 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT *
  2033. FROM goaf_sensor
  2034. where oc_id = 406283
  2035. AND goaf_dev_name = 'other'
  2036. 10:51:50.057 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:51:50 | Time Consuming: 5 ms | Connection: statement-5 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  2037. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  2038. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  2039. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  2040. f_alarm_temperature, goaf_datareport_time
  2041. FROM goaf_sensordata
  2042. WHERE oc_id = 406283
  2043. AND goaf_sensor_id = 442129
  2044. ORDER BY goaf_datareport_time DESC
  2045. LIMIT 1
  2046. 10:51:50.062 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:51:50 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT *
  2047. FROM goaf_sensor
  2048. where oc_id = 406283
  2049. AND goaf_dev_name = 'waterpump'
  2050. 10:51:50.068 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:51:50 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  2051. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  2052. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  2053. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  2054. f_alarm_temperature, goaf_datareport_time
  2055. FROM goaf_sensordata
  2056. WHERE oc_id = 406283
  2057. AND goaf_sensor_id = 442136
  2058. ORDER BY goaf_datareport_time DESC
  2059. LIMIT 1
  2060. 10:51:50.074 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:51:50 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT *
  2061. FROM goaf_sensor
  2062. where oc_id = 406283
  2063. AND goaf_dev_name = 'machinery'
  2064. 10:51:50.079 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:51:50 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  2065. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  2066. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  2067. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  2068. f_alarm_temperature, goaf_datareport_time
  2069. FROM goaf_sensordata
  2070. WHERE oc_id = 406283
  2071. AND goaf_sensor_id = 442137
  2072. ORDER BY goaf_datareport_time DESC
  2073. LIMIT 1
  2074. 10:51:50.084 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:51:50 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT *
  2075. FROM goaf_sensor
  2076. where oc_id = 406283
  2077. AND goaf_dev_name = 'compress'
  2078. 10:51:50.090 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:51:50 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  2079. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  2080. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  2081. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  2082. f_alarm_temperature, goaf_datareport_time
  2083. FROM goaf_sensordata
  2084. WHERE oc_id = 406283
  2085. AND goaf_sensor_id = 442135
  2086. ORDER BY goaf_datareport_time DESC
  2087. LIMIT 1
  2088. 10:51:50.095 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:51:50 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  2089. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  2090. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  2091. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  2092. f_alarm_temperature, goaf_datareport_time
  2093. FROM goaf_sensordata
  2094. WHERE oc_id = 406283
  2095. AND goaf_sensor_id = 442139
  2096. ORDER BY goaf_datareport_time DESC
  2097. LIMIT 1
  2098. 10:52:31.728 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:52:31 | Time Consuming: 10 ms | Connection: statement-5 | SQL: SELECT 1
  2099. 10:52:31.750 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:52:31 | Time Consuming: 10 ms | Connection: statement-5 | SQL: SELECT *
  2100. FROM goaf_devinfo
  2101. where oc_id = 406283
  2102. 10:52:31.784 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:52:31 | Time Consuming: 10 ms | Connection: statement-5 | SQL: SELECT *
  2103. FROM goaf_sensor
  2104. where oc_id = 406283
  2105. AND goaf_dev_name = 'other'
  2106. 10:52:31.797 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:52:31 | Time Consuming: 10 ms | Connection: statement-5 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  2107. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  2108. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  2109. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  2110. f_alarm_temperature, goaf_datareport_time
  2111. FROM goaf_sensordata
  2112. WHERE oc_id = 406283
  2113. AND goaf_sensor_id = 442129
  2114. ORDER BY goaf_datareport_time DESC
  2115. LIMIT 1
  2116. 10:52:31.810 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:52:31 | Time Consuming: 11 ms | Connection: statement-5 | SQL: SELECT *
  2117. FROM goaf_sensor
  2118. where oc_id = 406283
  2119. AND goaf_dev_name = 'waterpump'
  2120. 10:52:31.822 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:52:31 | Time Consuming: 10 ms | Connection: statement-5 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  2121. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  2122. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  2123. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  2124. f_alarm_temperature, goaf_datareport_time
  2125. FROM goaf_sensordata
  2126. WHERE oc_id = 406283
  2127. AND goaf_sensor_id = 442136
  2128. ORDER BY goaf_datareport_time DESC
  2129. LIMIT 1
  2130. 10:52:31.834 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:52:31 | Time Consuming: 10 ms | Connection: statement-5 | SQL: SELECT *
  2131. FROM goaf_sensor
  2132. where oc_id = 406283
  2133. AND goaf_dev_name = 'machinery'
  2134. 10:52:31.847 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:52:31 | Time Consuming: 11 ms | Connection: statement-5 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  2135. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  2136. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  2137. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  2138. f_alarm_temperature, goaf_datareport_time
  2139. FROM goaf_sensordata
  2140. WHERE oc_id = 406283
  2141. AND goaf_sensor_id = 442137
  2142. ORDER BY goaf_datareport_time DESC
  2143. LIMIT 1
  2144. 10:52:31.858 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:52:31 | Time Consuming: 10 ms | Connection: statement-5 | SQL: SELECT *
  2145. FROM goaf_sensor
  2146. where oc_id = 406283
  2147. AND goaf_dev_name = 'compress'
  2148. 10:52:31.870 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:52:31 | Time Consuming: 10 ms | Connection: statement-5 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  2149. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  2150. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  2151. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  2152. f_alarm_temperature, goaf_datareport_time
  2153. FROM goaf_sensordata
  2154. WHERE oc_id = 406283
  2155. AND goaf_sensor_id = 442135
  2156. ORDER BY goaf_datareport_time DESC
  2157. LIMIT 1
  2158. 10:52:31.882 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:52:31 | Time Consuming: 10 ms | Connection: statement-5 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  2159. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  2160. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  2161. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  2162. f_alarm_temperature, goaf_datareport_time
  2163. FROM goaf_sensordata
  2164. WHERE oc_id = 406283
  2165. AND goaf_sensor_id = 442139
  2166. ORDER BY goaf_datareport_time DESC
  2167. LIMIT 1
  2168. 10:53:05.699 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:53:05 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT 1
  2169. 10:53:05.713 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:53:05 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT
  2170. client_id,
  2171. client_title,
  2172. client_app_id,
  2173. client_app_key,
  2174. client_app_secret,
  2175. client_desc,
  2176. status,
  2177. is_fixed
  2178. FROM client
  2179. WHERE deleted_flag = 0
  2180. AND client_app_id = '10001'
  2181. AND client_app_key = '82a8bf439373e305'
  2182. 10:53:05.729 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:53:05 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT
  2183. A.oc_id,
  2184. B.oc_type_id,
  2185. B.oc_name,
  2186. A.account_id,
  2187. A.account_name,
  2188. A.account_real_name,
  2189. A.password,
  2190. A.account_type,
  2191. A.account_staff_no,
  2192. A.account_phone,
  2193. A.account_last_ip,
  2194. A.account_loc,
  2195. A.status,
  2196. A.account_avatar,
  2197. A.account_photo,
  2198. A.account_real_name,
  2199. A.account_intro,
  2200. A.wx_id,
  2201. A.is_fixed
  2202. FROM account AS A
  2203. LEFT JOIN oc AS B ON (A.oc_id = B.oc_id )
  2204. WHERE A.deleted_flag = 0
  2205. AND (A.account_name = 'sxky'
  2206. OR A.account_phone = 'sxky'
  2207. OR A.account_mail = 'sxky'
  2208. OR A.account_staff_no = 'sxky')
  2209. 10:53:05.738 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:53:05 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT
  2210. A.oc_id,
  2211. A.oc_name,
  2212. A.oc_type_id,
  2213. A.root_id,
  2214. A.parent_id,
  2215. A.admin_id,
  2216. B.account_name AS admin_name,
  2217. A.group_id,
  2218. A.node_left,
  2219. A.node_right,
  2220. A.node_level,
  2221. A.is_leaf,
  2222. A.status,
  2223. A.if_lic
  2224. FROM oc AS A
  2225. LEFT JOIN account AS B ON (A.oc_id = B.oc_id AND A.admin_id = B.account_id)
  2226. WHERE A.oc_id = 406283
  2227. 10:53:05.745 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:53:05 | Time Consuming: 5 ms | Connection: statement-5 | SQL: SELECT
  2228. A.rm_id,
  2229. A.role_id,
  2230. B.role_type_id,
  2231. B.role_code,
  2232. B.role_name,
  2233. A.account_id
  2234. FROM s_role_member AS A
  2235. LEFT JOIN s_role AS B ON (A.role_id = B.role_id)
  2236. WHERE account_id = 406283
  2237. LIMIT 1
  2238. 10:53:05.751 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:53:05 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT
  2239. A.gm_id,
  2240. A.oc_id,
  2241. A.group_id,
  2242. B.group_name,
  2243. B.node_left ,
  2244. B.node_right,
  2245. A.account_id
  2246. FROM s_group_member AS A
  2247. LEFT JOIN s_group AS B ON (A.oc_id = B.oc_id AND A.group_id = B.group_id)
  2248. WHERE B.deleted_flag = 0
  2249. AND A.oc_id = 406283
  2250. AND A.account_id = 406283
  2251. LIMIT 1
  2252. 10:53:05.759 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:53:05 | Time Consuming: 5 ms | Connection: statement-5 | SQL: SELECT
  2253. A.gmp_id,
  2254. A.oc_id,
  2255. A.group_id,
  2256. B.group_name,
  2257. A.account_id,
  2258. D.account_name,
  2259. D.account_real_name,
  2260. A.position_id,
  2261. C.position_name
  2262. FROM s_group_member_position A
  2263. LEFT JOIN s_group B ON (A.oc_id = B.oc_id AND A.group_id = B.group_id)
  2264. LEFT JOIN s_position C ON (A.oc_id = C.oc_id AND A.position_id = C.position_id)
  2265. LEFT JOIN account D ON (A.oc_id = D.oc_id AND A.account_id = D.account_id)
  2266. WHERE A.deleted_flag = 0
  2267. AND A.oc_id = 406283
  2268. AND A.group_id = 406283
  2269. AND A.account_id = 406283
  2270. LIMIT 1
  2271. 10:53:05.765 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:53:05 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT
  2272. A.gmpg_id,
  2273. A.oc_id,
  2274. A.group_id,
  2275. A.account_id,
  2276. A.position_id,
  2277. A.grant_group_id,
  2278. B.group_name AS grant_group_name
  2279. FROM s_group_member_position_grant A
  2280. LEFT JOIN s_group B ON(A.oc_id = B.oc_id AND A.grant_group_id = B.group_id)
  2281. WHERE A.deleted_flag = 0
  2282. AND A.oc_id = 406283
  2283. AND A.group_id = 406283
  2284. AND A.account_id = 406283
  2285. AND A.position_id = 406283
  2286. LIMIT 1
  2287. 10:53:05.827 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:53:05 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT
  2288. client_id,
  2289. client_title,
  2290. client_app_id,
  2291. client_app_key,
  2292. client_app_secret,
  2293. client_desc,
  2294. status,
  2295. is_fixed
  2296. FROM client
  2297. WHERE deleted_flag = 0
  2298. AND client_app_id = '10001'
  2299. AND client_app_key = '82a8bf439373e305'
  2300. 10:53:05.849 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:53:05 | Time Consuming: 5 ms | Connection: statement-5 | SQL: SELECT
  2301. A.client_id,
  2302. A.role_id,
  2303. A.permit_id,
  2304. A.permit_title,
  2305. A.permit_code,
  2306. A.permit_entry,
  2307. A.permit_desc,
  2308. A.permit_type,
  2309. A.parent_id,
  2310. A.root_id,
  2311. A.sort_no,
  2312. A.is_home
  2313. FROM s_role_permit AS A
  2314. WHERE 1 = 1
  2315. AND A.client_id = 2
  2316. AND A.role_id = 6
  2317. ORDER BY A.parent_id ASC ,A.sort_no ASC
  2318. 10:53:06.160 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:53:06 | Time Consuming: 30 ms | Connection: statement-5 | SQL: SELECT count(*)
  2319. FROM msg AS M
  2320. WHERE M.oc_id = 406283
  2321. AND (
  2322. EXISTS (
  2323. SELECT 1 FROM msg_to TT
  2324. WHERE M.oc_id = TT.oc_id AND M.msg_id = TT.msg_id AND TT.msg_to_id = 406283 AND TT.status=0
  2325. ) OR
  2326. EXISTS (
  2327. SELECT 1 FROM msg_cc CC
  2328. WHERE M.oc_id = CC.oc_id AND M.msg_id = CC.msg_id AND CC.msg_cc_id = 406283 AND CC.status=0
  2329. )
  2330. )
  2331. 10:53:06.724 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:53:06 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT 1
  2332. 10:53:06.728 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:53:06 | Time Consuming: 2 ms | Connection: statement-5 | SQL: SELECT count(0) FROM goaf_sensor WHERE oc_id = 406283
  2333. 10:53:06.732 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:53:06 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT *
  2334. FROM goaf_sensor
  2335. where oc_id = 406283
  2336. LIMIT 10
  2337. 10:53:23.965 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:53:23 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT 1
  2338. 10:53:23.973 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:53:23 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT *
  2339. FROM goaf_devinfo
  2340. where oc_id = 406283
  2341. 10:53:23.986 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:53:23 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT *
  2342. FROM goaf_sensor
  2343. where oc_id = 406283
  2344. AND goaf_dev_name = 'other'
  2345. 10:53:23.992 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:53:23 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  2346. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  2347. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  2348. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  2349. f_alarm_temperature, goaf_datareport_time
  2350. FROM goaf_sensordata
  2351. WHERE oc_id = 406283
  2352. AND goaf_sensor_id = 442129
  2353. ORDER BY goaf_datareport_time DESC
  2354. LIMIT 1
  2355. 10:53:23.997 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:53:23 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT *
  2356. FROM goaf_sensor
  2357. where oc_id = 406283
  2358. AND goaf_dev_name = 'waterpump'
  2359. 10:53:24.001 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:53:24 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  2360. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  2361. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  2362. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  2363. f_alarm_temperature, goaf_datareport_time
  2364. FROM goaf_sensordata
  2365. WHERE oc_id = 406283
  2366. AND goaf_sensor_id = 442136
  2367. ORDER BY goaf_datareport_time DESC
  2368. LIMIT 1
  2369. 10:53:24.006 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:53:24 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT *
  2370. FROM goaf_sensor
  2371. where oc_id = 406283
  2372. AND goaf_dev_name = 'machinery'
  2373. 10:53:24.011 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:53:24 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  2374. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  2375. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  2376. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  2377. f_alarm_temperature, goaf_datareport_time
  2378. FROM goaf_sensordata
  2379. WHERE oc_id = 406283
  2380. AND goaf_sensor_id = 442137
  2381. ORDER BY goaf_datareport_time DESC
  2382. LIMIT 1
  2383. 10:53:24.016 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:53:24 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT *
  2384. FROM goaf_sensor
  2385. where oc_id = 406283
  2386. AND goaf_dev_name = 'compress'
  2387. 10:53:24.023 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:53:24 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  2388. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  2389. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  2390. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  2391. f_alarm_temperature, goaf_datareport_time
  2392. FROM goaf_sensordata
  2393. WHERE oc_id = 406283
  2394. AND goaf_sensor_id = 442135
  2395. ORDER BY goaf_datareport_time DESC
  2396. LIMIT 1
  2397. 10:53:24.028 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:53:24 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  2398. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  2399. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  2400. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  2401. f_alarm_temperature, goaf_datareport_time
  2402. FROM goaf_sensordata
  2403. WHERE oc_id = 406283
  2404. AND goaf_sensor_id = 442139
  2405. ORDER BY goaf_datareport_time DESC
  2406. LIMIT 1
  2407. 10:53:25.538 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:53:25 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT 1
  2408. 10:53:25.545 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:53:25 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT *
  2409. FROM goaf_devinfo
  2410. where oc_id = 406283
  2411. 10:53:25.556 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:53:25 | Time Consuming: 5 ms | Connection: statement-5 | SQL: SELECT *
  2412. FROM goaf_sensor
  2413. where oc_id = 406283
  2414. AND goaf_dev_name = 'other'
  2415. 10:53:25.562 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:53:25 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  2416. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  2417. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  2418. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  2419. f_alarm_temperature, goaf_datareport_time
  2420. FROM goaf_sensordata
  2421. WHERE oc_id = 406283
  2422. AND goaf_sensor_id = 442129
  2423. ORDER BY goaf_datareport_time DESC
  2424. LIMIT 1
  2425. 10:53:25.567 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:53:25 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT *
  2426. FROM goaf_sensor
  2427. where oc_id = 406283
  2428. AND goaf_dev_name = 'waterpump'
  2429. 10:53:25.573 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:53:25 | Time Consuming: 5 ms | Connection: statement-5 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  2430. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  2431. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  2432. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  2433. f_alarm_temperature, goaf_datareport_time
  2434. FROM goaf_sensordata
  2435. WHERE oc_id = 406283
  2436. AND goaf_sensor_id = 442136
  2437. ORDER BY goaf_datareport_time DESC
  2438. LIMIT 1
  2439. 10:53:25.578 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:53:25 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT *
  2440. FROM goaf_sensor
  2441. where oc_id = 406283
  2442. AND goaf_dev_name = 'machinery'
  2443. 10:53:25.582 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:53:25 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  2444. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  2445. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  2446. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  2447. f_alarm_temperature, goaf_datareport_time
  2448. FROM goaf_sensordata
  2449. WHERE oc_id = 406283
  2450. AND goaf_sensor_id = 442137
  2451. ORDER BY goaf_datareport_time DESC
  2452. LIMIT 1
  2453. 10:53:25.586 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:53:25 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT *
  2454. FROM goaf_sensor
  2455. where oc_id = 406283
  2456. AND goaf_dev_name = 'compress'
  2457. 10:53:25.591 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:53:25 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  2458. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  2459. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  2460. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  2461. f_alarm_temperature, goaf_datareport_time
  2462. FROM goaf_sensordata
  2463. WHERE oc_id = 406283
  2464. AND goaf_sensor_id = 442135
  2465. ORDER BY goaf_datareport_time DESC
  2466. LIMIT 1
  2467. 10:53:25.596 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:53:25 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  2468. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  2469. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  2470. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  2471. f_alarm_temperature, goaf_datareport_time
  2472. FROM goaf_sensordata
  2473. WHERE oc_id = 406283
  2474. AND goaf_sensor_id = 442139
  2475. ORDER BY goaf_datareport_time DESC
  2476. LIMIT 1
  2477. 10:53:37.764 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:53:37 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT 1
  2478. 10:53:37.767 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:53:37 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT count(0) FROM goaf_sensor WHERE oc_id = 406283
  2479. 10:53:37.771 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:53:37 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT *
  2480. FROM goaf_sensor
  2481. where oc_id = 406283
  2482. LIMIT 10
  2483. 10:53:38.793 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:53:38 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT 1
  2484. 10:53:38.797 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:53:38 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT count(0) FROM goaf_sensor WHERE oc_id = 406283
  2485. 10:53:38.801 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:53:38 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT *
  2486. FROM goaf_sensor
  2487. where oc_id = 406283
  2488. LIMIT 10
  2489. 10:53:51.272 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:53:51 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT 1
  2490. 10:53:51.281 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:53:51 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT *
  2491. FROM goaf_devinfo
  2492. where oc_id = 406283
  2493. 10:53:51.293 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:53:51 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT *
  2494. FROM goaf_sensor
  2495. where oc_id = 406283
  2496. AND goaf_dev_name = 'other'
  2497. 10:53:51.298 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:53:51 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  2498. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  2499. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  2500. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  2501. f_alarm_temperature, goaf_datareport_time
  2502. FROM goaf_sensordata
  2503. WHERE oc_id = 406283
  2504. AND goaf_sensor_id = 442129
  2505. ORDER BY goaf_datareport_time DESC
  2506. LIMIT 1
  2507. 10:53:51.302 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:53:51 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT *
  2508. FROM goaf_sensor
  2509. where oc_id = 406283
  2510. AND goaf_dev_name = 'waterpump'
  2511. 10:53:51.308 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:53:51 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  2512. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  2513. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  2514. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  2515. f_alarm_temperature, goaf_datareport_time
  2516. FROM goaf_sensordata
  2517. WHERE oc_id = 406283
  2518. AND goaf_sensor_id = 442136
  2519. ORDER BY goaf_datareport_time DESC
  2520. LIMIT 1
  2521. 10:53:51.311 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:53:51 | Time Consuming: 2 ms | Connection: statement-5 | SQL: SELECT *
  2522. FROM goaf_sensor
  2523. where oc_id = 406283
  2524. AND goaf_dev_name = 'machinery'
  2525. 10:53:51.315 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:53:51 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  2526. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  2527. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  2528. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  2529. f_alarm_temperature, goaf_datareport_time
  2530. FROM goaf_sensordata
  2531. WHERE oc_id = 406283
  2532. AND goaf_sensor_id = 442137
  2533. ORDER BY goaf_datareport_time DESC
  2534. LIMIT 1
  2535. 10:53:51.319 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:53:51 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT *
  2536. FROM goaf_sensor
  2537. where oc_id = 406283
  2538. AND goaf_dev_name = 'compress'
  2539. 10:53:51.323 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:53:51 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  2540. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  2541. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  2542. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  2543. f_alarm_temperature, goaf_datareport_time
  2544. FROM goaf_sensordata
  2545. WHERE oc_id = 406283
  2546. AND goaf_sensor_id = 442135
  2547. ORDER BY goaf_datareport_time DESC
  2548. LIMIT 1
  2549. 10:53:51.329 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:53:51 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  2550. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  2551. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  2552. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  2553. f_alarm_temperature, goaf_datareport_time
  2554. FROM goaf_sensordata
  2555. WHERE oc_id = 406283
  2556. AND goaf_sensor_id = 442139
  2557. ORDER BY goaf_datareport_time DESC
  2558. LIMIT 1
  2559. 10:54:01.581 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:54:01 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT 1
  2560. 10:54:01.590 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:54:01 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT *
  2561. FROM goaf_devinfo
  2562. where oc_id = 406283
  2563. 10:54:01.603 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:54:01 | Time Consuming: 5 ms | Connection: statement-5 | SQL: SELECT *
  2564. FROM goaf_sensor
  2565. where oc_id = 406283
  2566. AND goaf_dev_name = 'other'
  2567. 10:54:01.609 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:54:01 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  2568. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  2569. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  2570. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  2571. f_alarm_temperature, goaf_datareport_time
  2572. FROM goaf_sensordata
  2573. WHERE oc_id = 406283
  2574. AND goaf_sensor_id = 442129
  2575. ORDER BY goaf_datareport_time DESC
  2576. LIMIT 1
  2577. 10:54:01.614 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:54:01 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT *
  2578. FROM goaf_sensor
  2579. where oc_id = 406283
  2580. AND goaf_dev_name = 'waterpump'
  2581. 10:54:01.620 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:54:01 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  2582. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  2583. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  2584. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  2585. f_alarm_temperature, goaf_datareport_time
  2586. FROM goaf_sensordata
  2587. WHERE oc_id = 406283
  2588. AND goaf_sensor_id = 442136
  2589. ORDER BY goaf_datareport_time DESC
  2590. LIMIT 1
  2591. 10:54:01.624 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:54:01 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT *
  2592. FROM goaf_sensor
  2593. where oc_id = 406283
  2594. AND goaf_dev_name = 'machinery'
  2595. 10:54:01.628 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:54:01 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  2596. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  2597. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  2598. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  2599. f_alarm_temperature, goaf_datareport_time
  2600. FROM goaf_sensordata
  2601. WHERE oc_id = 406283
  2602. AND goaf_sensor_id = 442137
  2603. ORDER BY goaf_datareport_time DESC
  2604. LIMIT 1
  2605. 10:54:01.632 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:54:01 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT *
  2606. FROM goaf_sensor
  2607. where oc_id = 406283
  2608. AND goaf_dev_name = 'compress'
  2609. 10:54:01.638 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:54:01 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  2610. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  2611. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  2612. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  2613. f_alarm_temperature, goaf_datareport_time
  2614. FROM goaf_sensordata
  2615. WHERE oc_id = 406283
  2616. AND goaf_sensor_id = 442135
  2617. ORDER BY goaf_datareport_time DESC
  2618. LIMIT 1
  2619. 10:54:01.644 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:54:01 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  2620. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  2621. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  2622. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  2623. f_alarm_temperature, goaf_datareport_time
  2624. FROM goaf_sensordata
  2625. WHERE oc_id = 406283
  2626. AND goaf_sensor_id = 442139
  2627. ORDER BY goaf_datareport_time DESC
  2628. LIMIT 1
  2629. 10:54:31.014 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:54:31 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT 1
  2630. 10:54:31.023 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:54:31 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT *
  2631. FROM goaf_devinfo
  2632. where oc_id = 406283
  2633. 10:54:31.034 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:54:31 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT *
  2634. FROM goaf_sensor
  2635. where oc_id = 406283
  2636. AND goaf_dev_name = 'other'
  2637. 10:54:31.040 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:54:31 | Time Consuming: 5 ms | Connection: statement-5 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  2638. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  2639. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  2640. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  2641. f_alarm_temperature, goaf_datareport_time
  2642. FROM goaf_sensordata
  2643. WHERE oc_id = 406283
  2644. AND goaf_sensor_id = 442129
  2645. ORDER BY goaf_datareport_time DESC
  2646. LIMIT 1
  2647. 10:54:31.047 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:54:31 | Time Consuming: 5 ms | Connection: statement-5 | SQL: SELECT *
  2648. FROM goaf_sensor
  2649. where oc_id = 406283
  2650. AND goaf_dev_name = 'waterpump'
  2651. 10:54:31.052 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:54:31 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  2652. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  2653. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  2654. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  2655. f_alarm_temperature, goaf_datareport_time
  2656. FROM goaf_sensordata
  2657. WHERE oc_id = 406283
  2658. AND goaf_sensor_id = 442136
  2659. ORDER BY goaf_datareport_time DESC
  2660. LIMIT 1
  2661. 10:54:31.058 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:54:31 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT *
  2662. FROM goaf_sensor
  2663. where oc_id = 406283
  2664. AND goaf_dev_name = 'machinery'
  2665. 10:54:31.066 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:54:31 | Time Consuming: 6 ms | Connection: statement-5 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  2666. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  2667. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  2668. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  2669. f_alarm_temperature, goaf_datareport_time
  2670. FROM goaf_sensordata
  2671. WHERE oc_id = 406283
  2672. AND goaf_sensor_id = 442137
  2673. ORDER BY goaf_datareport_time DESC
  2674. LIMIT 1
  2675. 10:54:31.072 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:54:31 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT *
  2676. FROM goaf_sensor
  2677. where oc_id = 406283
  2678. AND goaf_dev_name = 'compress'
  2679. 10:54:31.080 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:54:31 | Time Consuming: 5 ms | Connection: statement-5 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  2680. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  2681. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  2682. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  2683. f_alarm_temperature, goaf_datareport_time
  2684. FROM goaf_sensordata
  2685. WHERE oc_id = 406283
  2686. AND goaf_sensor_id = 442135
  2687. ORDER BY goaf_datareport_time DESC
  2688. LIMIT 1
  2689. 10:54:31.087 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:54:31 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  2690. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  2691. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  2692. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  2693. f_alarm_temperature, goaf_datareport_time
  2694. FROM goaf_sensordata
  2695. WHERE oc_id = 406283
  2696. AND goaf_sensor_id = 442139
  2697. ORDER BY goaf_datareport_time DESC
  2698. LIMIT 1
  2699. 10:54:37.727 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:54:37 | Time Consuming: 5 ms | Connection: statement-5 | SQL: SELECT 1
  2700. 10:54:37.737 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:54:37 | Time Consuming: 5 ms | Connection: statement-5 | SQL: SELECT *
  2701. FROM goaf_devinfo
  2702. where oc_id = 406283
  2703. 10:54:37.750 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:54:37 | Time Consuming: 5 ms | Connection: statement-5 | SQL: SELECT *
  2704. FROM goaf_sensor
  2705. where oc_id = 406283
  2706. AND goaf_dev_name = 'other'
  2707. 10:54:37.757 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:54:37 | Time Consuming: 5 ms | Connection: statement-5 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  2708. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  2709. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  2710. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  2711. f_alarm_temperature, goaf_datareport_time
  2712. FROM goaf_sensordata
  2713. WHERE oc_id = 406283
  2714. AND goaf_sensor_id = 442129
  2715. ORDER BY goaf_datareport_time DESC
  2716. LIMIT 1
  2717. 10:54:37.764 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:54:37 | Time Consuming: 5 ms | Connection: statement-5 | SQL: SELECT *
  2718. FROM goaf_sensor
  2719. where oc_id = 406283
  2720. AND goaf_dev_name = 'waterpump'
  2721. 10:54:37.770 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:54:37 | Time Consuming: 5 ms | Connection: statement-5 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  2722. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  2723. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  2724. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  2725. f_alarm_temperature, goaf_datareport_time
  2726. FROM goaf_sensordata
  2727. WHERE oc_id = 406283
  2728. AND goaf_sensor_id = 442136
  2729. ORDER BY goaf_datareport_time DESC
  2730. LIMIT 1
  2731. 10:54:37.777 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:54:37 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT *
  2732. FROM goaf_sensor
  2733. where oc_id = 406283
  2734. AND goaf_dev_name = 'machinery'
  2735. 10:54:37.782 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:54:37 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  2736. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  2737. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  2738. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  2739. f_alarm_temperature, goaf_datareport_time
  2740. FROM goaf_sensordata
  2741. WHERE oc_id = 406283
  2742. AND goaf_sensor_id = 442137
  2743. ORDER BY goaf_datareport_time DESC
  2744. LIMIT 1
  2745. 10:54:37.792 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:54:37 | Time Consuming: 8 ms | Connection: statement-5 | SQL: SELECT *
  2746. FROM goaf_sensor
  2747. where oc_id = 406283
  2748. AND goaf_dev_name = 'compress'
  2749. 10:54:37.798 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:54:37 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  2750. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  2751. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  2752. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  2753. f_alarm_temperature, goaf_datareport_time
  2754. FROM goaf_sensordata
  2755. WHERE oc_id = 406283
  2756. AND goaf_sensor_id = 442135
  2757. ORDER BY goaf_datareport_time DESC
  2758. LIMIT 1
  2759. 10:54:37.805 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:54:37 | Time Consuming: 5 ms | Connection: statement-5 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  2760. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  2761. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  2762. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  2763. f_alarm_temperature, goaf_datareport_time
  2764. FROM goaf_sensordata
  2765. WHERE oc_id = 406283
  2766. AND goaf_sensor_id = 442139
  2767. ORDER BY goaf_datareport_time DESC
  2768. LIMIT 1
  2769. 10:54:41.683 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:54:41 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT 1
  2770. 10:54:41.687 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:54:41 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT count(0) FROM goaf_sensor WHERE oc_id = 406283
  2771. 10:54:41.691 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:54:41 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT *
  2772. FROM goaf_sensor
  2773. where oc_id = 406283
  2774. LIMIT 10
  2775. 10:54:42.744 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:54:42 | Time Consuming: 5011 ms | Connection: statement-6 | SQL: SELECT 1
  2776. 10:54:42.748 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:54:42 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT 1
  2777. 10:54:42.756 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:54:42 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT *
  2778. FROM goaf_devinfo
  2779. where oc_id = 406283
  2780. 10:54:42.767 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:54:42 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT *
  2781. FROM goaf_sensor
  2782. where oc_id = 406283
  2783. AND goaf_dev_name = 'other'
  2784. 10:54:42.772 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:54:42 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  2785. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  2786. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  2787. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  2788. f_alarm_temperature, goaf_datareport_time
  2789. FROM goaf_sensordata
  2790. WHERE oc_id = 406283
  2791. AND goaf_sensor_id = 442129
  2792. ORDER BY goaf_datareport_time DESC
  2793. LIMIT 1
  2794. 10:54:42.777 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:54:42 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT *
  2795. FROM goaf_sensor
  2796. where oc_id = 406283
  2797. AND goaf_dev_name = 'waterpump'
  2798. 10:54:42.781 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:54:42 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  2799. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  2800. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  2801. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  2802. f_alarm_temperature, goaf_datareport_time
  2803. FROM goaf_sensordata
  2804. WHERE oc_id = 406283
  2805. AND goaf_sensor_id = 442136
  2806. ORDER BY goaf_datareport_time DESC
  2807. LIMIT 1
  2808. 10:54:42.785 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:54:42 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT *
  2809. FROM goaf_sensor
  2810. where oc_id = 406283
  2811. AND goaf_dev_name = 'machinery'
  2812. 10:54:42.789 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:54:42 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  2813. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  2814. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  2815. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  2816. f_alarm_temperature, goaf_datareport_time
  2817. FROM goaf_sensordata
  2818. WHERE oc_id = 406283
  2819. AND goaf_sensor_id = 442137
  2820. ORDER BY goaf_datareport_time DESC
  2821. LIMIT 1
  2822. 10:54:42.793 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:54:42 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT *
  2823. FROM goaf_sensor
  2824. where oc_id = 406283
  2825. AND goaf_dev_name = 'compress'
  2826. 10:54:42.797 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:54:42 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  2827. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  2828. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  2829. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  2830. f_alarm_temperature, goaf_datareport_time
  2831. FROM goaf_sensordata
  2832. WHERE oc_id = 406283
  2833. AND goaf_sensor_id = 442135
  2834. ORDER BY goaf_datareport_time DESC
  2835. LIMIT 1
  2836. 10:54:42.801 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:54:42 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  2837. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  2838. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  2839. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  2840. f_alarm_temperature, goaf_datareport_time
  2841. FROM goaf_sensordata
  2842. WHERE oc_id = 406283
  2843. AND goaf_sensor_id = 442139
  2844. ORDER BY goaf_datareport_time DESC
  2845. LIMIT 1
  2846. 10:54:45.088 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:54:45 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT 1
  2847. 10:54:45.096 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:54:45 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT count(0) FROM goaf_devinfo WHERE oc_id = 406283
  2848. 10:54:45.100 [XNIO-1 task-3] INFO p6spy - 2023-08-25 10:54:45 | Time Consuming: 2 ms | Connection: statement-5 | SQL: SELECT *
  2849. FROM goaf_devinfo
  2850. where oc_id = 406283
  2851. LIMIT 10
  2852. 10:54:50.087 [XNIO-1 task-4] INFO p6spy - 2023-08-25 10:54:50 | Time Consuming: 5002 ms | Connection: statement-8 | SQL: SELECT 1
  2853. 10:54:50.088 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:54:50 | Time Consuming: 5002 ms | Connection: statement-7 | SQL: SELECT 1
  2854. 10:54:50.092 [XNIO-1 task-4] INFO p6spy - 2023-08-25 10:54:50 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT 1
  2855. 10:54:50.100 [XNIO-1 task-4] INFO p6spy - 2023-08-25 10:54:50 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT *
  2856. FROM goaf_baseinfo
  2857. WHERE oc_id = 406283
  2858. 10:54:52.240 [XNIO-1 task-4] INFO p6spy - 2023-08-25 10:54:52 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT 1
  2859. 10:54:52.248 [XNIO-1 task-4] INFO p6spy - 2023-08-25 10:54:52 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT count(0) FROM goaf_sensordata WHERE oc_id = 406283
  2860. 10:54:52.484 [XNIO-1 task-4] INFO p6spy - 2023-08-25 10:54:52 | Time Consuming: 234 ms | Connection: statement-5 | SQL: SELECT *
  2861. FROM goaf_sensordata
  2862. WHERE oc_id = 406283
  2863. ORDER BY goaf_datareport_time DESC
  2864. LIMIT 10
  2865. 10:54:55.092 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:54:55 | Time Consuming: 5002 ms | Connection: statement-9 | SQL: SELECT 1
  2866. 10:54:55.097 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:54:55 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT 1
  2867. 10:54:55.104 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:54:55 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT *
  2868. FROM goaf_syscfg
  2869. WHERE oc_id = 406283
  2870. 10:54:59.270 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:54:59 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT 1
  2871. 10:54:59.279 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:54:59 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT count(0) FROM goaf_sensordata WHERE oc_id = 406283
  2872. 10:54:59.518 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:54:59 | Time Consuming: 238 ms | Connection: statement-5 | SQL: SELECT *
  2873. FROM goaf_sensordata
  2874. WHERE oc_id = 406283
  2875. ORDER BY goaf_datareport_time DESC
  2876. LIMIT 10
  2877. 10:55:03.272 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:55:03 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT 1
  2878. 10:55:03.298 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:55:03 | Time Consuming: 19 ms | Connection: statement-5 | SQL: SELECT count(0) FROM goaf_sensordata WHERE oc_id = 406283
  2879. 10:55:03.558 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:55:03 | Time Consuming: 258 ms | Connection: statement-5 | SQL: SELECT *
  2880. FROM goaf_sensordata
  2881. WHERE oc_id = 406283
  2882. ORDER BY goaf_datareport_time DESC
  2883. LIMIT 10
  2884. 10:55:49.554 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:55:49 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT 1
  2885. 10:55:49.562 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:55:49 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT *
  2886. FROM goaf_devinfo
  2887. where oc_id = 406283
  2888. 10:55:49.580 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:55:49 | Time Consuming: 8 ms | Connection: statement-5 | SQL: SELECT *
  2889. FROM goaf_sensor
  2890. where oc_id = 406283
  2891. AND goaf_dev_name = 'other'
  2892. 10:55:49.586 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:55:49 | Time Consuming: 5 ms | Connection: statement-5 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  2893. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  2894. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  2895. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  2896. f_alarm_temperature, goaf_datareport_time
  2897. FROM goaf_sensordata
  2898. WHERE oc_id = 406283
  2899. AND goaf_sensor_id = 442129
  2900. ORDER BY goaf_datareport_time DESC
  2901. LIMIT 1
  2902. 10:55:49.591 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:55:49 | Time Consuming: 5 ms | Connection: statement-5 | SQL: SELECT *
  2903. FROM goaf_sensor
  2904. where oc_id = 406283
  2905. AND goaf_dev_name = 'waterpump'
  2906. 10:55:49.598 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:55:49 | Time Consuming: 5 ms | Connection: statement-5 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  2907. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  2908. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  2909. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  2910. f_alarm_temperature, goaf_datareport_time
  2911. FROM goaf_sensordata
  2912. WHERE oc_id = 406283
  2913. AND goaf_sensor_id = 442136
  2914. ORDER BY goaf_datareport_time DESC
  2915. LIMIT 1
  2916. 10:55:49.603 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:55:49 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT *
  2917. FROM goaf_sensor
  2918. where oc_id = 406283
  2919. AND goaf_dev_name = 'machinery'
  2920. 10:55:49.608 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:55:49 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  2921. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  2922. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  2923. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  2924. f_alarm_temperature, goaf_datareport_time
  2925. FROM goaf_sensordata
  2926. WHERE oc_id = 406283
  2927. AND goaf_sensor_id = 442137
  2928. ORDER BY goaf_datareport_time DESC
  2929. LIMIT 1
  2930. 10:55:49.614 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:55:49 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT *
  2931. FROM goaf_sensor
  2932. where oc_id = 406283
  2933. AND goaf_dev_name = 'compress'
  2934. 10:55:49.618 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:55:49 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  2935. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  2936. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  2937. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  2938. f_alarm_temperature, goaf_datareport_time
  2939. FROM goaf_sensordata
  2940. WHERE oc_id = 406283
  2941. AND goaf_sensor_id = 442135
  2942. ORDER BY goaf_datareport_time DESC
  2943. LIMIT 1
  2944. 10:55:49.624 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:55:49 | Time Consuming: 5 ms | Connection: statement-5 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  2945. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  2946. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  2947. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  2948. f_alarm_temperature, goaf_datareport_time
  2949. FROM goaf_sensordata
  2950. WHERE oc_id = 406283
  2951. AND goaf_sensor_id = 442139
  2952. ORDER BY goaf_datareport_time DESC
  2953. LIMIT 1
  2954. 10:56:44.998 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:56:44 | Time Consuming: 10 ms | Connection: statement-5 | SQL: SELECT 1
  2955. 10:56:45.008 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:56:45 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT *
  2956. FROM goaf_devinfo
  2957. where oc_id = 406283
  2958. 10:56:45.019 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:56:45 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT *
  2959. FROM goaf_sensor
  2960. where oc_id = 406283
  2961. AND goaf_dev_name = 'other'
  2962. 10:56:45.024 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:56:45 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  2963. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  2964. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  2965. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  2966. f_alarm_temperature, goaf_datareport_time
  2967. FROM goaf_sensordata
  2968. WHERE oc_id = 406283
  2969. AND goaf_sensor_id = 442129
  2970. ORDER BY goaf_datareport_time DESC
  2971. LIMIT 1
  2972. 10:56:45.029 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:56:45 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT *
  2973. FROM goaf_sensor
  2974. where oc_id = 406283
  2975. AND goaf_dev_name = 'waterpump'
  2976. 10:56:45.035 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:56:45 | Time Consuming: 5 ms | Connection: statement-5 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  2977. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  2978. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  2979. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  2980. f_alarm_temperature, goaf_datareport_time
  2981. FROM goaf_sensordata
  2982. WHERE oc_id = 406283
  2983. AND goaf_sensor_id = 442136
  2984. ORDER BY goaf_datareport_time DESC
  2985. LIMIT 1
  2986. 10:56:45.040 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:56:45 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT *
  2987. FROM goaf_sensor
  2988. where oc_id = 406283
  2989. AND goaf_dev_name = 'machinery'
  2990. 10:56:45.046 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:56:45 | Time Consuming: 6 ms | Connection: statement-5 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  2991. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  2992. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  2993. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  2994. f_alarm_temperature, goaf_datareport_time
  2995. FROM goaf_sensordata
  2996. WHERE oc_id = 406283
  2997. AND goaf_sensor_id = 442137
  2998. ORDER BY goaf_datareport_time DESC
  2999. LIMIT 1
  3000. 10:56:45.051 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:56:45 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT *
  3001. FROM goaf_sensor
  3002. where oc_id = 406283
  3003. AND goaf_dev_name = 'compress'
  3004. 10:56:45.055 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:56:45 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  3005. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  3006. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  3007. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  3008. f_alarm_temperature, goaf_datareport_time
  3009. FROM goaf_sensordata
  3010. WHERE oc_id = 406283
  3011. AND goaf_sensor_id = 442135
  3012. ORDER BY goaf_datareport_time DESC
  3013. LIMIT 1
  3014. 10:56:45.060 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:56:45 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  3015. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  3016. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  3017. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  3018. f_alarm_temperature, goaf_datareport_time
  3019. FROM goaf_sensordata
  3020. WHERE oc_id = 406283
  3021. AND goaf_sensor_id = 442139
  3022. ORDER BY goaf_datareport_time DESC
  3023. LIMIT 1
  3024. 10:57:16.508 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:57:16 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT 1
  3025. 10:57:16.515 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:57:16 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT *
  3026. FROM goaf_devinfo
  3027. where oc_id = 406283
  3028. 10:57:16.526 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:57:16 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT *
  3029. FROM goaf_sensor
  3030. where oc_id = 406283
  3031. AND goaf_dev_name = 'other'
  3032. 10:57:16.531 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:57:16 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  3033. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  3034. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  3035. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  3036. f_alarm_temperature, goaf_datareport_time
  3037. FROM goaf_sensordata
  3038. WHERE oc_id = 406283
  3039. AND goaf_sensor_id = 442129
  3040. ORDER BY goaf_datareport_time DESC
  3041. LIMIT 1
  3042. 10:57:16.537 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:57:16 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT *
  3043. FROM goaf_sensor
  3044. where oc_id = 406283
  3045. AND goaf_dev_name = 'waterpump'
  3046. 10:57:16.540 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:57:16 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  3047. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  3048. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  3049. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  3050. f_alarm_temperature, goaf_datareport_time
  3051. FROM goaf_sensordata
  3052. WHERE oc_id = 406283
  3053. AND goaf_sensor_id = 442136
  3054. ORDER BY goaf_datareport_time DESC
  3055. LIMIT 1
  3056. 10:57:16.545 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:57:16 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT *
  3057. FROM goaf_sensor
  3058. where oc_id = 406283
  3059. AND goaf_dev_name = 'machinery'
  3060. 10:57:16.550 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:57:16 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  3061. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  3062. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  3063. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  3064. f_alarm_temperature, goaf_datareport_time
  3065. FROM goaf_sensordata
  3066. WHERE oc_id = 406283
  3067. AND goaf_sensor_id = 442137
  3068. ORDER BY goaf_datareport_time DESC
  3069. LIMIT 1
  3070. 10:57:16.554 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:57:16 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT *
  3071. FROM goaf_sensor
  3072. where oc_id = 406283
  3073. AND goaf_dev_name = 'compress'
  3074. 10:57:16.558 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:57:16 | Time Consuming: 3 ms | Connection: statement-5 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  3075. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  3076. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  3077. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  3078. f_alarm_temperature, goaf_datareport_time
  3079. FROM goaf_sensordata
  3080. WHERE oc_id = 406283
  3081. AND goaf_sensor_id = 442135
  3082. ORDER BY goaf_datareport_time DESC
  3083. LIMIT 1
  3084. 10:57:16.565 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:57:16 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  3085. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  3086. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  3087. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  3088. f_alarm_temperature, goaf_datareport_time
  3089. FROM goaf_sensordata
  3090. WHERE oc_id = 406283
  3091. AND goaf_sensor_id = 442139
  3092. ORDER BY goaf_datareport_time DESC
  3093. LIMIT 1
  3094. 10:57:19.395 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:57:19 | Time Consuming: 4 ms | Connection: statement-10 | SQL: SELECT 1
  3095. 10:57:19.403 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:57:19 | Time Consuming: 3 ms | Connection: statement-10 | SQL: SELECT *
  3096. FROM goaf_devinfo
  3097. where oc_id = 406283
  3098. 10:57:19.418 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:57:19 | Time Consuming: 6 ms | Connection: statement-10 | SQL: SELECT *
  3099. FROM goaf_sensor
  3100. where oc_id = 406283
  3101. AND goaf_dev_name = 'other'
  3102. 10:57:19.423 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:57:19 | Time Consuming: 5 ms | Connection: statement-10 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  3103. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  3104. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  3105. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  3106. f_alarm_temperature, goaf_datareport_time
  3107. FROM goaf_sensordata
  3108. WHERE oc_id = 406283
  3109. AND goaf_sensor_id = 442129
  3110. ORDER BY goaf_datareport_time DESC
  3111. LIMIT 1
  3112. 10:57:19.428 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:57:19 | Time Consuming: 3 ms | Connection: statement-10 | SQL: SELECT *
  3113. FROM goaf_sensor
  3114. where oc_id = 406283
  3115. AND goaf_dev_name = 'waterpump'
  3116. 10:57:19.432 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:57:19 | Time Consuming: 3 ms | Connection: statement-10 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  3117. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  3118. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  3119. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  3120. f_alarm_temperature, goaf_datareport_time
  3121. FROM goaf_sensordata
  3122. WHERE oc_id = 406283
  3123. AND goaf_sensor_id = 442136
  3124. ORDER BY goaf_datareport_time DESC
  3125. LIMIT 1
  3126. 10:57:19.436 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:57:19 | Time Consuming: 3 ms | Connection: statement-10 | SQL: SELECT *
  3127. FROM goaf_sensor
  3128. where oc_id = 406283
  3129. AND goaf_dev_name = 'machinery'
  3130. 10:57:19.442 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:57:19 | Time Consuming: 5 ms | Connection: statement-10 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  3131. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  3132. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  3133. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  3134. f_alarm_temperature, goaf_datareport_time
  3135. FROM goaf_sensordata
  3136. WHERE oc_id = 406283
  3137. AND goaf_sensor_id = 442137
  3138. ORDER BY goaf_datareport_time DESC
  3139. LIMIT 1
  3140. 10:57:19.446 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:57:19 | Time Consuming: 3 ms | Connection: statement-10 | SQL: SELECT *
  3141. FROM goaf_sensor
  3142. where oc_id = 406283
  3143. AND goaf_dev_name = 'compress'
  3144. 10:57:19.454 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:57:19 | Time Consuming: 7 ms | Connection: statement-10 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  3145. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  3146. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  3147. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  3148. f_alarm_temperature, goaf_datareport_time
  3149. FROM goaf_sensordata
  3150. WHERE oc_id = 406283
  3151. AND goaf_sensor_id = 442135
  3152. ORDER BY goaf_datareport_time DESC
  3153. LIMIT 1
  3154. 10:57:19.458 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:57:19 | Time Consuming: 3 ms | Connection: statement-10 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  3155. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  3156. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  3157. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  3158. f_alarm_temperature, goaf_datareport_time
  3159. FROM goaf_sensordata
  3160. WHERE oc_id = 406283
  3161. AND goaf_sensor_id = 442139
  3162. ORDER BY goaf_datareport_time DESC
  3163. LIMIT 1
  3164. 10:59:48.073 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:59:48 | Time Consuming: 4 ms | Connection: statement-10 | SQL: SELECT 1
  3165. 10:59:48.084 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:59:48 | Time Consuming: 5 ms | Connection: statement-10 | SQL: SELECT *
  3166. FROM goaf_devinfo
  3167. where oc_id = 406283
  3168. 10:59:48.099 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:59:48 | Time Consuming: 5 ms | Connection: statement-10 | SQL: SELECT *
  3169. FROM goaf_sensor
  3170. where oc_id = 406283
  3171. AND goaf_dev_name = 'other'
  3172. 10:59:48.105 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:59:48 | Time Consuming: 5 ms | Connection: statement-10 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  3173. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  3174. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  3175. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  3176. f_alarm_temperature, goaf_datareport_time
  3177. FROM goaf_sensordata
  3178. WHERE oc_id = 406283
  3179. AND goaf_sensor_id = 442129
  3180. ORDER BY goaf_datareport_time DESC
  3181. LIMIT 1
  3182. 10:59:48.112 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:59:48 | Time Consuming: 5 ms | Connection: statement-10 | SQL: SELECT *
  3183. FROM goaf_sensor
  3184. where oc_id = 406283
  3185. AND goaf_dev_name = 'waterpump'
  3186. 10:59:48.120 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:59:48 | Time Consuming: 6 ms | Connection: statement-10 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  3187. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  3188. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  3189. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  3190. f_alarm_temperature, goaf_datareport_time
  3191. FROM goaf_sensordata
  3192. WHERE oc_id = 406283
  3193. AND goaf_sensor_id = 442136
  3194. ORDER BY goaf_datareport_time DESC
  3195. LIMIT 1
  3196. 10:59:48.125 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:59:48 | Time Consuming: 4 ms | Connection: statement-10 | SQL: SELECT *
  3197. FROM goaf_sensor
  3198. where oc_id = 406283
  3199. AND goaf_dev_name = 'machinery'
  3200. 10:59:48.131 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:59:48 | Time Consuming: 5 ms | Connection: statement-10 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  3201. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  3202. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  3203. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  3204. f_alarm_temperature, goaf_datareport_time
  3205. FROM goaf_sensordata
  3206. WHERE oc_id = 406283
  3207. AND goaf_sensor_id = 442137
  3208. ORDER BY goaf_datareport_time DESC
  3209. LIMIT 1
  3210. 10:59:48.135 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:59:48 | Time Consuming: 3 ms | Connection: statement-10 | SQL: SELECT *
  3211. FROM goaf_sensor
  3212. where oc_id = 406283
  3213. AND goaf_dev_name = 'compress'
  3214. 10:59:48.141 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:59:48 | Time Consuming: 5 ms | Connection: statement-10 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  3215. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  3216. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  3217. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  3218. f_alarm_temperature, goaf_datareport_time
  3219. FROM goaf_sensordata
  3220. WHERE oc_id = 406283
  3221. AND goaf_sensor_id = 442135
  3222. ORDER BY goaf_datareport_time DESC
  3223. LIMIT 1
  3224. 10:59:48.146 [XNIO-1 task-2] INFO p6spy - 2023-08-25 10:59:48 | Time Consuming: 3 ms | Connection: statement-10 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  3225. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  3226. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  3227. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  3228. f_alarm_temperature, goaf_datareport_time
  3229. FROM goaf_sensordata
  3230. WHERE oc_id = 406283
  3231. AND goaf_sensor_id = 442139
  3232. ORDER BY goaf_datareport_time DESC
  3233. LIMIT 1
  3234. 11:00:57.406 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:00:57 | Time Consuming: 11 ms | Connection: statement-10 | SQL: SELECT 1
  3235. 11:00:57.417 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:00:57 | Time Consuming: 5 ms | Connection: statement-10 | SQL: SELECT *
  3236. FROM goaf_devinfo
  3237. where oc_id = 406283
  3238. 11:00:57.433 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:00:57 | Time Consuming: 4 ms | Connection: statement-10 | SQL: SELECT *
  3239. FROM goaf_sensor
  3240. where oc_id = 406283
  3241. AND goaf_dev_name = 'other'
  3242. 11:00:57.440 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:00:57 | Time Consuming: 5 ms | Connection: statement-10 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  3243. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  3244. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  3245. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  3246. f_alarm_temperature, goaf_datareport_time
  3247. FROM goaf_sensordata
  3248. WHERE oc_id = 406283
  3249. AND goaf_sensor_id = 442129
  3250. ORDER BY goaf_datareport_time DESC
  3251. LIMIT 1
  3252. 11:00:57.445 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:00:57 | Time Consuming: 4 ms | Connection: statement-10 | SQL: SELECT *
  3253. FROM goaf_sensor
  3254. where oc_id = 406283
  3255. AND goaf_dev_name = 'waterpump'
  3256. 11:00:57.449 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:00:57 | Time Consuming: 4 ms | Connection: statement-10 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  3257. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  3258. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  3259. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  3260. f_alarm_temperature, goaf_datareport_time
  3261. FROM goaf_sensordata
  3262. WHERE oc_id = 406283
  3263. AND goaf_sensor_id = 442136
  3264. ORDER BY goaf_datareport_time DESC
  3265. LIMIT 1
  3266. 11:00:57.453 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:00:57 | Time Consuming: 3 ms | Connection: statement-10 | SQL: SELECT *
  3267. FROM goaf_sensor
  3268. where oc_id = 406283
  3269. AND goaf_dev_name = 'machinery'
  3270. 11:00:57.457 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:00:57 | Time Consuming: 3 ms | Connection: statement-10 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  3271. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  3272. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  3273. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  3274. f_alarm_temperature, goaf_datareport_time
  3275. FROM goaf_sensordata
  3276. WHERE oc_id = 406283
  3277. AND goaf_sensor_id = 442137
  3278. ORDER BY goaf_datareport_time DESC
  3279. LIMIT 1
  3280. 11:00:57.461 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:00:57 | Time Consuming: 3 ms | Connection: statement-10 | SQL: SELECT *
  3281. FROM goaf_sensor
  3282. where oc_id = 406283
  3283. AND goaf_dev_name = 'compress'
  3284. 11:00:57.465 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:00:57 | Time Consuming: 3 ms | Connection: statement-10 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  3285. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  3286. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  3287. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  3288. f_alarm_temperature, goaf_datareport_time
  3289. FROM goaf_sensordata
  3290. WHERE oc_id = 406283
  3291. AND goaf_sensor_id = 442135
  3292. ORDER BY goaf_datareport_time DESC
  3293. LIMIT 1
  3294. 11:00:57.469 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:00:57 | Time Consuming: 3 ms | Connection: statement-10 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  3295. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  3296. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  3297. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  3298. f_alarm_temperature, goaf_datareport_time
  3299. FROM goaf_sensordata
  3300. WHERE oc_id = 406283
  3301. AND goaf_sensor_id = 442139
  3302. ORDER BY goaf_datareport_time DESC
  3303. LIMIT 1
  3304. 11:01:08.918 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:01:08 | Time Consuming: 4 ms | Connection: statement-10 | SQL: SELECT 1
  3305. 11:01:08.928 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:01:08 | Time Consuming: 4 ms | Connection: statement-10 | SQL: SELECT *
  3306. FROM goaf_devinfo
  3307. where oc_id = 406283
  3308. 11:01:08.941 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:01:08 | Time Consuming: 4 ms | Connection: statement-10 | SQL: SELECT *
  3309. FROM goaf_sensor
  3310. where oc_id = 406283
  3311. AND goaf_dev_name = 'other'
  3312. 11:01:08.947 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:01:08 | Time Consuming: 5 ms | Connection: statement-10 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  3313. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  3314. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  3315. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  3316. f_alarm_temperature, goaf_datareport_time
  3317. FROM goaf_sensordata
  3318. WHERE oc_id = 406283
  3319. AND goaf_sensor_id = 442129
  3320. ORDER BY goaf_datareport_time DESC
  3321. LIMIT 1
  3322. 11:01:08.951 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:01:08 | Time Consuming: 3 ms | Connection: statement-10 | SQL: SELECT *
  3323. FROM goaf_sensor
  3324. where oc_id = 406283
  3325. AND goaf_dev_name = 'waterpump'
  3326. 11:01:08.956 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:01:08 | Time Consuming: 4 ms | Connection: statement-10 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  3327. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  3328. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  3329. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  3330. f_alarm_temperature, goaf_datareport_time
  3331. FROM goaf_sensordata
  3332. WHERE oc_id = 406283
  3333. AND goaf_sensor_id = 442136
  3334. ORDER BY goaf_datareport_time DESC
  3335. LIMIT 1
  3336. 11:01:08.964 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:01:08 | Time Consuming: 7 ms | Connection: statement-10 | SQL: SELECT *
  3337. FROM goaf_sensor
  3338. where oc_id = 406283
  3339. AND goaf_dev_name = 'machinery'
  3340. 11:01:08.969 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:01:08 | Time Consuming: 4 ms | Connection: statement-10 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  3341. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  3342. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  3343. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  3344. f_alarm_temperature, goaf_datareport_time
  3345. FROM goaf_sensordata
  3346. WHERE oc_id = 406283
  3347. AND goaf_sensor_id = 442137
  3348. ORDER BY goaf_datareport_time DESC
  3349. LIMIT 1
  3350. 11:01:08.975 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:01:08 | Time Consuming: 5 ms | Connection: statement-10 | SQL: SELECT *
  3351. FROM goaf_sensor
  3352. where oc_id = 406283
  3353. AND goaf_dev_name = 'compress'
  3354. 11:01:08.980 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:01:08 | Time Consuming: 4 ms | Connection: statement-10 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  3355. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  3356. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  3357. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  3358. f_alarm_temperature, goaf_datareport_time
  3359. FROM goaf_sensordata
  3360. WHERE oc_id = 406283
  3361. AND goaf_sensor_id = 442135
  3362. ORDER BY goaf_datareport_time DESC
  3363. LIMIT 1
  3364. 11:01:08.986 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:01:08 | Time Consuming: 4 ms | Connection: statement-10 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  3365. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  3366. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  3367. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  3368. f_alarm_temperature, goaf_datareport_time
  3369. FROM goaf_sensordata
  3370. WHERE oc_id = 406283
  3371. AND goaf_sensor_id = 442139
  3372. ORDER BY goaf_datareport_time DESC
  3373. LIMIT 1
  3374. 11:03:09.773 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:03:09 | Time Consuming: 5001 ms | Connection: statement-11 | SQL: SELECT 1
  3375. 11:03:14.775 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:03:14 | Time Consuming: 5001 ms | Connection: statement-14 | SQL: SELECT 1
  3376. 11:03:19.778 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:03:19 | Time Consuming: 5001 ms | Connection: statement-15 | SQL: SELECT 1
  3377. 11:03:19.783 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:03:19 | Time Consuming: 4 ms | Connection: statement-16 | SQL: SELECT 1
  3378. 11:03:19.794 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:03:19 | Time Consuming: 5 ms | Connection: statement-16 | SQL: SELECT *
  3379. FROM goaf_devinfo
  3380. where oc_id = 406283
  3381. 11:03:19.810 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:03:19 | Time Consuming: 4 ms | Connection: statement-16 | SQL: SELECT *
  3382. FROM goaf_sensor
  3383. where oc_id = 406283
  3384. AND goaf_dev_name = 'other'
  3385. 11:03:19.818 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:03:19 | Time Consuming: 7 ms | Connection: statement-16 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  3386. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  3387. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  3388. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  3389. f_alarm_temperature, goaf_datareport_time
  3390. FROM goaf_sensordata
  3391. WHERE oc_id = 406283
  3392. AND goaf_sensor_id = 442129
  3393. ORDER BY goaf_datareport_time DESC
  3394. LIMIT 1
  3395. 11:03:19.824 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:03:19 | Time Consuming: 5 ms | Connection: statement-16 | SQL: SELECT *
  3396. FROM goaf_sensor
  3397. where oc_id = 406283
  3398. AND goaf_dev_name = 'waterpump'
  3399. 11:03:19.830 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:03:19 | Time Consuming: 5 ms | Connection: statement-16 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  3400. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  3401. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  3402. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  3403. f_alarm_temperature, goaf_datareport_time
  3404. FROM goaf_sensordata
  3405. WHERE oc_id = 406283
  3406. AND goaf_sensor_id = 442136
  3407. ORDER BY goaf_datareport_time DESC
  3408. LIMIT 1
  3409. 11:03:19.835 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:03:19 | Time Consuming: 4 ms | Connection: statement-16 | SQL: SELECT *
  3410. FROM goaf_sensor
  3411. where oc_id = 406283
  3412. AND goaf_dev_name = 'machinery'
  3413. 11:03:19.839 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:03:19 | Time Consuming: 4 ms | Connection: statement-16 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  3414. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  3415. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  3416. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  3417. f_alarm_temperature, goaf_datareport_time
  3418. FROM goaf_sensordata
  3419. WHERE oc_id = 406283
  3420. AND goaf_sensor_id = 442137
  3421. ORDER BY goaf_datareport_time DESC
  3422. LIMIT 1
  3423. 11:03:19.843 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:03:19 | Time Consuming: 3 ms | Connection: statement-16 | SQL: SELECT *
  3424. FROM goaf_sensor
  3425. where oc_id = 406283
  3426. AND goaf_dev_name = 'compress'
  3427. 11:03:19.848 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:03:19 | Time Consuming: 3 ms | Connection: statement-16 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  3428. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  3429. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  3430. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  3431. f_alarm_temperature, goaf_datareport_time
  3432. FROM goaf_sensordata
  3433. WHERE oc_id = 406283
  3434. AND goaf_sensor_id = 442135
  3435. ORDER BY goaf_datareport_time DESC
  3436. LIMIT 1
  3437. 11:03:19.852 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:03:19 | Time Consuming: 4 ms | Connection: statement-16 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  3438. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  3439. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  3440. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  3441. f_alarm_temperature, goaf_datareport_time
  3442. FROM goaf_sensordata
  3443. WHERE oc_id = 406283
  3444. AND goaf_sensor_id = 442139
  3445. ORDER BY goaf_datareport_time DESC
  3446. LIMIT 1
  3447. 11:04:16.302 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:04:16 | Time Consuming: 3 ms | Connection: statement-16 | SQL: SELECT 1
  3448. 11:04:16.310 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:04:16 | Time Consuming: 3 ms | Connection: statement-16 | SQL: SELECT *
  3449. FROM goaf_devinfo
  3450. where oc_id = 406283
  3451. 11:04:16.322 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:04:16 | Time Consuming: 3 ms | Connection: statement-16 | SQL: SELECT *
  3452. FROM goaf_sensor
  3453. where oc_id = 406283
  3454. AND goaf_dev_name = 'other'
  3455. 11:04:16.326 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:04:16 | Time Consuming: 4 ms | Connection: statement-16 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  3456. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  3457. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  3458. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  3459. f_alarm_temperature, goaf_datareport_time
  3460. FROM goaf_sensordata
  3461. WHERE oc_id = 406283
  3462. AND goaf_sensor_id = 442129
  3463. ORDER BY goaf_datareport_time DESC
  3464. LIMIT 1
  3465. 11:04:16.330 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:04:16 | Time Consuming: 3 ms | Connection: statement-16 | SQL: SELECT *
  3466. FROM goaf_sensor
  3467. where oc_id = 406283
  3468. AND goaf_dev_name = 'waterpump'
  3469. 11:04:16.334 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:04:16 | Time Consuming: 4 ms | Connection: statement-16 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  3470. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  3471. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  3472. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  3473. f_alarm_temperature, goaf_datareport_time
  3474. FROM goaf_sensordata
  3475. WHERE oc_id = 406283
  3476. AND goaf_sensor_id = 442136
  3477. ORDER BY goaf_datareport_time DESC
  3478. LIMIT 1
  3479. 11:04:16.338 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:04:16 | Time Consuming: 3 ms | Connection: statement-16 | SQL: SELECT *
  3480. FROM goaf_sensor
  3481. where oc_id = 406283
  3482. AND goaf_dev_name = 'machinery'
  3483. 11:04:16.342 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:04:16 | Time Consuming: 3 ms | Connection: statement-16 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  3484. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  3485. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  3486. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  3487. f_alarm_temperature, goaf_datareport_time
  3488. FROM goaf_sensordata
  3489. WHERE oc_id = 406283
  3490. AND goaf_sensor_id = 442137
  3491. ORDER BY goaf_datareport_time DESC
  3492. LIMIT 1
  3493. 11:04:16.347 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:04:16 | Time Consuming: 4 ms | Connection: statement-16 | SQL: SELECT *
  3494. FROM goaf_sensor
  3495. where oc_id = 406283
  3496. AND goaf_dev_name = 'compress'
  3497. 11:04:16.355 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:04:16 | Time Consuming: 7 ms | Connection: statement-16 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  3498. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  3499. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  3500. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  3501. f_alarm_temperature, goaf_datareport_time
  3502. FROM goaf_sensordata
  3503. WHERE oc_id = 406283
  3504. AND goaf_sensor_id = 442135
  3505. ORDER BY goaf_datareport_time DESC
  3506. LIMIT 1
  3507. 11:04:16.361 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:04:16 | Time Consuming: 5 ms | Connection: statement-16 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  3508. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  3509. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  3510. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  3511. f_alarm_temperature, goaf_datareport_time
  3512. FROM goaf_sensordata
  3513. WHERE oc_id = 406283
  3514. AND goaf_sensor_id = 442139
  3515. ORDER BY goaf_datareport_time DESC
  3516. LIMIT 1
  3517. 11:05:16.864 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:05:16 | Time Consuming: 4 ms | Connection: statement-16 | SQL: SELECT 1
  3518. 11:05:16.916 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:05:16 | Time Consuming: 46 ms | Connection: statement-16 | SQL: SELECT *
  3519. FROM goaf_devinfo
  3520. where oc_id = 406283
  3521. 11:05:16.932 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:05:16 | Time Consuming: 4 ms | Connection: statement-16 | SQL: SELECT *
  3522. FROM goaf_sensor
  3523. where oc_id = 406283
  3524. AND goaf_dev_name = 'other'
  3525. 11:05:16.982 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:05:16 | Time Consuming: 49 ms | Connection: statement-16 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  3526. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  3527. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  3528. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  3529. f_alarm_temperature, goaf_datareport_time
  3530. FROM goaf_sensordata
  3531. WHERE oc_id = 406283
  3532. AND goaf_sensor_id = 442129
  3533. ORDER BY goaf_datareport_time DESC
  3534. LIMIT 1
  3535. 11:05:16.987 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:05:16 | Time Consuming: 3 ms | Connection: statement-16 | SQL: SELECT *
  3536. FROM goaf_sensor
  3537. where oc_id = 406283
  3538. AND goaf_dev_name = 'waterpump'
  3539. 11:05:16.997 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:05:16 | Time Consuming: 9 ms | Connection: statement-16 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  3540. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  3541. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  3542. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  3543. f_alarm_temperature, goaf_datareport_time
  3544. FROM goaf_sensordata
  3545. WHERE oc_id = 406283
  3546. AND goaf_sensor_id = 442136
  3547. ORDER BY goaf_datareport_time DESC
  3548. LIMIT 1
  3549. 11:05:17.001 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:05:17 | Time Consuming: 3 ms | Connection: statement-16 | SQL: SELECT *
  3550. FROM goaf_sensor
  3551. where oc_id = 406283
  3552. AND goaf_dev_name = 'machinery'
  3553. 11:05:17.007 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:05:17 | Time Consuming: 5 ms | Connection: statement-16 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  3554. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  3555. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  3556. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  3557. f_alarm_temperature, goaf_datareport_time
  3558. FROM goaf_sensordata
  3559. WHERE oc_id = 406283
  3560. AND goaf_sensor_id = 442137
  3561. ORDER BY goaf_datareport_time DESC
  3562. LIMIT 1
  3563. 11:05:17.057 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:05:17 | Time Consuming: 49 ms | Connection: statement-16 | SQL: SELECT *
  3564. FROM goaf_sensor
  3565. where oc_id = 406283
  3566. AND goaf_dev_name = 'compress'
  3567. 11:05:17.069 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:05:17 | Time Consuming: 9 ms | Connection: statement-16 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  3568. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  3569. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  3570. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  3571. f_alarm_temperature, goaf_datareport_time
  3572. FROM goaf_sensordata
  3573. WHERE oc_id = 406283
  3574. AND goaf_sensor_id = 442135
  3575. ORDER BY goaf_datareport_time DESC
  3576. LIMIT 1
  3577. 11:05:17.120 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:05:17 | Time Consuming: 49 ms | Connection: statement-16 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  3578. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  3579. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  3580. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  3581. f_alarm_temperature, goaf_datareport_time
  3582. FROM goaf_sensordata
  3583. WHERE oc_id = 406283
  3584. AND goaf_sensor_id = 442139
  3585. ORDER BY goaf_datareport_time DESC
  3586. LIMIT 1
  3587. 11:06:40.039 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:06:40 | Time Consuming: 4 ms | Connection: statement-16 | SQL: SELECT 1
  3588. 11:06:40.048 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:06:40 | Time Consuming: 4 ms | Connection: statement-16 | SQL: SELECT *
  3589. FROM goaf_devinfo
  3590. where oc_id = 406283
  3591. 11:06:40.058 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:06:40 | Time Consuming: 3 ms | Connection: statement-16 | SQL: SELECT *
  3592. FROM goaf_sensor
  3593. where oc_id = 406283
  3594. AND goaf_dev_name = 'other'
  3595. 11:06:40.063 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:06:40 | Time Consuming: 4 ms | Connection: statement-16 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  3596. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  3597. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  3598. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  3599. f_alarm_temperature, goaf_datareport_time
  3600. FROM goaf_sensordata
  3601. WHERE oc_id = 406283
  3602. AND goaf_sensor_id = 442129
  3603. ORDER BY goaf_datareport_time DESC
  3604. LIMIT 1
  3605. 11:06:40.067 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:06:40 | Time Consuming: 4 ms | Connection: statement-16 | SQL: SELECT *
  3606. FROM goaf_sensor
  3607. where oc_id = 406283
  3608. AND goaf_dev_name = 'waterpump'
  3609. 11:06:40.072 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:06:40 | Time Consuming: 4 ms | Connection: statement-16 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  3610. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  3611. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  3612. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  3613. f_alarm_temperature, goaf_datareport_time
  3614. FROM goaf_sensordata
  3615. WHERE oc_id = 406283
  3616. AND goaf_sensor_id = 442136
  3617. ORDER BY goaf_datareport_time DESC
  3618. LIMIT 1
  3619. 11:06:40.078 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:06:40 | Time Consuming: 5 ms | Connection: statement-16 | SQL: SELECT *
  3620. FROM goaf_sensor
  3621. where oc_id = 406283
  3622. AND goaf_dev_name = 'machinery'
  3623. 11:06:40.083 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:06:40 | Time Consuming: 3 ms | Connection: statement-16 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  3624. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  3625. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  3626. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  3627. f_alarm_temperature, goaf_datareport_time
  3628. FROM goaf_sensordata
  3629. WHERE oc_id = 406283
  3630. AND goaf_sensor_id = 442137
  3631. ORDER BY goaf_datareport_time DESC
  3632. LIMIT 1
  3633. 11:06:40.087 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:06:40 | Time Consuming: 3 ms | Connection: statement-16 | SQL: SELECT *
  3634. FROM goaf_sensor
  3635. where oc_id = 406283
  3636. AND goaf_dev_name = 'compress'
  3637. 11:06:40.092 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:06:40 | Time Consuming: 3 ms | Connection: statement-16 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  3638. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  3639. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  3640. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  3641. f_alarm_temperature, goaf_datareport_time
  3642. FROM goaf_sensordata
  3643. WHERE oc_id = 406283
  3644. AND goaf_sensor_id = 442135
  3645. ORDER BY goaf_datareport_time DESC
  3646. LIMIT 1
  3647. 11:06:40.098 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:06:40 | Time Consuming: 3 ms | Connection: statement-16 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  3648. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  3649. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  3650. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  3651. f_alarm_temperature, goaf_datareport_time
  3652. FROM goaf_sensordata
  3653. WHERE oc_id = 406283
  3654. AND goaf_sensor_id = 442139
  3655. ORDER BY goaf_datareport_time DESC
  3656. LIMIT 1
  3657. 11:07:06.917 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:07:06 | Time Consuming: 4 ms | Connection: statement-16 | SQL: SELECT 1
  3658. 11:07:06.925 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:07:06 | Time Consuming: 3 ms | Connection: statement-16 | SQL: SELECT *
  3659. FROM goaf_devinfo
  3660. where oc_id = 406283
  3661. 11:07:06.935 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:07:06 | Time Consuming: 3 ms | Connection: statement-16 | SQL: SELECT *
  3662. FROM goaf_sensor
  3663. where oc_id = 406283
  3664. AND goaf_dev_name = 'other'
  3665. 11:07:06.940 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:07:06 | Time Consuming: 4 ms | Connection: statement-16 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  3666. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  3667. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  3668. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  3669. f_alarm_temperature, goaf_datareport_time
  3670. FROM goaf_sensordata
  3671. WHERE oc_id = 406283
  3672. AND goaf_sensor_id = 442129
  3673. ORDER BY goaf_datareport_time DESC
  3674. LIMIT 1
  3675. 11:07:06.943 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:07:06 | Time Consuming: 3 ms | Connection: statement-16 | SQL: SELECT *
  3676. FROM goaf_sensor
  3677. where oc_id = 406283
  3678. AND goaf_dev_name = 'waterpump'
  3679. 11:07:06.950 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:07:06 | Time Consuming: 6 ms | Connection: statement-16 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  3680. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  3681. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  3682. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  3683. f_alarm_temperature, goaf_datareport_time
  3684. FROM goaf_sensordata
  3685. WHERE oc_id = 406283
  3686. AND goaf_sensor_id = 442136
  3687. ORDER BY goaf_datareport_time DESC
  3688. LIMIT 1
  3689. 11:07:06.954 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:07:06 | Time Consuming: 3 ms | Connection: statement-16 | SQL: SELECT *
  3690. FROM goaf_sensor
  3691. where oc_id = 406283
  3692. AND goaf_dev_name = 'machinery'
  3693. 11:07:06.959 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:07:06 | Time Consuming: 4 ms | Connection: statement-16 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  3694. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  3695. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  3696. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  3697. f_alarm_temperature, goaf_datareport_time
  3698. FROM goaf_sensordata
  3699. WHERE oc_id = 406283
  3700. AND goaf_sensor_id = 442137
  3701. ORDER BY goaf_datareport_time DESC
  3702. LIMIT 1
  3703. 11:07:06.963 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:07:06 | Time Consuming: 4 ms | Connection: statement-16 | SQL: SELECT *
  3704. FROM goaf_sensor
  3705. where oc_id = 406283
  3706. AND goaf_dev_name = 'compress'
  3707. 11:07:06.970 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:07:06 | Time Consuming: 4 ms | Connection: statement-16 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  3708. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  3709. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  3710. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  3711. f_alarm_temperature, goaf_datareport_time
  3712. FROM goaf_sensordata
  3713. WHERE oc_id = 406283
  3714. AND goaf_sensor_id = 442135
  3715. ORDER BY goaf_datareport_time DESC
  3716. LIMIT 1
  3717. 11:07:06.976 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:07:06 | Time Consuming: 5 ms | Connection: statement-16 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  3718. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  3719. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  3720. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  3721. f_alarm_temperature, goaf_datareport_time
  3722. FROM goaf_sensordata
  3723. WHERE oc_id = 406283
  3724. AND goaf_sensor_id = 442139
  3725. ORDER BY goaf_datareport_time DESC
  3726. LIMIT 1
  3727. 11:07:34.767 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:07:34 | Time Consuming: 3 ms | Connection: statement-16 | SQL: SELECT 1
  3728. 11:07:34.774 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:07:34 | Time Consuming: 3 ms | Connection: statement-16 | SQL: SELECT *
  3729. FROM goaf_devinfo
  3730. where oc_id = 406283
  3731. 11:07:34.785 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:07:34 | Time Consuming: 4 ms | Connection: statement-16 | SQL: SELECT *
  3732. FROM goaf_sensor
  3733. where oc_id = 406283
  3734. AND goaf_dev_name = 'other'
  3735. 11:07:34.790 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:07:34 | Time Consuming: 3 ms | Connection: statement-16 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  3736. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  3737. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  3738. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  3739. f_alarm_temperature, goaf_datareport_time
  3740. FROM goaf_sensordata
  3741. WHERE oc_id = 406283
  3742. AND goaf_sensor_id = 442129
  3743. ORDER BY goaf_datareport_time DESC
  3744. LIMIT 1
  3745. 11:07:34.794 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:07:34 | Time Consuming: 3 ms | Connection: statement-16 | SQL: SELECT *
  3746. FROM goaf_sensor
  3747. where oc_id = 406283
  3748. AND goaf_dev_name = 'waterpump'
  3749. 11:07:34.799 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:07:34 | Time Consuming: 3 ms | Connection: statement-16 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  3750. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  3751. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  3752. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  3753. f_alarm_temperature, goaf_datareport_time
  3754. FROM goaf_sensordata
  3755. WHERE oc_id = 406283
  3756. AND goaf_sensor_id = 442136
  3757. ORDER BY goaf_datareport_time DESC
  3758. LIMIT 1
  3759. 11:07:34.803 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:07:34 | Time Consuming: 3 ms | Connection: statement-16 | SQL: SELECT *
  3760. FROM goaf_sensor
  3761. where oc_id = 406283
  3762. AND goaf_dev_name = 'machinery'
  3763. 11:07:34.807 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:07:34 | Time Consuming: 3 ms | Connection: statement-16 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  3764. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  3765. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  3766. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  3767. f_alarm_temperature, goaf_datareport_time
  3768. FROM goaf_sensordata
  3769. WHERE oc_id = 406283
  3770. AND goaf_sensor_id = 442137
  3771. ORDER BY goaf_datareport_time DESC
  3772. LIMIT 1
  3773. 11:07:34.811 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:07:34 | Time Consuming: 3 ms | Connection: statement-16 | SQL: SELECT *
  3774. FROM goaf_sensor
  3775. where oc_id = 406283
  3776. AND goaf_dev_name = 'compress'
  3777. 11:07:34.815 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:07:34 | Time Consuming: 3 ms | Connection: statement-16 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  3778. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  3779. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  3780. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  3781. f_alarm_temperature, goaf_datareport_time
  3782. FROM goaf_sensordata
  3783. WHERE oc_id = 406283
  3784. AND goaf_sensor_id = 442135
  3785. ORDER BY goaf_datareport_time DESC
  3786. LIMIT 1
  3787. 11:07:34.819 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:07:34 | Time Consuming: 4 ms | Connection: statement-16 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  3788. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  3789. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  3790. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  3791. f_alarm_temperature, goaf_datareport_time
  3792. FROM goaf_sensordata
  3793. WHERE oc_id = 406283
  3794. AND goaf_sensor_id = 442139
  3795. ORDER BY goaf_datareport_time DESC
  3796. LIMIT 1
  3797. 11:07:38.578 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:07:38 | Time Consuming: 3 ms | Connection: statement-16 | SQL: SELECT 1
  3798. 11:07:38.595 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:07:38 | Time Consuming: 13 ms | Connection: statement-16 | SQL: SELECT td_wave_value_x, td_wave_value_y, td_wave_value_z
  3799. FROM goaf_sensordata
  3800. WHERE goaf_data_id = 442169
  3801. 11:08:23.952 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:08:23 | Time Consuming: 3 ms | Connection: statement-16 | SQL: SELECT 1
  3802. 11:08:23.960 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:08:23 | Time Consuming: 3 ms | Connection: statement-16 | SQL: SELECT *
  3803. FROM goaf_devinfo
  3804. where oc_id = 406283
  3805. 11:08:23.973 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:08:23 | Time Consuming: 4 ms | Connection: statement-16 | SQL: SELECT *
  3806. FROM goaf_sensor
  3807. where oc_id = 406283
  3808. AND goaf_dev_name = 'other'
  3809. 11:08:23.978 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:08:23 | Time Consuming: 4 ms | Connection: statement-16 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  3810. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  3811. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  3812. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  3813. f_alarm_temperature, goaf_datareport_time
  3814. FROM goaf_sensordata
  3815. WHERE oc_id = 406283
  3816. AND goaf_sensor_id = 442129
  3817. ORDER BY goaf_datareport_time DESC
  3818. LIMIT 1
  3819. 11:08:23.982 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:08:23 | Time Consuming: 3 ms | Connection: statement-16 | SQL: SELECT *
  3820. FROM goaf_sensor
  3821. where oc_id = 406283
  3822. AND goaf_dev_name = 'waterpump'
  3823. 11:08:23.987 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:08:23 | Time Consuming: 3 ms | Connection: statement-16 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  3824. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  3825. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  3826. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  3827. f_alarm_temperature, goaf_datareport_time
  3828. FROM goaf_sensordata
  3829. WHERE oc_id = 406283
  3830. AND goaf_sensor_id = 442136
  3831. ORDER BY goaf_datareport_time DESC
  3832. LIMIT 1
  3833. 11:08:23.992 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:08:23 | Time Consuming: 3 ms | Connection: statement-16 | SQL: SELECT *
  3834. FROM goaf_sensor
  3835. where oc_id = 406283
  3836. AND goaf_dev_name = 'machinery'
  3837. 11:08:23.997 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:08:23 | Time Consuming: 4 ms | Connection: statement-16 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  3838. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  3839. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  3840. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  3841. f_alarm_temperature, goaf_datareport_time
  3842. FROM goaf_sensordata
  3843. WHERE oc_id = 406283
  3844. AND goaf_sensor_id = 442137
  3845. ORDER BY goaf_datareport_time DESC
  3846. LIMIT 1
  3847. 11:08:24.003 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:08:24 | Time Consuming: 4 ms | Connection: statement-16 | SQL: SELECT *
  3848. FROM goaf_sensor
  3849. where oc_id = 406283
  3850. AND goaf_dev_name = 'compress'
  3851. 11:08:24.007 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:08:24 | Time Consuming: 4 ms | Connection: statement-16 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  3852. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  3853. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  3854. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  3855. f_alarm_temperature, goaf_datareport_time
  3856. FROM goaf_sensordata
  3857. WHERE oc_id = 406283
  3858. AND goaf_sensor_id = 442135
  3859. ORDER BY goaf_datareport_time DESC
  3860. LIMIT 1
  3861. 11:08:24.013 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:08:24 | Time Consuming: 5 ms | Connection: statement-16 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  3862. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  3863. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  3864. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  3865. f_alarm_temperature, goaf_datareport_time
  3866. FROM goaf_sensordata
  3867. WHERE oc_id = 406283
  3868. AND goaf_sensor_id = 442139
  3869. ORDER BY goaf_datareport_time DESC
  3870. LIMIT 1
  3871. 11:08:28.130 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:08:28 | Time Consuming: 3 ms | Connection: statement-16 | SQL: SELECT 1
  3872. 11:08:28.147 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:08:28 | Time Consuming: 13 ms | Connection: statement-16 | SQL: SELECT td_wave_value_x, td_wave_value_y, td_wave_value_z
  3873. FROM goaf_sensordata
  3874. WHERE goaf_data_id = 442169
  3875. 11:08:31.906 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:08:31 | Time Consuming: 3 ms | Connection: statement-16 | SQL: SELECT 1
  3876. 11:08:31.919 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:08:31 | Time Consuming: 8 ms | Connection: statement-16 | SQL: SELECT td_wave_value_x, td_wave_value_y, td_wave_value_z
  3877. FROM goaf_sensordata
  3878. WHERE goaf_data_id = 442152
  3879. 11:08:37.297 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:08:37 | Time Consuming: 4 ms | Connection: statement-16 | SQL: SELECT 1
  3880. 11:08:37.313 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:08:37 | Time Consuming: 12 ms | Connection: statement-16 | SQL: SELECT td_wave_value_x, td_wave_value_y, td_wave_value_z
  3881. FROM goaf_sensordata
  3882. WHERE goaf_data_id = 442168
  3883. 11:08:46.858 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:08:46 | Time Consuming: 2 ms | Connection: statement-16 | SQL: SELECT 1
  3884. 11:08:46.861 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:08:46 | Time Consuming: 2 ms | Connection: statement-16 | SQL: SELECT
  3885. COUNT(*) AS 'goafSensorTotalNum',
  3886. IFNULL(SUM( CASE WHEN goaf_sensor_status = 1 THEN 1 ELSE 0 END ), 0) AS 'sensorOnlineNum'
  3887. FROM goaf_sensor
  3888. WHERE oc_id = 406283
  3889. 11:08:50.419 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:08:50 | Time Consuming: 3 ms | Connection: statement-16 | SQL: SELECT 1
  3890. 11:08:50.426 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:08:50 | Time Consuming: 3 ms | Connection: statement-16 | SQL: SELECT *
  3891. FROM goaf_syscfg
  3892. WHERE oc_id = 406283
  3893. 11:08:51.863 [XNIO-1 task-4] INFO p6spy - 2023-08-25 11:08:51 | Time Consuming: 5001 ms | Connection: statement-17 | SQL: SELECT 1
  3894. 11:08:51.866 [XNIO-1 task-4] INFO p6spy - 2023-08-25 11:08:51 | Time Consuming: 3 ms | Connection: statement-16 | SQL: SELECT 1
  3895. 11:08:51.870 [XNIO-1 task-4] INFO p6spy - 2023-08-25 11:08:51 | Time Consuming: 3 ms | Connection: statement-16 | SQL: SELECT count(0) FROM goaf_sensor WHERE oc_id = 406283
  3896. 11:08:51.874 [XNIO-1 task-4] INFO p6spy - 2023-08-25 11:08:51 | Time Consuming: 4 ms | Connection: statement-16 | SQL: SELECT *
  3897. FROM goaf_sensor
  3898. where oc_id = 406283
  3899. LIMIT 10
  3900. 11:08:51.889 [XNIO-1 task-4] INFO p6spy - 2023-08-25 11:08:51 | Time Consuming: 3 ms | Connection: statement-16 | SQL: SELECT count(0) FROM goaf_sensor WHERE oc_id = 406283
  3901. 11:08:51.894 [XNIO-1 task-4] INFO p6spy - 2023-08-25 11:08:51 | Time Consuming: 4 ms | Connection: statement-16 | SQL: SELECT *
  3902. FROM goaf_sensor
  3903. where oc_id = 406283
  3904. LIMIT 10
  3905. 11:10:11.319 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:10:11 | Time Consuming: 4 ms | Connection: statement-16 | SQL: SELECT 1
  3906. 11:10:11.326 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:10:11 | Time Consuming: 4 ms | Connection: statement-16 | SQL: SELECT *
  3907. FROM goaf_syscfg
  3908. WHERE oc_id = 406283
  3909. 11:10:16.316 [XNIO-1 task-4] INFO p6spy - 2023-08-25 11:10:16 | Time Consuming: 5001 ms | Connection: statement-18 | SQL: SELECT 1
  3910. 11:10:16.321 [XNIO-1 task-4] INFO p6spy - 2023-08-25 11:10:16 | Time Consuming: 4 ms | Connection: statement-16 | SQL: SELECT 1
  3911. 11:10:16.322 [XNIO-1 task-3] INFO p6spy - 2023-08-25 11:10:16 | Time Consuming: 5001 ms | Connection: statement-19 | SQL: SELECT 1
  3912. 11:10:16.325 [XNIO-1 task-4] INFO p6spy - 2023-08-25 11:10:16 | Time Consuming: 3 ms | Connection: statement-16 | SQL: SELECT count(0) FROM goaf_sensor WHERE oc_id = 406283
  3913. 11:10:16.330 [XNIO-1 task-4] INFO p6spy - 2023-08-25 11:10:16 | Time Consuming: 4 ms | Connection: statement-16 | SQL: SELECT *
  3914. FROM goaf_sensor
  3915. where oc_id = 406283
  3916. LIMIT 10
  3917. 11:10:21.107 [XNIO-1 task-4] INFO p6spy - 2023-08-25 11:10:21 | Time Consuming: 3 ms | Connection: statement-16 | SQL: SELECT 1
  3918. 11:10:21.107 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:10:21 | Time Consuming: 3 ms | Connection: statement-22 | SQL: SELECT 1
  3919. 11:10:21.113 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:10:21 | Time Consuming: 5 ms | Connection: statement-22 | SQL: SELECT count(0) FROM goaf_sensor WHERE oc_id = 406283
  3920. 11:10:21.113 [XNIO-1 task-4] INFO p6spy - 2023-08-25 11:10:21 | Time Consuming: 5 ms | Connection: statement-16 | SQL: SELECT
  3921. COUNT(*) AS 'goafSensorTotalNum',
  3922. IFNULL(SUM( CASE WHEN goaf_sensor_status = 1 THEN 1 ELSE 0 END ), 0) AS 'sensorOnlineNum'
  3923. FROM goaf_sensor
  3924. WHERE oc_id = 406283
  3925. 11:10:21.117 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:10:21 | Time Consuming: 4 ms | Connection: statement-22 | SQL: SELECT *
  3926. FROM goaf_sensor
  3927. where oc_id = 406283
  3928. LIMIT 10
  3929. 11:10:21.324 [XNIO-1 task-3] INFO p6spy - 2023-08-25 11:10:21 | Time Consuming: 5000 ms | Connection: statement-20 | SQL: SELECT 1
  3930. 11:10:21.333 [XNIO-1 task-3] INFO p6spy - 2023-08-25 11:10:21 | Time Consuming: 3 ms | Connection: statement-16 | SQL: SELECT *
  3931. FROM goaf_devinfo
  3932. where oc_id = 406283
  3933. 11:10:22.453 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:10:22 | Time Consuming: 4 ms | Connection: statement-22 | SQL: SELECT 1
  3934. 11:10:22.453 [XNIO-1 task-4] INFO p6spy - 2023-08-25 11:10:22 | Time Consuming: 4 ms | Connection: statement-16 | SQL: SELECT 1
  3935. 11:10:22.453 [XNIO-1 task-3] INFO p6spy - 2023-08-25 11:10:22 | Time Consuming: 3 ms | Connection: statement-23 | SQL: SELECT 1
  3936. 11:10:22.457 [XNIO-1 task-3] INFO p6spy - 2023-08-25 11:10:22 | Time Consuming: 3 ms | Connection: statement-23 | SQL: SELECT count(0) FROM goaf_sensor WHERE oc_id = 406283
  3937. 11:10:22.461 [XNIO-1 task-4] INFO p6spy - 2023-08-25 11:10:22 | Time Consuming: 3 ms | Connection: statement-16 | SQL: SELECT *
  3938. FROM goaf_syscfg
  3939. WHERE oc_id = 406283
  3940. 11:10:22.461 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:10:22 | Time Consuming: 3 ms | Connection: statement-22 | SQL: SELECT *
  3941. FROM goaf_devinfo
  3942. where oc_id = 406283
  3943. 11:10:22.461 [XNIO-1 task-3] INFO p6spy - 2023-08-25 11:10:22 | Time Consuming: 3 ms | Connection: statement-23 | SQL: SELECT *
  3944. FROM goaf_sensor
  3945. where oc_id = 406283
  3946. LIMIT 10
  3947. 11:10:27.511 [XNIO-1 task-4] INFO p6spy - 2023-08-25 11:10:27 | Time Consuming: 3 ms | Connection: statement-16 | SQL: SELECT 1
  3948. 11:10:27.511 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:10:27 | Time Consuming: 3 ms | Connection: statement-22 | SQL: SELECT 1
  3949. 11:10:27.517 [XNIO-1 task-4] INFO p6spy - 2023-08-25 11:10:27 | Time Consuming: 5 ms | Connection: statement-16 | SQL: SELECT
  3950. COUNT(*) AS 'goafSensorTotalNum',
  3951. IFNULL(SUM( CASE WHEN goaf_sensor_status = 1 THEN 1 ELSE 0 END ), 0) AS 'sensorOnlineNum'
  3952. FROM goaf_sensor
  3953. WHERE oc_id = 406283
  3954. 11:10:27.517 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:10:27 | Time Consuming: 5 ms | Connection: statement-22 | SQL: SELECT count(0) FROM goaf_sensor WHERE oc_id = 406283
  3955. 11:10:27.521 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:10:27 | Time Consuming: 4 ms | Connection: statement-22 | SQL: SELECT *
  3956. FROM goaf_sensor
  3957. where oc_id = 406283
  3958. LIMIT 10
  3959. 11:10:28.773 [XNIO-1 task-4] INFO p6spy - 2023-08-25 11:10:28 | Time Consuming: 3 ms | Connection: statement-16 | SQL: SELECT 1
  3960. 11:10:28.773 [XNIO-1 task-3] INFO p6spy - 2023-08-25 11:10:28 | Time Consuming: 3 ms | Connection: statement-23 | SQL: SELECT 1
  3961. 11:10:28.775 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:10:28 | Time Consuming: 3 ms | Connection: statement-22 | SQL: SELECT 1
  3962. 11:10:28.777 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:10:28 | Time Consuming: 3 ms | Connection: statement-22 | SQL: SELECT count(0) FROM goaf_sensor WHERE oc_id = 406283
  3963. 11:10:28.780 [XNIO-1 task-3] INFO p6spy - 2023-08-25 11:10:28 | Time Consuming: 2 ms | Connection: statement-23 | SQL: SELECT *
  3964. FROM goaf_syscfg
  3965. WHERE oc_id = 406283
  3966. 11:10:28.781 [XNIO-1 task-4] INFO p6spy - 2023-08-25 11:10:28 | Time Consuming: 4 ms | Connection: statement-16 | SQL: SELECT *
  3967. FROM goaf_devinfo
  3968. where oc_id = 406283
  3969. 11:10:28.782 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:10:28 | Time Consuming: 3 ms | Connection: statement-22 | SQL: SELECT *
  3970. FROM goaf_sensor
  3971. where oc_id = 406283
  3972. LIMIT 10
  3973. 11:11:24.157 [XNIO-1 task-3] INFO p6spy - 2023-08-25 11:11:24 | Time Consuming: 4 ms | Connection: statement-23 | SQL: SELECT 1
  3974. 11:11:24.161 [XNIO-1 task-4] INFO p6spy - 2023-08-25 11:11:24 | Time Consuming: 3 ms | Connection: statement-22 | SQL: SELECT 1
  3975. 11:11:24.165 [XNIO-1 task-4] INFO p6spy - 2023-08-25 11:11:24 | Time Consuming: 4 ms | Connection: statement-22 | SQL: SELECT count(0) FROM goaf_sensor WHERE oc_id = 406283
  3976. 11:11:24.165 [XNIO-1 task-3] INFO p6spy - 2023-08-25 11:11:24 | Time Consuming: 3 ms | Connection: statement-23 | SQL: SELECT *
  3977. FROM goaf_syscfg
  3978. WHERE oc_id = 406283
  3979. 11:11:24.169 [XNIO-1 task-4] INFO p6spy - 2023-08-25 11:11:24 | Time Consuming: 4 ms | Connection: statement-22 | SQL: SELECT *
  3980. FROM goaf_sensor
  3981. where oc_id = 406283
  3982. LIMIT 10
  3983. 11:15:03.389 [XNIO-1 task-4] INFO p6spy - 2023-08-25 11:15:03 | Time Consuming: 4 ms | Connection: statement-22 | SQL: SELECT 1
  3984. 11:15:03.389 [XNIO-1 task-3] INFO p6spy - 2023-08-25 11:15:03 | Time Consuming: 4 ms | Connection: statement-23 | SQL: SELECT 1
  3985. 11:15:03.398 [XNIO-1 task-4] INFO p6spy - 2023-08-25 11:15:03 | Time Consuming: 4 ms | Connection: statement-22 | SQL: SELECT *
  3986. FROM goaf_devinfo
  3987. where oc_id = 406283
  3988. 11:15:03.398 [XNIO-1 task-3] INFO p6spy - 2023-08-25 11:15:03 | Time Consuming: 4 ms | Connection: statement-23 | SQL: SELECT *
  3989. FROM goaf_syscfg
  3990. WHERE oc_id = 406283
  3991. 11:15:17.009 [XNIO-1 task-3] INFO p6spy - 2023-08-25 11:15:17 | Time Consuming: 3 ms | Connection: statement-23 | SQL: SELECT 1
  3992. 11:15:17.014 [XNIO-1 task-3] INFO p6spy - 2023-08-25 11:15:17 | Time Consuming: 3 ms | Connection: statement-23 | SQL: SELECT count(0) FROM goaf_sensor WHERE oc_id = 406283
  3993. 11:15:17.018 [XNIO-1 task-3] INFO p6spy - 2023-08-25 11:15:17 | Time Consuming: 3 ms | Connection: statement-23 | SQL: SELECT *
  3994. FROM goaf_sensor
  3995. where oc_id = 406283
  3996. LIMIT 10
  3997. 11:15:18.357 [XNIO-1 task-4] INFO p6spy - 2023-08-25 11:15:18 | Time Consuming: 46 ms | Connection: statement-22 | SQL: SELECT 1
  3998. 11:15:18.360 [XNIO-1 task-3] INFO p6spy - 2023-08-25 11:15:18 | Time Consuming: 43 ms | Connection: statement-23 | SQL: SELECT 1
  3999. 11:15:18.367 [XNIO-1 task-4] INFO p6spy - 2023-08-25 11:15:18 | Time Consuming: 4 ms | Connection: statement-22 | SQL: SELECT *
  4000. FROM goaf_syscfg
  4001. WHERE oc_id = 406283
  4002. 11:15:18.370 [XNIO-1 task-3] INFO p6spy - 2023-08-25 11:15:18 | Time Consuming: 3 ms | Connection: statement-23 | SQL: SELECT count(0) FROM goaf_devinfo WHERE oc_id = 406283
  4003. 11:15:18.374 [XNIO-1 task-3] INFO p6spy - 2023-08-25 11:15:18 | Time Consuming: 3 ms | Connection: statement-23 | SQL: SELECT *
  4004. FROM goaf_devinfo
  4005. where oc_id = 406283
  4006. LIMIT 10
  4007. 11:15:23.362 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:15:23 | Time Consuming: 5002 ms | Connection: statement-24 | SQL: SELECT 1
  4008. 11:15:23.368 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:15:23 | Time Consuming: 4 ms | Connection: statement-22 | SQL: SELECT 1
  4009. 11:15:23.379 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:15:23 | Time Consuming: 5 ms | Connection: statement-22 | SQL: SELECT *
  4010. FROM goaf_baseinfo
  4011. WHERE oc_id = 406283
  4012. 11:16:14.205 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:16:14 | Time Consuming: 4 ms | Connection: statement-22 | SQL: SELECT 1
  4013. 11:16:14.218 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:16:14 | Time Consuming: 5 ms | Connection: statement-22 | SQL: SELECT
  4014. A.oc_id,
  4015. A.group_id,
  4016. A.group_name,
  4017. A.group_code,
  4018. A.group_cat_id,
  4019. C.group_cat_title,
  4020. A.node_left,
  4021. A.node_right,
  4022. A.parent_id,
  4023. A.root_id,
  4024. B.group_name as parent_name,
  4025. A.node_level,
  4026. A.is_leaf,
  4027. A.is_fixed,
  4028. A.group_desc
  4029. FROM s_group AS A
  4030. LEFT JOIN s_group AS B ON (A.oc_id = B.oc_id AND A.parent_id = B.group_id)
  4031. LEFT JOIN s_group_cat AS C ON (A.oc_id = C.oc_id AND A.group_cat_id = C.group_cat_id)
  4032. WHERE A.oc_id = 406283 AND A.deleted_flag = 0
  4033. 11:16:14.297 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:16:14 | Time Consuming: 7 ms | Connection: statement-22 | SQL: SELECT
  4034. A.oc_id,
  4035. A.group_id,
  4036. A.group_name,
  4037. A.group_code,
  4038. A.group_cat_id,
  4039. C.group_cat_title,
  4040. A.node_left,
  4041. A.node_right,
  4042. A.parent_id,
  4043. A.root_id,
  4044. B.group_name as parent_name,
  4045. A.node_level,
  4046. A.is_leaf,
  4047. A.is_fixed,
  4048. A.group_desc
  4049. FROM s_group AS A
  4050. LEFT JOIN s_group AS B ON (A.oc_id = B.oc_id AND A.parent_id = B.group_id )
  4051. LEFT JOIN s_group_cat AS C ON (A.oc_id = C.oc_id AND A.group_cat_id = C.group_cat_id)
  4052. WHERE A.oc_id = 406283 AND A.deleted_flag = 0 AND A.group_id = 406283
  4053. 11:16:14.370 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:16:14 | Time Consuming: 6 ms | Connection: statement-22 | SQL: SELECT count(0) FROM (SELECT DISTINCT (A.account_id), A.gm_id, A.oc_id, A.group_id, B.account_name, B.account_real_name, B.account_phone, B.account_staff_no, B.account_avatar, B.status, B.is_fixed, C.group_name, C.node_left, C.node_right, D.gmp_id, D.position_id, D.position_name, E.gmpg_id, E.grant_group_id, F.group_name AS grant_group_name FROM s_group_member AS A LEFT JOIN account AS B ON (A.oc_id = B.oc_id AND A.account_id = B.account_id) LEFT JOIN s_group AS C ON (A.oc_id = C.oc_id AND A.group_id = C.group_id) LEFT JOIN s_group_member_position_grant AS E ON (B.oc_id = E.oc_id AND B.account_id = E.account_id) LEFT JOIN s_group AS F ON (E.oc_id = F.oc_id AND E.grant_group_id = F.group_id) LEFT JOIN (SELECT M.oc_id, M.account_id, M.gmp_id, M.group_id, M.position_id, P.position_name, N.gmpg_id, N.grant_group_id, GP.group_name AS grant_group_name FROM s_group_member_position AS M LEFT JOIN s_group_member_position_grant AS N ON (M.oc_id = N.oc_id AND M.account_id = N.account_id AND M.group_id = N.group_id AND M.position_id = N.position_id) LEFT JOIN s_position AS P ON (M.oc_id = P.oc_id AND M.position_id = P.position_id) LEFT JOIN s_group AS GP ON (M.oc_id = GP.oc_id AND N.grant_group_id = GP.group_id)) AS D ON (A.oc_id = D.oc_id AND A.account_id = D.account_id AND A.group_id = D.group_id) WHERE B.deleted_flag = 0 AND A.oc_id = 406283 AND C.node_left >= 1 AND C.node_right <= 4) table_count
  4054. 11:16:14.377 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:16:14 | Time Consuming: 6 ms | Connection: statement-22 | SQL: SELECT
  4055. DISTINCT(A.account_id),
  4056. A.gm_id,
  4057. A.oc_id,
  4058. A.group_id,
  4059. B.account_name,
  4060. B.account_real_name,
  4061. B.account_phone,
  4062. B.account_staff_no,
  4063. B.account_avatar,
  4064. B.status,
  4065. B.is_fixed,
  4066. C.group_name,
  4067. C.node_left,
  4068. C.node_right,
  4069. D.gmp_id,
  4070. D.position_id,
  4071. D.position_name,
  4072. E.gmpg_id,
  4073. E.grant_group_id,
  4074. F.group_name as grant_group_name
  4075. FROM
  4076. s_group_member AS A
  4077. LEFT JOIN account AS B ON (A.oc_id = B.oc_id AND A.account_id = B.account_id)
  4078. LEFT JOIN s_group AS C ON (A.oc_id = C.oc_id AND A.group_id = C.group_id )
  4079. LEFT JOIN s_group_member_position_grant AS E ON (B.oc_id = E.oc_id AND B.account_id = E.account_id)
  4080. LEFT JOIN s_group AS F ON (E.oc_id = F.oc_id AND E.grant_group_id = F.group_id )
  4081. LEFT JOIN (
  4082. SELECT
  4083. M.oc_id,
  4084. M.account_id,
  4085. M.gmp_id,
  4086. M.group_id,
  4087. M.position_id,
  4088. P.position_name,
  4089. N.gmpg_id,
  4090. N.grant_group_id,
  4091. GP.group_name as grant_group_name
  4092. FROM
  4093. s_group_member_position AS M
  4094. LEFT JOIN s_group_member_position_grant AS N ON (
  4095. M.oc_id = N.oc_id
  4096. AND M.account_id = N.account_id
  4097. AND M.group_id = N.group_id
  4098. AND M.position_id = N.position_id )
  4099. LEFT JOIN s_position AS P ON(M.oc_id = P.oc_id AND M.position_id = P.position_id)
  4100. LEFT JOIN s_group AS GP ON(M.oc_id = GP.oc_id AND N.grant_group_id = GP.group_id )
  4101. ) AS D ON (A.oc_id= D.oc_id AND A.account_id = D.account_id AND A.group_id = D.group_id)
  4102. WHERE B.deleted_flag = 0
  4103. AND A.oc_id = 406283
  4104. AND C.node_left >= 1
  4105. AND C.node_right <= 4
  4106. ORDER BY A.account_id, A.group_id
  4107. LIMIT 10
  4108. 11:16:15.660 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:16:15 | Time Consuming: 3 ms | Connection: statement-22 | SQL: SELECT 1
  4109. 11:16:15.666 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:16:15 | Time Consuming: 3 ms | Connection: statement-22 | SQL: SELECT *
  4110. FROM goaf_syscfg
  4111. WHERE oc_id = 406283
  4112. 11:16:38.944 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:16:38 | Time Consuming: 3 ms | Connection: statement-22 | SQL: SELECT 1
  4113. 11:16:38.946 [XNIO-1 task-3] INFO p6spy - 2023-08-25 11:16:38 | Time Consuming: 3 ms | Connection: statement-23 | SQL: SELECT 1
  4114. 11:16:38.948 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:16:38 | Time Consuming: 4 ms | Connection: statement-22 | SQL: SELECT
  4115. COUNT(*) AS 'goafSensorTotalNum',
  4116. IFNULL(SUM( CASE WHEN goaf_sensor_status = 1 THEN 1 ELSE 0 END ), 0) AS 'sensorOnlineNum'
  4117. FROM goaf_sensor
  4118. WHERE oc_id = 406283
  4119. 11:16:38.950 [XNIO-1 task-3] INFO p6spy - 2023-08-25 11:16:38 | Time Consuming: 3 ms | Connection: statement-23 | SQL: SELECT count(0) FROM goaf_sensor WHERE oc_id = 406283
  4120. 11:16:38.954 [XNIO-1 task-3] INFO p6spy - 2023-08-25 11:16:38 | Time Consuming: 3 ms | Connection: statement-23 | SQL: SELECT *
  4121. FROM goaf_sensor
  4122. where oc_id = 406283
  4123. LIMIT 10
  4124. 11:16:40.206 [XNIO-1 task-3] INFO p6spy - 2023-08-25 11:16:40 | Time Consuming: 5 ms | Connection: statement-23 | SQL: SELECT 1
  4125. 11:16:40.207 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:16:40 | Time Consuming: 6 ms | Connection: statement-22 | SQL: SELECT 1
  4126. 11:16:40.211 [XNIO-1 task-3] INFO p6spy - 2023-08-25 11:16:40 | Time Consuming: 4 ms | Connection: statement-23 | SQL: SELECT count(0) FROM goaf_sensor WHERE oc_id = 406283
  4127. 11:16:40.216 [XNIO-1 task-3] INFO p6spy - 2023-08-25 11:16:40 | Time Consuming: 4 ms | Connection: statement-23 | SQL: SELECT *
  4128. FROM goaf_sensor
  4129. where oc_id = 406283
  4130. LIMIT 10
  4131. 11:16:40.216 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:16:40 | Time Consuming: 4 ms | Connection: statement-22 | SQL: SELECT *
  4132. FROM goaf_syscfg
  4133. WHERE oc_id = 406283
  4134. 11:16:45.207 [XNIO-1 task-4] INFO p6spy - 2023-08-25 11:16:45 | Time Consuming: 5002 ms | Connection: statement-25 | SQL: SELECT 1
  4135. 11:16:45.211 [XNIO-1 task-4] INFO p6spy - 2023-08-25 11:16:45 | Time Consuming: 3 ms | Connection: statement-22 | SQL: SELECT 1
  4136. 11:16:45.219 [XNIO-1 task-4] INFO p6spy - 2023-08-25 11:16:45 | Time Consuming: 3 ms | Connection: statement-22 | SQL: SELECT *
  4137. FROM goaf_devinfo
  4138. where oc_id = 406283
  4139. 11:19:17.388 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:19:17 | Time Consuming: 4 ms | Connection: statement-28 | SQL: SELECT 1
  4140. 11:19:17.389 [XNIO-1 task-4] INFO p6spy - 2023-08-25 11:19:17 | Time Consuming: 5 ms | Connection: statement-29 | SQL: SELECT 1
  4141. 11:19:17.397 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:19:17 | Time Consuming: 4 ms | Connection: statement-28 | SQL: SELECT *
  4142. FROM goaf_syscfg
  4143. WHERE oc_id = 406283
  4144. 11:19:17.397 [XNIO-1 task-4] INFO p6spy - 2023-08-25 11:19:17 | Time Consuming: 4 ms | Connection: statement-29 | SQL: SELECT *
  4145. FROM goaf_devinfo
  4146. where oc_id = 406283
  4147. 11:19:24.963 [XNIO-1 task-4] INFO p6spy - 2023-08-25 11:19:24 | Time Consuming: 4 ms | Connection: statement-29 | SQL: SELECT 1
  4148. 11:19:24.968 [XNIO-1 task-4] INFO p6spy - 2023-08-25 11:19:24 | Time Consuming: 4 ms | Connection: statement-29 | SQL: SELECT count(0) FROM goaf_sensor WHERE oc_id = 406283
  4149. 11:19:24.974 [XNIO-1 task-4] INFO p6spy - 2023-08-25 11:19:24 | Time Consuming: 5 ms | Connection: statement-29 | SQL: SELECT *
  4150. FROM goaf_sensor
  4151. where oc_id = 406283
  4152. LIMIT 10
  4153. 11:19:27.348 [XNIO-1 task-4] INFO p6spy - 2023-08-25 11:19:27 | Time Consuming: 4 ms | Connection: statement-29 | SQL: SELECT 1
  4154. 11:19:27.359 [XNIO-1 task-4] INFO p6spy - 2023-08-25 11:19:27 | Time Consuming: 5 ms | Connection: statement-29 | SQL: SELECT
  4155. A.oc_id,
  4156. A.group_id,
  4157. A.group_name,
  4158. A.group_code,
  4159. A.group_cat_id,
  4160. C.group_cat_title,
  4161. A.node_left,
  4162. A.node_right,
  4163. A.parent_id,
  4164. A.root_id,
  4165. B.group_name as parent_name,
  4166. A.node_level,
  4167. A.is_leaf,
  4168. A.is_fixed,
  4169. A.group_desc
  4170. FROM s_group AS A
  4171. LEFT JOIN s_group AS B ON (A.oc_id = B.oc_id AND A.parent_id = B.group_id)
  4172. LEFT JOIN s_group_cat AS C ON (A.oc_id = C.oc_id AND A.group_cat_id = C.group_cat_id)
  4173. WHERE A.oc_id = 406283 AND A.deleted_flag = 0
  4174. 11:19:27.403 [XNIO-1 task-4] INFO p6spy - 2023-08-25 11:19:27 | Time Consuming: 9 ms | Connection: statement-29 | SQL: SELECT
  4175. A.oc_id,
  4176. A.group_id,
  4177. A.group_name,
  4178. A.group_code,
  4179. A.group_cat_id,
  4180. C.group_cat_title,
  4181. A.node_left,
  4182. A.node_right,
  4183. A.parent_id,
  4184. A.root_id,
  4185. B.group_name as parent_name,
  4186. A.node_level,
  4187. A.is_leaf,
  4188. A.is_fixed,
  4189. A.group_desc
  4190. FROM s_group AS A
  4191. LEFT JOIN s_group AS B ON (A.oc_id = B.oc_id AND A.parent_id = B.group_id )
  4192. LEFT JOIN s_group_cat AS C ON (A.oc_id = C.oc_id AND A.group_cat_id = C.group_cat_id)
  4193. WHERE A.oc_id = 406283 AND A.deleted_flag = 0 AND A.group_id = 406283
  4194. 11:19:27.437 [XNIO-1 task-4] INFO p6spy - 2023-08-25 11:19:27 | Time Consuming: 7 ms | Connection: statement-29 | SQL: SELECT count(0) FROM (SELECT DISTINCT (A.account_id), A.gm_id, A.oc_id, A.group_id, B.account_name, B.account_real_name, B.account_phone, B.account_staff_no, B.account_avatar, B.status, B.is_fixed, C.group_name, C.node_left, C.node_right, D.gmp_id, D.position_id, D.position_name, E.gmpg_id, E.grant_group_id, F.group_name AS grant_group_name FROM s_group_member AS A LEFT JOIN account AS B ON (A.oc_id = B.oc_id AND A.account_id = B.account_id) LEFT JOIN s_group AS C ON (A.oc_id = C.oc_id AND A.group_id = C.group_id) LEFT JOIN s_group_member_position_grant AS E ON (B.oc_id = E.oc_id AND B.account_id = E.account_id) LEFT JOIN s_group AS F ON (E.oc_id = F.oc_id AND E.grant_group_id = F.group_id) LEFT JOIN (SELECT M.oc_id, M.account_id, M.gmp_id, M.group_id, M.position_id, P.position_name, N.gmpg_id, N.grant_group_id, GP.group_name AS grant_group_name FROM s_group_member_position AS M LEFT JOIN s_group_member_position_grant AS N ON (M.oc_id = N.oc_id AND M.account_id = N.account_id AND M.group_id = N.group_id AND M.position_id = N.position_id) LEFT JOIN s_position AS P ON (M.oc_id = P.oc_id AND M.position_id = P.position_id) LEFT JOIN s_group AS GP ON (M.oc_id = GP.oc_id AND N.grant_group_id = GP.group_id)) AS D ON (A.oc_id = D.oc_id AND A.account_id = D.account_id AND A.group_id = D.group_id) WHERE B.deleted_flag = 0 AND A.oc_id = 406283 AND C.node_left >= 1 AND C.node_right <= 4) table_count
  4195. 11:19:27.445 [XNIO-1 task-4] INFO p6spy - 2023-08-25 11:19:27 | Time Consuming: 7 ms | Connection: statement-29 | SQL: SELECT
  4196. DISTINCT(A.account_id),
  4197. A.gm_id,
  4198. A.oc_id,
  4199. A.group_id,
  4200. B.account_name,
  4201. B.account_real_name,
  4202. B.account_phone,
  4203. B.account_staff_no,
  4204. B.account_avatar,
  4205. B.status,
  4206. B.is_fixed,
  4207. C.group_name,
  4208. C.node_left,
  4209. C.node_right,
  4210. D.gmp_id,
  4211. D.position_id,
  4212. D.position_name,
  4213. E.gmpg_id,
  4214. E.grant_group_id,
  4215. F.group_name as grant_group_name
  4216. FROM
  4217. s_group_member AS A
  4218. LEFT JOIN account AS B ON (A.oc_id = B.oc_id AND A.account_id = B.account_id)
  4219. LEFT JOIN s_group AS C ON (A.oc_id = C.oc_id AND A.group_id = C.group_id )
  4220. LEFT JOIN s_group_member_position_grant AS E ON (B.oc_id = E.oc_id AND B.account_id = E.account_id)
  4221. LEFT JOIN s_group AS F ON (E.oc_id = F.oc_id AND E.grant_group_id = F.group_id )
  4222. LEFT JOIN (
  4223. SELECT
  4224. M.oc_id,
  4225. M.account_id,
  4226. M.gmp_id,
  4227. M.group_id,
  4228. M.position_id,
  4229. P.position_name,
  4230. N.gmpg_id,
  4231. N.grant_group_id,
  4232. GP.group_name as grant_group_name
  4233. FROM
  4234. s_group_member_position AS M
  4235. LEFT JOIN s_group_member_position_grant AS N ON (
  4236. M.oc_id = N.oc_id
  4237. AND M.account_id = N.account_id
  4238. AND M.group_id = N.group_id
  4239. AND M.position_id = N.position_id )
  4240. LEFT JOIN s_position AS P ON(M.oc_id = P.oc_id AND M.position_id = P.position_id)
  4241. LEFT JOIN s_group AS GP ON(M.oc_id = GP.oc_id AND N.grant_group_id = GP.group_id )
  4242. ) AS D ON (A.oc_id= D.oc_id AND A.account_id = D.account_id AND A.group_id = D.group_id)
  4243. WHERE B.deleted_flag = 0
  4244. AND A.oc_id = 406283
  4245. AND C.node_left >= 1
  4246. AND C.node_right <= 4
  4247. ORDER BY A.account_id, A.group_id
  4248. LIMIT 10
  4249. 11:19:28.858 [XNIO-1 task-4] INFO p6spy - 2023-08-25 11:19:28 | Time Consuming: 3 ms | Connection: statement-29 | SQL: SELECT 1
  4250. 11:19:28.865 [XNIO-1 task-4] INFO p6spy - 2023-08-25 11:19:28 | Time Consuming: 3 ms | Connection: statement-29 | SQL: SELECT *
  4251. FROM goaf_syscfg
  4252. WHERE oc_id = 406283
  4253. 11:19:37.390 [XNIO-1 task-4] INFO p6spy - 2023-08-25 11:19:37 | Time Consuming: 3 ms | Connection: statement-29 | SQL: SELECT 1
  4254. 11:19:37.395 [XNIO-1 task-4] INFO p6spy - 2023-08-25 11:19:37 | Time Consuming: 3 ms | Connection: statement-29 | SQL: SELECT count(0) FROM goaf_sensor WHERE oc_id = 406283
  4255. 11:19:37.399 [XNIO-1 task-4] INFO p6spy - 2023-08-25 11:19:37 | Time Consuming: 4 ms | Connection: statement-29 | SQL: SELECT *
  4256. FROM goaf_sensor
  4257. where oc_id = 406283
  4258. LIMIT 10
  4259. 11:19:40.298 [XNIO-1 task-4] INFO p6spy - 2023-08-25 11:19:40 | Time Consuming: 7 ms | Connection: statement-29 | SQL: SELECT 1
  4260. 11:19:40.298 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:19:40 | Time Consuming: 7 ms | Connection: statement-28 | SQL: SELECT 1
  4261. 11:19:40.299 [XNIO-1 task-3] INFO p6spy - 2023-08-25 11:19:40 | Time Consuming: 5 ms | Connection: statement-30 | SQL: SELECT 1
  4262. 11:19:40.309 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:19:40 | Time Consuming: 4 ms | Connection: statement-28 | SQL: SELECT *
  4263. FROM goaf_syscfg
  4264. WHERE oc_id = 406283
  4265. 11:19:40.310 [XNIO-1 task-3] INFO p6spy - 2023-08-25 11:19:40 | Time Consuming: 5 ms | Connection: statement-30 | SQL: SELECT *
  4266. FROM goaf_baseinfo
  4267. WHERE oc_id = 406283
  4268. 11:19:40.310 [XNIO-1 task-4] INFO p6spy - 2023-08-25 11:19:40 | Time Consuming: 4 ms | Connection: statement-29 | SQL: SELECT count(0) FROM goaf_devinfo WHERE oc_id = 406283
  4269. 11:19:40.315 [XNIO-1 task-4] INFO p6spy - 2023-08-25 11:19:40 | Time Consuming: 5 ms | Connection: statement-29 | SQL: SELECT *
  4270. FROM goaf_devinfo
  4271. where oc_id = 406283
  4272. LIMIT 10
  4273. 11:19:56.210 [XNIO-1 task-4] INFO p6spy - 2023-08-25 11:19:56 | Time Consuming: 3 ms | Connection: statement-29 | SQL: SELECT 1
  4274. 11:19:56.211 [XNIO-1 task-3] INFO p6spy - 2023-08-25 11:19:56 | Time Consuming: 3 ms | Connection: statement-30 | SQL: SELECT 1
  4275. 11:19:56.216 [XNIO-1 task-4] INFO p6spy - 2023-08-25 11:19:56 | Time Consuming: 6 ms | Connection: statement-29 | SQL: SELECT
  4276. COUNT(*) AS 'goafSensorTotalNum',
  4277. IFNULL(SUM( CASE WHEN goaf_sensor_status = 1 THEN 1 ELSE 0 END ), 0) AS 'sensorOnlineNum'
  4278. FROM goaf_sensor
  4279. WHERE oc_id = 406283
  4280. 11:19:56.216 [XNIO-1 task-3] INFO p6spy - 2023-08-25 11:19:56 | Time Consuming: 5 ms | Connection: statement-30 | SQL: SELECT count(0) FROM goaf_sensor WHERE oc_id = 406283
  4281. 11:19:56.221 [XNIO-1 task-3] INFO p6spy - 2023-08-25 11:19:56 | Time Consuming: 4 ms | Connection: statement-30 | SQL: SELECT *
  4282. FROM goaf_sensor
  4283. where oc_id = 406283
  4284. LIMIT 10
  4285. 11:19:57.771 [XNIO-1 task-3] INFO p6spy - 2023-08-25 11:19:57 | Time Consuming: 3 ms | Connection: statement-30 | SQL: SELECT 1
  4286. 11:19:57.772 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:19:57 | Time Consuming: 4 ms | Connection: statement-28 | SQL: SELECT 1
  4287. 11:19:57.772 [XNIO-1 task-4] INFO p6spy - 2023-08-25 11:19:57 | Time Consuming: 3 ms | Connection: statement-29 | SQL: SELECT 1
  4288. 11:19:57.777 [XNIO-1 task-4] INFO p6spy - 2023-08-25 11:19:57 | Time Consuming: 4 ms | Connection: statement-29 | SQL: SELECT count(0) FROM goaf_sensor WHERE oc_id = 406283
  4289. 11:19:57.780 [XNIO-1 task-3] INFO p6spy - 2023-08-25 11:19:57 | Time Consuming: 3 ms | Connection: statement-30 | SQL: SELECT *
  4290. FROM goaf_syscfg
  4291. WHERE oc_id = 406283
  4292. 11:19:57.781 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:19:57 | Time Consuming: 3 ms | Connection: statement-28 | SQL: SELECT *
  4293. FROM goaf_devinfo
  4294. where oc_id = 406283
  4295. 11:19:57.781 [XNIO-1 task-4] INFO p6spy - 2023-08-25 11:19:57 | Time Consuming: 3 ms | Connection: statement-29 | SQL: SELECT *
  4296. FROM goaf_sensor
  4297. where oc_id = 406283
  4298. LIMIT 10
  4299. 11:21:45.261 [XNIO-1 task-3] INFO p6spy - 2023-08-25 11:21:45 | Time Consuming: 4 ms | Connection: statement-30 | SQL: SELECT 1
  4300. 11:21:45.261 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:21:45 | Time Consuming: 4 ms | Connection: statement-28 | SQL: SELECT 1
  4301. 11:21:45.269 [XNIO-1 task-3] INFO p6spy - 2023-08-25 11:21:45 | Time Consuming: 3 ms | Connection: statement-30 | SQL: SELECT *
  4302. FROM goaf_syscfg
  4303. WHERE oc_id = 406283
  4304. 11:21:45.269 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:21:45 | Time Consuming: 4 ms | Connection: statement-28 | SQL: SELECT *
  4305. FROM goaf_devinfo
  4306. where oc_id = 406283
  4307. 11:22:20.789 [XNIO-1 task-3] INFO p6spy - 2023-08-25 11:22:20 | Time Consuming: 4 ms | Connection: statement-30 | SQL: SELECT 1
  4308. 11:22:20.789 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:22:20 | Time Consuming: 3 ms | Connection: statement-28 | SQL: SELECT 1
  4309. 11:22:20.797 [XNIO-1 task-3] INFO p6spy - 2023-08-25 11:22:20 | Time Consuming: 4 ms | Connection: statement-30 | SQL: SELECT *
  4310. FROM goaf_devinfo
  4311. where oc_id = 406283
  4312. 11:22:20.800 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:22:20 | Time Consuming: 5 ms | Connection: statement-28 | SQL: SELECT *
  4313. FROM goaf_syscfg
  4314. WHERE oc_id = 406283
  4315. 11:25:28.188 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:25:28 | Time Consuming: 5002 ms | Connection: statement-32 | SQL: SELECT 1
  4316. 11:25:28.194 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:25:28 | Time Consuming: 4 ms | Connection: statement-33 | SQL: SELECT 1
  4317. 11:25:28.200 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:25:28 | Time Consuming: 3 ms | Connection: statement-33 | SQL: SELECT
  4318. client_id,
  4319. client_title,
  4320. client_app_id,
  4321. client_app_key,
  4322. client_app_secret,
  4323. client_desc,
  4324. status,
  4325. is_fixed
  4326. FROM client
  4327. WHERE deleted_flag = 0
  4328. AND client_app_id = '10001'
  4329. AND client_app_key = '82a8bf439373e305'
  4330. 11:25:28.222 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:25:28 | Time Consuming: 6 ms | Connection: statement-33 | SQL: SELECT
  4331. A.client_id,
  4332. A.role_id,
  4333. A.permit_id,
  4334. A.permit_title,
  4335. A.permit_code,
  4336. A.permit_entry,
  4337. A.permit_desc,
  4338. A.permit_type,
  4339. A.parent_id,
  4340. A.root_id,
  4341. A.sort_no,
  4342. A.is_home
  4343. FROM s_role_permit AS A
  4344. WHERE 1 = 1
  4345. AND A.client_id = 2
  4346. AND A.role_id = 6
  4347. ORDER BY A.parent_id ASC ,A.sort_no ASC
  4348. 11:25:28.383 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:25:28 | Time Consuming: 5 ms | Connection: statement-33 | SQL: SELECT count(0) FROM goaf_sensor WHERE oc_id = 406283
  4349. 11:25:28.387 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:25:28 | Time Consuming: 3 ms | Connection: statement-33 | SQL: SELECT *
  4350. FROM goaf_sensor
  4351. where oc_id = 406283
  4352. LIMIT 10
  4353. 11:25:28.390 [XNIO-1 task-3] INFO p6spy - 2023-08-25 11:25:28 | Time Consuming: 4 ms | Connection: statement-34 | SQL: SELECT 1
  4354. 11:25:28.390 [XNIO-1 task-5] INFO p6spy - 2023-08-25 11:25:28 | Time Consuming: 4 ms | Connection: statement-35 | SQL: SELECT 1
  4355. 11:25:28.402 [XNIO-1 task-3] INFO p6spy - 2023-08-25 11:25:28 | Time Consuming: 5 ms | Connection: statement-34 | SQL: SELECT *
  4356. FROM goaf_syscfg
  4357. WHERE oc_id = 406283
  4358. 11:25:28.402 [XNIO-1 task-5] INFO p6spy - 2023-08-25 11:25:28 | Time Consuming: 5 ms | Connection: statement-35 | SQL: SELECT *
  4359. FROM goaf_devinfo
  4360. where oc_id = 406283
  4361. 11:25:28.426 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:25:28 | Time Consuming: 28 ms | Connection: statement-33 | SQL: SELECT count(*)
  4362. FROM msg AS M
  4363. WHERE M.oc_id = 406283
  4364. AND (
  4365. EXISTS (
  4366. SELECT 1 FROM msg_to TT
  4367. WHERE M.oc_id = TT.oc_id AND M.msg_id = TT.msg_id AND TT.msg_to_id = 406283 AND TT.status=0
  4368. ) OR
  4369. EXISTS (
  4370. SELECT 1 FROM msg_cc CC
  4371. WHERE M.oc_id = CC.oc_id AND M.msg_id = CC.msg_id AND CC.msg_cc_id = 406283 AND CC.status=0
  4372. )
  4373. )
  4374. 11:30:02.833 [XNIO-1 task-3] INFO p6spy - 2023-08-25 11:30:02 | Time Consuming: 5002 ms | Connection: statement-34 | SQL: SELECT 1
  4375. 11:30:02.833 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:30:02 | Time Consuming: 5002 ms | Connection: statement-33 | SQL: SELECT 1
  4376. 11:30:07.836 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:30:07 | Time Consuming: 5002 ms | Connection: statement-35 | SQL: SELECT 1
  4377. 11:30:07.836 [XNIO-1 task-3] INFO p6spy - 2023-08-25 11:30:07 | Time Consuming: 5002 ms | Connection: statement-36 | SQL: SELECT 1
  4378. 11:30:07.841 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:30:07 | Time Consuming: 4 ms | Connection: statement-38 | SQL: SELECT 1
  4379. 11:30:07.849 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:30:07 | Time Consuming: 3 ms | Connection: statement-38 | SQL: SELECT *
  4380. FROM goaf_syscfg
  4381. WHERE oc_id = 406283
  4382. 11:30:12.838 [XNIO-1 task-3] INFO p6spy - 2023-08-25 11:30:12 | Time Consuming: 5001 ms | Connection: statement-37 | SQL: SELECT 1
  4383. 11:30:12.842 [XNIO-1 task-3] INFO p6spy - 2023-08-25 11:30:12 | Time Consuming: 3 ms | Connection: statement-38 | SQL: SELECT 1
  4384. 11:30:12.849 [XNIO-1 task-3] INFO p6spy - 2023-08-25 11:30:12 | Time Consuming: 4 ms | Connection: statement-38 | SQL: SELECT *
  4385. FROM goaf_devinfo
  4386. where oc_id = 406283
  4387. 11:30:55.523 [XNIO-1 task-3] INFO p6spy - 2023-08-25 11:30:55 | Time Consuming: 3 ms | Connection: statement-38 | SQL: SELECT 1
  4388. 11:30:55.523 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:30:55 | Time Consuming: 3 ms | Connection: statement-39 | SQL: SELECT 1
  4389. 11:30:55.530 [XNIO-1 task-3] INFO p6spy - 2023-08-25 11:30:55 | Time Consuming: 3 ms | Connection: statement-38 | SQL: SELECT *
  4390. FROM goaf_syscfg
  4391. WHERE oc_id = 406283
  4392. 11:30:55.531 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:30:55 | Time Consuming: 3 ms | Connection: statement-39 | SQL: SELECT *
  4393. FROM goaf_devinfo
  4394. where oc_id = 406283
  4395. 11:36:19.713 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:36:19 | Time Consuming: 5002 ms | Connection: statement-39 | SQL: SELECT 1
  4396. 11:36:19.713 [XNIO-1 task-3] INFO p6spy - 2023-08-25 11:36:19 | Time Consuming: 5002 ms | Connection: statement-38 | SQL: SELECT 1
  4397. 11:36:24.717 [XNIO-1 task-3] INFO p6spy - 2023-08-25 11:36:24 | Time Consuming: 5002 ms | Connection: statement-40 | SQL: SELECT 1
  4398. 11:36:24.717 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:36:24 | Time Consuming: 5002 ms | Connection: statement-41 | SQL: SELECT 1
  4399. 11:36:24.722 [XNIO-1 task-3] INFO p6spy - 2023-08-25 11:36:24 | Time Consuming: 4 ms | Connection: statement-44 | SQL: SELECT 1
  4400. 11:36:24.732 [XNIO-1 task-3] INFO p6spy - 2023-08-25 11:36:24 | Time Consuming: 5 ms | Connection: statement-44 | SQL: SELECT *
  4401. FROM goaf_devinfo
  4402. where oc_id = 406283
  4403. 11:36:29.719 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:36:29 | Time Consuming: 5002 ms | Connection: statement-42 | SQL: SELECT 1
  4404. 11:36:29.724 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:36:29 | Time Consuming: 3 ms | Connection: statement-44 | SQL: SELECT 1
  4405. 11:36:29.734 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:36:29 | Time Consuming: 4 ms | Connection: statement-44 | SQL: SELECT *
  4406. FROM goaf_syscfg
  4407. WHERE oc_id = 406283
  4408. 11:37:04.302 [XNIO-1 task-3] INFO p6spy - 2023-08-25 11:37:04 | Time Consuming: 4 ms | Connection: statement-44 | SQL: SELECT 1
  4409. 11:37:04.302 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:37:04 | Time Consuming: 4 ms | Connection: statement-45 | SQL: SELECT 1
  4410. 11:37:04.311 [XNIO-1 task-3] INFO p6spy - 2023-08-25 11:37:04 | Time Consuming: 4 ms | Connection: statement-44 | SQL: SELECT *
  4411. FROM goaf_syscfg
  4412. WHERE oc_id = 406283
  4413. 11:37:04.311 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:37:04 | Time Consuming: 4 ms | Connection: statement-45 | SQL: SELECT *
  4414. FROM goaf_devinfo
  4415. where oc_id = 406283
  4416. 11:38:00.244 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:38:00 | Time Consuming: 3 ms | Connection: statement-45 | SQL: SELECT 1
  4417. 11:38:00.244 [XNIO-1 task-3] INFO p6spy - 2023-08-25 11:38:00 | Time Consuming: 3 ms | Connection: statement-44 | SQL: SELECT 1
  4418. 11:38:00.252 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:38:00 | Time Consuming: 4 ms | Connection: statement-45 | SQL: SELECT *
  4419. FROM goaf_devinfo
  4420. where oc_id = 406283
  4421. 11:38:00.254 [XNIO-1 task-3] INFO p6spy - 2023-08-25 11:38:00 | Time Consuming: 3 ms | Connection: statement-44 | SQL: SELECT *
  4422. FROM goaf_syscfg
  4423. WHERE oc_id = 406283
  4424. 11:38:15.216 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:38:15 | Time Consuming: 3 ms | Connection: statement-45 | SQL: SELECT 1
  4425. 11:38:15.217 [XNIO-1 task-3] INFO p6spy - 2023-08-25 11:38:15 | Time Consuming: 3 ms | Connection: statement-44 | SQL: SELECT 1
  4426. 11:38:15.223 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:38:15 | Time Consuming: 3 ms | Connection: statement-45 | SQL: SELECT *
  4427. FROM goaf_syscfg
  4428. WHERE oc_id = 406283
  4429. 11:38:15.224 [XNIO-1 task-3] INFO p6spy - 2023-08-25 11:38:15 | Time Consuming: 3 ms | Connection: statement-44 | SQL: SELECT *
  4430. FROM goaf_devinfo
  4431. where oc_id = 406283
  4432. 11:38:49.346 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:38:49 | Time Consuming: 3 ms | Connection: statement-45 | SQL: SELECT 1
  4433. 11:38:49.348 [XNIO-1 task-3] INFO p6spy - 2023-08-25 11:38:49 | Time Consuming: 5 ms | Connection: statement-44 | SQL: SELECT 1
  4434. 11:38:49.355 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:38:49 | Time Consuming: 3 ms | Connection: statement-45 | SQL: SELECT *
  4435. FROM goaf_syscfg
  4436. WHERE oc_id = 406283
  4437. 11:38:49.356 [XNIO-1 task-3] INFO p6spy - 2023-08-25 11:38:49 | Time Consuming: 4 ms | Connection: statement-44 | SQL: SELECT *
  4438. FROM goaf_devinfo
  4439. where oc_id = 406283
  4440. 11:40:23.486 [XNIO-1 task-3] INFO p6spy - 2023-08-25 11:40:23 | Time Consuming: 4 ms | Connection: statement-44 | SQL: SELECT 1
  4441. 11:40:23.486 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:40:23 | Time Consuming: 4 ms | Connection: statement-45 | SQL: SELECT 1
  4442. 11:40:23.494 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:40:23 | Time Consuming: 3 ms | Connection: statement-45 | SQL: SELECT *
  4443. FROM goaf_syscfg
  4444. WHERE oc_id = 406283
  4445. 11:40:23.495 [XNIO-1 task-3] INFO p6spy - 2023-08-25 11:40:23 | Time Consuming: 4 ms | Connection: statement-44 | SQL: SELECT *
  4446. FROM goaf_devinfo
  4447. where oc_id = 406283
  4448. 11:41:25.859 [XNIO-1 task-3] INFO p6spy - 2023-08-25 11:41:25 | Time Consuming: 5001 ms | Connection: statement-44 | SQL: SELECT 1
  4449. 11:41:25.859 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:41:25 | Time Consuming: 5001 ms | Connection: statement-45 | SQL: SELECT 1
  4450. 11:41:30.862 [XNIO-1 task-3] INFO p6spy - 2023-08-25 11:41:30 | Time Consuming: 5001 ms | Connection: statement-48 | SQL: SELECT 1
  4451. 11:41:30.862 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:41:30 | Time Consuming: 5001 ms | Connection: statement-46 | SQL: SELECT 1
  4452. 11:41:35.864 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:41:35 | Time Consuming: 5001 ms | Connection: statement-49 | SQL: SELECT 1
  4453. 11:41:35.864 [XNIO-1 task-3] INFO p6spy - 2023-08-25 11:41:35 | Time Consuming: 5001 ms | Connection: statement-50 | SQL: SELECT 1
  4454. 11:41:35.868 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:41:35 | Time Consuming: 4 ms | Connection: statement-51 | SQL: SELECT 1
  4455. 11:41:35.868 [XNIO-1 task-3] INFO p6spy - 2023-08-25 11:41:35 | Time Consuming: 4 ms | Connection: statement-52 | SQL: SELECT 1
  4456. 11:41:35.875 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:41:35 | Time Consuming: 3 ms | Connection: statement-51 | SQL: SELECT *
  4457. FROM goaf_syscfg
  4458. WHERE oc_id = 406283
  4459. 11:41:35.875 [XNIO-1 task-3] INFO p6spy - 2023-08-25 11:41:35 | Time Consuming: 3 ms | Connection: statement-52 | SQL: SELECT *
  4460. FROM goaf_devinfo
  4461. where oc_id = 406283
  4462. 11:42:22.351 [XNIO-1 task-3] INFO p6spy - 2023-08-25 11:42:22 | Time Consuming: 3 ms | Connection: statement-52 | SQL: SELECT 1
  4463. 11:42:22.351 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:42:22 | Time Consuming: 4 ms | Connection: statement-51 | SQL: SELECT 1
  4464. 11:42:22.359 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:42:22 | Time Consuming: 4 ms | Connection: statement-51 | SQL: SELECT *
  4465. FROM goaf_syscfg
  4466. WHERE oc_id = 406283
  4467. 11:42:22.359 [XNIO-1 task-3] INFO p6spy - 2023-08-25 11:42:22 | Time Consuming: 3 ms | Connection: statement-52 | SQL: SELECT *
  4468. FROM goaf_devinfo
  4469. where oc_id = 406283
  4470. 11:46:19.993 [XNIO-1 task-3] INFO p6spy - 2023-08-25 11:46:19 | Time Consuming: 4 ms | Connection: statement-52 | SQL: SELECT 1
  4471. 11:46:19.993 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:46:19 | Time Consuming: 4 ms | Connection: statement-51 | SQL: SELECT 1
  4472. 11:46:20.001 [XNIO-1 task-3] INFO p6spy - 2023-08-25 11:46:20 | Time Consuming: 4 ms | Connection: statement-52 | SQL: SELECT *
  4473. FROM goaf_syscfg
  4474. WHERE oc_id = 406283
  4475. 11:46:20.001 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:46:20 | Time Consuming: 4 ms | Connection: statement-51 | SQL: SELECT *
  4476. FROM goaf_devinfo
  4477. where oc_id = 406283
  4478. 11:46:27.456 [XNIO-1 task-3] INFO p6spy - 2023-08-25 11:46:27 | Time Consuming: 3 ms | Connection: statement-52 | SQL: SELECT 1
  4479. 11:46:27.466 [XNIO-1 task-3] INFO p6spy - 2023-08-25 11:46:27 | Time Consuming: 6 ms | Connection: statement-52 | SQL: SELECT
  4480. client_id,
  4481. client_title,
  4482. client_app_id,
  4483. client_app_key,
  4484. client_app_secret,
  4485. client_desc,
  4486. status,
  4487. is_fixed
  4488. FROM client
  4489. WHERE deleted_flag = 0
  4490. AND client_app_id = '10001'
  4491. AND client_app_key = '82a8bf439373e305'
  4492. 11:46:27.501 [XNIO-1 task-3] INFO p6spy - 2023-08-25 11:46:27 | Time Consuming: 13 ms | Connection: statement-52 | SQL: SELECT
  4493. A.client_id,
  4494. A.role_id,
  4495. A.permit_id,
  4496. A.permit_title,
  4497. A.permit_code,
  4498. A.permit_entry,
  4499. A.permit_desc,
  4500. A.permit_type,
  4501. A.parent_id,
  4502. A.root_id,
  4503. A.sort_no,
  4504. A.is_home
  4505. FROM s_role_permit AS A
  4506. WHERE 1 = 1
  4507. AND A.client_id = 2
  4508. AND A.role_id = 6
  4509. ORDER BY A.parent_id ASC ,A.sort_no ASC
  4510. 11:46:27.649 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:46:27 | Time Consuming: 3 ms | Connection: statement-51 | SQL: SELECT 1
  4511. 11:46:27.655 [XNIO-1 task-5] INFO p6spy - 2023-08-25 11:46:27 | Time Consuming: 3 ms | Connection: statement-52 | SQL: SELECT *
  4512. FROM goaf_devinfo
  4513. where oc_id = 406283
  4514. 11:46:27.682 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:46:27 | Time Consuming: 29 ms | Connection: statement-51 | SQL: SELECT count(*)
  4515. FROM msg AS M
  4516. WHERE M.oc_id = 406283
  4517. AND (
  4518. EXISTS (
  4519. SELECT 1 FROM msg_to TT
  4520. WHERE M.oc_id = TT.oc_id AND M.msg_id = TT.msg_id AND TT.msg_to_id = 406283 AND TT.status=0
  4521. ) OR
  4522. EXISTS (
  4523. SELECT 1 FROM msg_cc CC
  4524. WHERE M.oc_id = CC.oc_id AND M.msg_id = CC.msg_id AND CC.msg_cc_id = 406283 AND CC.status=0
  4525. )
  4526. )
  4527. 11:46:32.649 [XNIO-1 task-3] INFO p6spy - 2023-08-25 11:46:32 | Time Consuming: 5001 ms | Connection: statement-53 | SQL: SELECT 1
  4528. 11:46:32.655 [XNIO-1 task-4] INFO p6spy - 2023-08-25 11:46:32 | Time Consuming: 5002 ms | Connection: statement-54 | SQL: SELECT 1
  4529. 11:46:32.656 [XNIO-1 task-3] INFO p6spy - 2023-08-25 11:46:32 | Time Consuming: 6 ms | Connection: statement-51 | SQL: SELECT 1
  4530. 11:46:32.660 [XNIO-1 task-4] INFO p6spy - 2023-08-25 11:46:32 | Time Consuming: 4 ms | Connection: statement-52 | SQL: SELECT 1
  4531. 11:46:32.685 [XNIO-1 task-4] INFO p6spy - 2023-08-25 11:46:32 | Time Consuming: 25 ms | Connection: statement-52 | SQL: SELECT count(0) FROM goaf_sensor WHERE oc_id = 406283
  4532. 11:46:32.687 [XNIO-1 task-3] INFO p6spy - 2023-08-25 11:46:32 | Time Consuming: 25 ms | Connection: statement-51 | SQL: SELECT *
  4533. FROM goaf_syscfg
  4534. WHERE oc_id = 406283
  4535. 11:46:32.690 [XNIO-1 task-4] INFO p6spy - 2023-08-25 11:46:32 | Time Consuming: 4 ms | Connection: statement-52 | SQL: SELECT *
  4536. FROM goaf_sensor
  4537. where oc_id = 406283
  4538. LIMIT 10
  4539. 11:47:21.501 [XNIO-1 task-4] INFO p6spy - 2023-08-25 11:47:21 | Time Consuming: 4 ms | Connection: statement-52 | SQL: SELECT 1
  4540. 11:47:21.501 [XNIO-1 task-3] INFO p6spy - 2023-08-25 11:47:21 | Time Consuming: 3 ms | Connection: statement-51 | SQL: SELECT 1
  4541. 11:47:21.508 [XNIO-1 task-4] INFO p6spy - 2023-08-25 11:47:21 | Time Consuming: 3 ms | Connection: statement-52 | SQL: SELECT *
  4542. FROM goaf_syscfg
  4543. WHERE oc_id = 406283
  4544. 11:47:21.508 [XNIO-1 task-3] INFO p6spy - 2023-08-25 11:47:21 | Time Consuming: 3 ms | Connection: statement-51 | SQL: SELECT *
  4545. FROM goaf_devinfo
  4546. where oc_id = 406283
  4547. 11:48:34.594 [XNIO-1 task-3] INFO p6spy - 2023-08-25 11:48:34 | Time Consuming: 6 ms | Connection: statement-51 | SQL: SELECT 1
  4548. 11:48:34.594 [XNIO-1 task-4] INFO p6spy - 2023-08-25 11:48:34 | Time Consuming: 5 ms | Connection: statement-52 | SQL: SELECT 1
  4549. 11:48:34.604 [XNIO-1 task-3] INFO p6spy - 2023-08-25 11:48:34 | Time Consuming: 5 ms | Connection: statement-51 | SQL: SELECT *
  4550. FROM goaf_syscfg
  4551. WHERE oc_id = 406283
  4552. 11:48:34.604 [XNIO-1 task-4] INFO p6spy - 2023-08-25 11:48:34 | Time Consuming: 4 ms | Connection: statement-52 | SQL: SELECT *
  4553. FROM goaf_devinfo
  4554. where oc_id = 406283
  4555. 11:48:55.765 [XNIO-1 task-4] INFO p6spy - 2023-08-25 11:48:55 | Time Consuming: 3 ms | Connection: statement-52 | SQL: SELECT 1
  4556. 11:48:55.765 [XNIO-1 task-3] INFO p6spy - 2023-08-25 11:48:55 | Time Consuming: 3 ms | Connection: statement-51 | SQL: SELECT 1
  4557. 11:48:55.773 [XNIO-1 task-3] INFO p6spy - 2023-08-25 11:48:55 | Time Consuming: 4 ms | Connection: statement-51 | SQL: SELECT *
  4558. FROM goaf_syscfg
  4559. WHERE oc_id = 406283
  4560. 11:48:55.773 [XNIO-1 task-4] INFO p6spy - 2023-08-25 11:48:55 | Time Consuming: 4 ms | Connection: statement-52 | SQL: SELECT *
  4561. FROM goaf_devinfo
  4562. where oc_id = 406283
  4563. 11:50:40.742 [XNIO-1 task-3] INFO p6spy - 2023-08-25 11:50:40 | Time Consuming: 5004 ms | Connection: statement-57 | SQL: SELECT 1
  4564. 11:50:45.756 [XNIO-1 task-3] INFO p6spy - 2023-08-25 11:50:45 | Time Consuming: 5014 ms | Connection: statement-58 | SQL: SELECT 1
  4565. 11:50:45.760 [XNIO-1 task-3] INFO p6spy - 2023-08-25 11:50:45 | Time Consuming: 3 ms | Connection: statement-59 | SQL: SELECT 1
  4566. 11:50:45.774 [XNIO-1 task-3] INFO p6spy - 2023-08-25 11:50:45 | Time Consuming: 13 ms | Connection: statement-59 | SQL: UPDATE goaf_sensor
  4567. SET goaf_sensor_name = '900-1770',
  4568. modbus_id = 1,
  4569. sensor_baudrate = 9600,
  4570. goaf_sensor_ip = '192.168.3.12',
  4571. goaf_dev_name = 'compress',
  4572. goaf_dev_typename = '电机',
  4573. goaf_sensor_location = '12',
  4574. goaf_check_time_interval = 20,
  4575. goaf_install_time = '2023-08-23T16:43:40',
  4576. thv_acc_x = 3000,
  4577. thv_acc_y = 3000,
  4578. thv_acc_z = 3000,
  4579. thv_vel_x = 3000,
  4580. thv_vel_y = 3000,
  4581. thv_vel_z = 3000,
  4582. thv_dis_x = 3000,
  4583. thv_dis_y = 3000,
  4584. thv_dis_z = 3000,
  4585. thv_temperature = 50
  4586. WHERE goaf_sensor_id = 442139
  4587. 11:50:45.803 [XNIO-1 task-3] INFO p6spy - 2023-08-25 11:50:45 | Time Consuming: 3 ms | Connection: statement-59 | SQL: SELECT count(0) FROM goaf_sensor WHERE oc_id = 406283
  4588. 11:50:45.807 [XNIO-1 task-3] INFO p6spy - 2023-08-25 11:50:45 | Time Consuming: 3 ms | Connection: statement-59 | SQL: SELECT *
  4589. FROM goaf_sensor
  4590. where oc_id = 406283
  4591. LIMIT 10
  4592. 11:51:18.736 [XNIO-1 task-3] INFO p6spy - 2023-08-25 11:51:18 | Time Consuming: 5 ms | Connection: statement-59 | SQL: SELECT 1
  4593. 11:51:18.742 [XNIO-1 task-3] INFO p6spy - 2023-08-25 11:51:18 | Time Consuming: 5 ms | Connection: statement-59 | SQL: SELECT count(0) FROM goaf_sensor WHERE oc_id = 406283
  4594. 11:51:18.749 [XNIO-1 task-3] INFO p6spy - 2023-08-25 11:51:18 | Time Consuming: 6 ms | Connection: statement-59 | SQL: SELECT *
  4595. FROM goaf_sensor
  4596. where oc_id = 406283
  4597. LIMIT 10
  4598. 11:51:20.526 [XNIO-1 task-4] INFO p6spy - 2023-08-25 11:51:20 | Time Consuming: 4 ms | Connection: statement-59 | SQL: SELECT 1
  4599. 11:51:20.531 [XNIO-1 task-3] INFO p6spy - 2023-08-25 11:51:20 | Time Consuming: 4 ms | Connection: statement-60 | SQL: SELECT 1
  4600. 11:51:20.534 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:51:20 | Time Consuming: 6 ms | Connection: statement-62 | SQL: SELECT 1
  4601. 11:51:20.536 [XNIO-1 task-4] INFO p6spy - 2023-08-25 11:51:20 | Time Consuming: 4 ms | Connection: statement-59 | SQL: SELECT *
  4602. FROM goaf_syscfg
  4603. WHERE oc_id = 406283
  4604. 11:51:20.542 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:51:20 | Time Consuming: 4 ms | Connection: statement-62 | SQL: SELECT *
  4605. FROM goaf_baseinfo
  4606. WHERE oc_id = 406283
  4607. 11:51:20.543 [XNIO-1 task-3] INFO p6spy - 2023-08-25 11:51:20 | Time Consuming: 5 ms | Connection: statement-60 | SQL: SELECT count(0) FROM goaf_devinfo WHERE oc_id = 406283
  4608. 11:51:20.547 [XNIO-1 task-3] INFO p6spy - 2023-08-25 11:51:20 | Time Consuming: 4 ms | Connection: statement-60 | SQL: SELECT *
  4609. FROM goaf_devinfo
  4610. where oc_id = 406283
  4611. LIMIT 10
  4612. 11:51:26.303 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:51:26 | Time Consuming: 3 ms | Connection: statement-62 | SQL: SELECT 1
  4613. 11:51:26.307 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:51:26 | Time Consuming: 4 ms | Connection: statement-62 | SQL: SELECT count(0) FROM goaf_sensor WHERE oc_id = 406283
  4614. 11:51:26.309 [XNIO-1 task-3] INFO p6spy - 2023-08-25 11:51:26 | Time Consuming: 4 ms | Connection: statement-60 | SQL: SELECT 1
  4615. 11:51:26.311 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:51:26 | Time Consuming: 3 ms | Connection: statement-62 | SQL: SELECT *
  4616. FROM goaf_sensor
  4617. where oc_id = 406283
  4618. LIMIT 10
  4619. 11:51:26.314 [XNIO-1 task-3] INFO p6spy - 2023-08-25 11:51:26 | Time Consuming: 4 ms | Connection: statement-60 | SQL: SELECT
  4620. COUNT(*) AS 'goafSensorTotalNum',
  4621. IFNULL(SUM( CASE WHEN goaf_sensor_status = 1 THEN 1 ELSE 0 END ), 0) AS 'sensorOnlineNum'
  4622. FROM goaf_sensor
  4623. WHERE oc_id = 406283
  4624. 11:51:28.383 [XNIO-1 task-3] INFO p6spy - 2023-08-25 11:51:28 | Time Consuming: 6 ms | Connection: statement-60 | SQL: SELECT 1
  4625. 11:51:28.385 [XNIO-1 task-4] INFO p6spy - 2023-08-25 11:51:28 | Time Consuming: 8 ms | Connection: statement-59 | SQL: SELECT 1
  4626. 11:51:28.389 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:51:28 | Time Consuming: 10 ms | Connection: statement-62 | SQL: SELECT 1
  4627. 11:51:28.395 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:51:28 | Time Consuming: 4 ms | Connection: statement-62 | SQL: SELECT count(0) FROM goaf_sensor WHERE oc_id = 406283
  4628. 11:51:28.396 [XNIO-1 task-3] INFO p6spy - 2023-08-25 11:51:28 | Time Consuming: 5 ms | Connection: statement-60 | SQL: SELECT *
  4629. FROM goaf_devinfo
  4630. where oc_id = 406283
  4631. 11:51:28.396 [XNIO-1 task-4] INFO p6spy - 2023-08-25 11:51:28 | Time Consuming: 5 ms | Connection: statement-59 | SQL: SELECT *
  4632. FROM goaf_syscfg
  4633. WHERE oc_id = 406283
  4634. 11:51:28.399 [XNIO-1 task-2] INFO p6spy - 2023-08-25 11:51:28 | Time Consuming: 4 ms | Connection: statement-62 | SQL: SELECT *
  4635. FROM goaf_sensor
  4636. where oc_id = 406283
  4637. LIMIT 10
  4638. 11:52:21.710 [XNIO-1 task-3] INFO p6spy - 2023-08-25 11:52:21 | Time Consuming: 5 ms | Connection: statement-60 | SQL: SELECT 1
  4639. 11:52:21.729 [XNIO-1 task-3] INFO p6spy - 2023-08-25 11:52:21 | Time Consuming: 17 ms | Connection: statement-60 | SQL: UPDATE goaf_sensor
  4640. SET goaf_sensor_name = '900-1770',
  4641. modbus_id = 1,
  4642. sensor_baudrate = 9600,
  4643. goaf_sensor_ip = '192.168.3.12',
  4644. goaf_dev_name = 'compress',
  4645. goaf_dev_typename = '空压机',
  4646. goaf_sensor_location = '12',
  4647. goaf_check_time_interval = 20,
  4648. goaf_install_time = '2023-08-23T16:43:40',
  4649. thv_acc_x = 3000,
  4650. thv_acc_y = 3000,
  4651. thv_acc_z = 3000,
  4652. thv_vel_x = 3000,
  4653. thv_vel_y = 3000,
  4654. thv_vel_z = 3000,
  4655. thv_dis_x = 3000,
  4656. thv_dis_y = 3000,
  4657. thv_dis_z = 3000,
  4658. thv_temperature = 50
  4659. WHERE goaf_sensor_id = 442139
  4660. 11:52:21.764 [XNIO-1 task-3] INFO p6spy - 2023-08-25 11:52:21 | Time Consuming: 5 ms | Connection: statement-60 | SQL: SELECT count(0) FROM goaf_sensor WHERE oc_id = 406283
  4661. 11:52:21.770 [XNIO-1 task-3] INFO p6spy - 2023-08-25 11:52:21 | Time Consuming: 5 ms | Connection: statement-60 | SQL: SELECT *
  4662. FROM goaf_sensor
  4663. where oc_id = 406283
  4664. LIMIT 10
  4665. 12:28:37.386 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  4666. 12:28:37.388 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.4.Final
  4667. 12:28:37.390 [SpringApplicationShutdownHook] INFO io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
  4668. 12:28:37.392 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - Removing {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  4669. 12:28:37.392 [SpringApplicationShutdownHook] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 0 subscriber(s).
  4670. 12:28:37.393 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - stopped bean '_org.springframework.integration.errorLogger'
  4671. 12:28:37.404 [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)
  4672. 12:28:37.406 [SpringApplicationShutdownHook] INFO o.s.s.quartz.SchedulerFactoryBean - Shutting down Quartz Scheduler
  4673. 12:28:37.407 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
  4674. 12:28:37.407 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  4675. 12:28:37.407 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
  4676. 12:28:37.434 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown initiated...
  4677. 12:28:37.437 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown completed.
  4678. 12:28:40.659 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.0.Final
  4679. 12:28:40.706 [restartedMain] INFO com.zhyc.xps.XPSApplication - Starting XPSApplication using Java 17.0.6 with PID 4148 (E:\zhycnewprj\iotplatform\xps-server-3\xps-application\target\classes started by qzz19 in E:\zhycnewprj\iotplatform\xps-server-3)
  4680. 12:28:40.706 [restartedMain] INFO com.zhyc.xps.XPSApplication - The following 1 profile is active: "local"
  4681. 12:28:40.758 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
  4682. 12:28:40.758 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
  4683. 12:28:42.537 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
  4684. 12:28:42.540 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  4685. 12:28:42.628 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 76 ms. Found 0 Redis repository interfaces.
  4686. 12:28:42.799 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created.
  4687. 12:28:42.815 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created.
  4688. 12:28:43.544 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  4689. 12:28:43.544 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 2785 ms
  4690. 12:28:45.885 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor
  4691. 12:28:45.894 [restartedMain] INFO o.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  4692. 12:28:45.895 [restartedMain] INFO org.quartz.core.QuartzScheduler - Quartz Scheduler v.2.3.2 created.
  4693. 12:28:45.895 [restartedMain] INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized.
  4694. 12:28:45.896 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
  4695. Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  4696. NOT STARTED.
  4697. Currently in standby mode.
  4698. Number of jobs executed: 0
  4699. Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  4700. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
  4701. 12:28:45.896 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  4702. 12:28:45.896 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2
  4703. 12:28:45.896 [restartedMain] INFO org.quartz.core.QuartzScheduler - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@54a923e7
  4704. 12:28:47.596 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer - LiveReload server is running on port 35729
  4705. 12:28:47.601 [restartedMain] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 15 endpoint(s) beneath base path '/actuator/z'
  4706. 12:28:47.746 [restartedMain] INFO io.undertow.websockets.jsr - UT026003: Adding annotated server endpoint class com.zhyc.xps.common.ws.WebSocketServer for path /websocket/link
  4707. 12:28:47.777 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  4708. 12:28:47.778 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 1 subscriber(s).
  4709. 12:28:47.778 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - started bean '_org.springframework.integration.errorLogger'
  4710. 12:28:47.799 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  4711. 12:28:47.808 [restartedMain] INFO org.xnio - XNIO version 3.8.8.Final
  4712. 12:28:47.819 [restartedMain] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.8.Final
  4713. 12:28:47.849 [restartedMain] INFO org.jboss.threads - JBoss Threads version 3.5.0.Final
  4714. 12:28:47.902 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 1788 (http)
  4715. 12:28:47.903 [restartedMain] INFO o.s.s.quartz.SchedulerFactoryBean - Starting Quartz Scheduler now
  4716. 12:28:47.903 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  4717. 12:28:47.928 [restartedMain] INFO com.zhyc.xps.XPSApplication - Started XPSApplication in 7.742 seconds (process running for 8.543)
  4718. 12:28:47.930 [restartedMain] INFO com.zhyc.xps.sys.job.InitSystemJob - 初始化系统定时任务
  4719. 12:28:47.937 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Starting...
  4720. 12:28:48.277 [restartedMain] INFO p6spy - 2023-08-25 12:28:48 | Time Consuming: 13 ms | Connection: statement-0 | SQL: SELECT 1
  4721. 12:28:48.282 [restartedMain] INFO com.zaxxer.hikari.pool.HikariPool - DatebookHikariCP - Added connection com.p6spy.engine.wrapper.ConnectionWrapper@76bea12f
  4722. 12:28:48.286 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Start completed.
  4723. 12:28:48.357 [restartedMain] INFO p6spy - 2023-08-25 12:28:48 | Time Consuming: 6 ms | Connection: statement-0 | SQL: SELECT
  4724. A.job_id,
  4725. A.job_title,
  4726. A.job_desc,
  4727. A.status,
  4728. A.job_type,
  4729. A.job_code,
  4730. A.job_cron,
  4731. A.job_class_id,
  4732. B.job_class,
  4733. A.cycle_title,
  4734. A.cycle_period,
  4735. A.cycle_unit
  4736. FROM job AS A
  4737. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  4738. WHERE A.deleted_flag = 0
  4739. AND A.status = 1
  4740. ORDER BY A.job_id ASC
  4741. 12:28:48.377 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  4742. 12:28:48.379 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  4743. 12:28:49.142 [RMI TCP Connection(7)-192.168.3.5] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
  4744. 12:28:49.142 [RMI TCP Connection(7)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
  4745. 12:28:49.145 [RMI TCP Connection(7)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 3 ms
  4746. 12:28:49.147 [RMI TCP Connection(6)-192.168.3.5] INFO p6spy - 2023-08-25 12:28:49 | Time Consuming: 7 ms | Connection: statement-0 | SQL: SELECT 1
  4747. 12:28:49.161 [RMI TCP Connection(6)-192.168.3.5] INFO p6spy - 2023-08-25 12:28:49 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  4748. 12:29:02.170 [XNIO-1 task-3] INFO p6spy - 2023-08-25 12:29:02 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  4749. 12:29:05.873 [XNIO-1 task-3] INFO p6spy - 2023-08-25 12:29:05 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  4750. 12:29:05.904 [XNIO-1 task-3] INFO p6spy - 2023-08-25 12:29:05 | Time Consuming: 23 ms | Connection: statement-0 | SQL: SELECT
  4751. client_id,
  4752. client_title,
  4753. client_app_id,
  4754. client_app_key,
  4755. client_app_secret,
  4756. client_desc,
  4757. status,
  4758. is_fixed
  4759. FROM client
  4760. WHERE deleted_flag = 0
  4761. AND client_app_id = '10001'
  4762. AND client_app_key = '82a8bf439373e305'
  4763. 12:29:05.930 [XNIO-1 task-3] INFO p6spy - 2023-08-25 12:29:05 | Time Consuming: 11 ms | Connection: statement-0 | SQL: SELECT
  4764. A.oc_id,
  4765. B.oc_type_id,
  4766. B.oc_name,
  4767. A.account_id,
  4768. A.account_name,
  4769. A.account_real_name,
  4770. A.password,
  4771. A.account_type,
  4772. A.account_staff_no,
  4773. A.account_phone,
  4774. A.account_last_ip,
  4775. A.account_loc,
  4776. A.status,
  4777. A.account_avatar,
  4778. A.account_photo,
  4779. A.account_real_name,
  4780. A.account_intro,
  4781. A.wx_id,
  4782. A.is_fixed
  4783. FROM account AS A
  4784. LEFT JOIN oc AS B ON (A.oc_id = B.oc_id )
  4785. WHERE A.deleted_flag = 0
  4786. AND (A.account_name = 'system'
  4787. OR A.account_phone = 'system'
  4788. OR A.account_mail = 'system'
  4789. OR A.account_staff_no = 'system')
  4790. 12:29:05.942 [XNIO-1 task-3] INFO p6spy - 2023-08-25 12:29:05 | Time Consuming: 7 ms | Connection: statement-0 | SQL: SELECT
  4791. A.oc_id,
  4792. A.oc_name,
  4793. A.oc_type_id,
  4794. A.root_id,
  4795. A.parent_id,
  4796. A.admin_id,
  4797. B.account_name AS admin_name,
  4798. A.group_id,
  4799. A.node_left,
  4800. A.node_right,
  4801. A.node_level,
  4802. A.is_leaf,
  4803. A.status,
  4804. A.if_lic
  4805. FROM oc AS A
  4806. LEFT JOIN account AS B ON (A.oc_id = B.oc_id AND A.admin_id = B.account_id)
  4807. WHERE A.oc_id = 1
  4808. 12:29:05.950 [XNIO-1 task-3] INFO p6spy - 2023-08-25 12:29:05 | Time Consuming: 6 ms | Connection: statement-0 | SQL: SELECT
  4809. A.rm_id,
  4810. A.role_id,
  4811. B.role_type_id,
  4812. B.role_code,
  4813. B.role_name,
  4814. A.account_id
  4815. FROM s_role_member AS A
  4816. LEFT JOIN s_role AS B ON (A.role_id = B.role_id)
  4817. WHERE account_id = 1
  4818. LIMIT 1
  4819. 12:29:05.959 [XNIO-1 task-3] INFO p6spy - 2023-08-25 12:29:05 | Time Consuming: 6 ms | Connection: statement-0 | SQL: SELECT
  4820. A.gm_id,
  4821. A.oc_id,
  4822. A.group_id,
  4823. B.group_name,
  4824. B.node_left ,
  4825. B.node_right,
  4826. A.account_id
  4827. FROM s_group_member AS A
  4828. LEFT JOIN s_group AS B ON (A.oc_id = B.oc_id AND A.group_id = B.group_id)
  4829. WHERE B.deleted_flag = 0
  4830. AND A.oc_id = 1
  4831. AND A.account_id = 1
  4832. LIMIT 1
  4833. 12:29:05.971 [XNIO-1 task-3] INFO p6spy - 2023-08-25 12:29:05 | Time Consuming: 8 ms | Connection: statement-0 | SQL: SELECT
  4834. A.gmp_id,
  4835. A.oc_id,
  4836. A.group_id,
  4837. B.group_name,
  4838. A.account_id,
  4839. D.account_name,
  4840. D.account_real_name,
  4841. A.position_id,
  4842. C.position_name
  4843. FROM s_group_member_position A
  4844. LEFT JOIN s_group B ON (A.oc_id = B.oc_id AND A.group_id = B.group_id)
  4845. LEFT JOIN s_position C ON (A.oc_id = C.oc_id AND A.position_id = C.position_id)
  4846. LEFT JOIN account D ON (A.oc_id = D.oc_id AND A.account_id = D.account_id)
  4847. WHERE A.deleted_flag = 0
  4848. AND A.oc_id = 1
  4849. AND A.group_id = 1
  4850. AND A.account_id = 1
  4851. LIMIT 1
  4852. 12:29:05.983 [XNIO-1 task-3] INFO p6spy - 2023-08-25 12:29:05 | Time Consuming: 7 ms | Connection: statement-0 | SQL: SELECT
  4853. A.gmpg_id,
  4854. A.oc_id,
  4855. A.group_id,
  4856. A.account_id,
  4857. A.position_id,
  4858. A.grant_group_id,
  4859. B.group_name AS grant_group_name
  4860. FROM s_group_member_position_grant A
  4861. LEFT JOIN s_group B ON(A.oc_id = B.oc_id AND A.grant_group_id = B.group_id)
  4862. WHERE A.deleted_flag = 0
  4863. AND A.oc_id = 1
  4864. AND A.group_id = 1
  4865. AND A.account_id = 1
  4866. AND A.position_id = 1
  4867. LIMIT 1
  4868. 12:29:06.068 [XNIO-1 task-3] INFO p6spy - 2023-08-25 12:29:06 | Time Consuming: 6 ms | Connection: statement-0 | SQL: SELECT
  4869. client_id,
  4870. client_title,
  4871. client_app_id,
  4872. client_app_key,
  4873. client_app_secret,
  4874. client_desc,
  4875. status,
  4876. is_fixed
  4877. FROM client
  4878. WHERE deleted_flag = 0
  4879. AND client_app_id = '10001'
  4880. AND client_app_key = '82a8bf439373e305'
  4881. 12:29:06.096 [XNIO-1 task-3] INFO p6spy - 2023-08-25 12:29:06 | Time Consuming: 11 ms | Connection: statement-0 | SQL: SELECT
  4882. A.client_id,
  4883. A.role_id,
  4884. A.permit_id,
  4885. A.permit_title,
  4886. A.permit_code,
  4887. A.permit_entry,
  4888. A.permit_desc,
  4889. A.permit_type,
  4890. A.parent_id,
  4891. A.root_id,
  4892. A.sort_no,
  4893. A.is_home
  4894. FROM s_role_permit AS A
  4895. WHERE 1 = 1
  4896. AND A.client_id = 2
  4897. AND A.role_id = 1
  4898. ORDER BY A.parent_id ASC ,A.sort_no ASC
  4899. 12:29:06.307 [XNIO-1 task-3] INFO p6spy - 2023-08-25 12:29:06 | Time Consuming: 25 ms | Connection: statement-0 | SQL: SELECT count(*)
  4900. FROM msg AS M
  4901. WHERE M.oc_id = 1
  4902. AND (
  4903. EXISTS (
  4904. SELECT 1 FROM msg_to TT
  4905. WHERE M.oc_id = TT.oc_id AND M.msg_id = TT.msg_id AND TT.msg_to_id = 1 AND TT.status=0
  4906. ) OR
  4907. EXISTS (
  4908. SELECT 1 FROM msg_cc CC
  4909. WHERE M.oc_id = CC.oc_id AND M.msg_id = CC.msg_id AND CC.msg_cc_id = 1 AND CC.status=0
  4910. )
  4911. )
  4912. 12:29:12.310 [XNIO-1 task-3] INFO p6spy - 2023-08-25 12:29:12 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  4913. 12:29:12.390 [XNIO-1 task-3] INFO p6spy - 2023-08-25 12:29:12 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT count(0) FROM job AS A LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id) WHERE A.deleted_flag = 0
  4914. 12:29:12.397 [XNIO-1 task-3] INFO p6spy - 2023-08-25 12:29:12 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT
  4915. A.job_id,
  4916. A.job_title,
  4917. A.job_desc,
  4918. A.status,
  4919. A.job_type,
  4920. A.job_code,
  4921. A.job_cron,
  4922. A.job_class_id,
  4923. B.job_class,
  4924. A.cycle_title,
  4925. A.cycle_period,
  4926. A.cycle_unit
  4927. FROM job AS A
  4928. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  4929. WHERE A.deleted_flag = 0
  4930. ORDER BY A.job_id ASC
  4931. LIMIT 10
  4932. 12:29:21.853 [XNIO-1 task-2] INFO p6spy - 2023-08-25 12:29:21 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  4933. 12:29:21.865 [XNIO-1 task-2] INFO p6spy - 2023-08-25 12:29:21 | Time Consuming: 7 ms | Connection: statement-0 | SQL: SELECT
  4934. job_class_id,
  4935. job_class_title,
  4936. job_class_desc,
  4937. job_class
  4938. FROM job_class
  4939. WHERE deleted_flag = 0
  4940. ORDER BY job_class_id ASC
  4941. 12:29:21.873 [XNIO-1 task-3] INFO p6spy - 2023-08-25 12:29:21 | Time Consuming: 3 ms | Connection: statement-1 | SQL: SELECT 1
  4942. 12:29:21.886 [XNIO-1 task-3] INFO p6spy - 2023-08-25 12:29:21 | Time Consuming: 6 ms | Connection: statement-1 | SQL: SELECT
  4943. A.job_id,
  4944. A.job_title,
  4945. A.job_desc,
  4946. A.status,
  4947. A.job_type,
  4948. A.job_code,
  4949. A.job_cron,
  4950. A.job_class_id,
  4951. B.job_class,
  4952. A.cycle_title,
  4953. A.cycle_period,
  4954. A.cycle_unit
  4955. FROM job AS A
  4956. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  4957. WHERE A.job_id = 439094
  4958. 12:29:32.032 [XNIO-1 task-3] INFO p6spy - 2023-08-25 12:29:32 | Time Consuming: 18 ms | Connection: statement-1 | SQL: SELECT 1
  4959. 12:29:32.090 [XNIO-1 task-3] INFO p6spy - 2023-08-25 12:29:32 | Time Consuming: 21 ms | Connection: statement-1 | SQL: UPDATE job
  4960. SET job_title = '巡检天任务',
  4961. job_desc = '天任务',
  4962. status = 1,
  4963. job_type = 1,
  4964. job_code = 'Cron任务',
  4965. job_cron = '0 31 12 * * ?',
  4966. job_class_id = 2,
  4967. cycle_title = '天',
  4968. cycle_period = 0,
  4969. cycle_unit = 0,
  4970. updated_by = 1,
  4971. updated_at = '2023-08-25T12:29:32.064763400'
  4972. WHERE job_id = 439094
  4973. 12:29:32.155 [XNIO-1 task-3] INFO p6spy - 2023-08-25 12:29:32 | Time Consuming: 6 ms | Connection: statement-1 | SQL: SELECT count(0) FROM job AS A LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id) WHERE A.deleted_flag = 0
  4974. 12:29:32.166 [XNIO-1 task-3] INFO p6spy - 2023-08-25 12:29:32 | Time Consuming: 8 ms | Connection: statement-1 | SQL: SELECT
  4975. A.job_id,
  4976. A.job_title,
  4977. A.job_desc,
  4978. A.status,
  4979. A.job_type,
  4980. A.job_code,
  4981. A.job_cron,
  4982. A.job_class_id,
  4983. B.job_class,
  4984. A.cycle_title,
  4985. A.cycle_period,
  4986. A.cycle_unit
  4987. FROM job AS A
  4988. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  4989. WHERE A.deleted_flag = 0
  4990. ORDER BY A.job_id ASC
  4991. LIMIT 10
  4992. 12:29:38.338 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  4993. 12:29:38.339 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.4.Final
  4994. 12:29:38.341 [SpringApplicationShutdownHook] INFO io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
  4995. 12:29:38.343 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - Removing {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  4996. 12:29:38.343 [SpringApplicationShutdownHook] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 0 subscriber(s).
  4997. 12:29:38.343 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - stopped bean '_org.springframework.integration.errorLogger'
  4998. 12:29:38.352 [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)
  4999. 12:29:38.354 [SpringApplicationShutdownHook] INFO o.s.s.quartz.SchedulerFactoryBean - Shutting down Quartz Scheduler
  5000. 12:29:38.354 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
  5001. 12:29:38.354 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  5002. 12:29:38.354 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
  5003. 12:29:38.372 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown initiated...
  5004. 12:29:38.377 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown completed.
  5005. 12:29:41.490 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.0.Final
  5006. 12:29:41.537 [restartedMain] INFO com.zhyc.xps.XPSApplication - Starting XPSApplication using Java 17.0.6 with PID 16808 (E:\zhycnewprj\iotplatform\xps-server-3\xps-application\target\classes started by qzz19 in E:\zhycnewprj\iotplatform\xps-server-3)
  5007. 12:29:41.537 [restartedMain] INFO com.zhyc.xps.XPSApplication - The following 1 profile is active: "local"
  5008. 12:29:41.588 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
  5009. 12:29:41.589 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
  5010. 12:29:43.348 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
  5011. 12:29:43.352 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  5012. 12:29:43.441 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 76 ms. Found 0 Redis repository interfaces.
  5013. 12:29:43.608 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created.
  5014. 12:29:43.625 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created.
  5015. 12:29:44.366 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  5016. 12:29:44.366 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 2777 ms
  5017. 12:29:46.737 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor
  5018. 12:29:46.747 [restartedMain] INFO o.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  5019. 12:29:46.747 [restartedMain] INFO org.quartz.core.QuartzScheduler - Quartz Scheduler v.2.3.2 created.
  5020. 12:29:46.748 [restartedMain] INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized.
  5021. 12:29:46.748 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
  5022. Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  5023. NOT STARTED.
  5024. Currently in standby mode.
  5025. Number of jobs executed: 0
  5026. Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  5027. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
  5028. 12:29:46.748 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  5029. 12:29:46.748 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2
  5030. 12:29:46.748 [restartedMain] INFO org.quartz.core.QuartzScheduler - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@5a92c630
  5031. 12:29:48.441 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer - LiveReload server is running on port 35729
  5032. 12:29:48.448 [restartedMain] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 15 endpoint(s) beneath base path '/actuator/z'
  5033. 12:29:48.592 [restartedMain] INFO io.undertow.websockets.jsr - UT026003: Adding annotated server endpoint class com.zhyc.xps.common.ws.WebSocketServer for path /websocket/link
  5034. 12:29:48.622 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  5035. 12:29:48.623 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 1 subscriber(s).
  5036. 12:29:48.623 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - started bean '_org.springframework.integration.errorLogger'
  5037. 12:29:48.643 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  5038. 12:29:48.652 [restartedMain] INFO org.xnio - XNIO version 3.8.8.Final
  5039. 12:29:48.662 [restartedMain] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.8.Final
  5040. 12:29:48.692 [restartedMain] INFO org.jboss.threads - JBoss Threads version 3.5.0.Final
  5041. 12:29:48.750 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 1788 (http)
  5042. 12:29:48.751 [restartedMain] INFO o.s.s.quartz.SchedulerFactoryBean - Starting Quartz Scheduler now
  5043. 12:29:48.751 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  5044. 12:29:48.785 [restartedMain] INFO com.zhyc.xps.XPSApplication - Started XPSApplication in 7.784 seconds (process running for 8.586)
  5045. 12:29:48.789 [restartedMain] INFO com.zhyc.xps.sys.job.InitSystemJob - 初始化系统定时任务
  5046. 12:29:48.796 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Starting...
  5047. 12:29:49.266 [restartedMain] INFO p6spy - 2023-08-25 12:29:49 | Time Consuming: 22 ms | Connection: statement-0 | SQL: SELECT 1
  5048. 12:29:49.273 [restartedMain] INFO com.zaxxer.hikari.pool.HikariPool - DatebookHikariCP - Added connection com.p6spy.engine.wrapper.ConnectionWrapper@10b4c474
  5049. 12:29:49.280 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Start completed.
  5050. 12:29:49.411 [restartedMain] INFO p6spy - 2023-08-25 12:29:49 | Time Consuming: 6 ms | Connection: statement-0 | SQL: SELECT
  5051. A.job_id,
  5052. A.job_title,
  5053. A.job_desc,
  5054. A.status,
  5055. A.job_type,
  5056. A.job_code,
  5057. A.job_cron,
  5058. A.job_class_id,
  5059. B.job_class,
  5060. A.cycle_title,
  5061. A.cycle_period,
  5062. A.cycle_unit
  5063. FROM job AS A
  5064. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  5065. WHERE A.deleted_flag = 0
  5066. AND A.status = 1
  5067. ORDER BY A.job_id ASC
  5068. 12:29:49.450 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  5069. 12:29:49.454 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  5070. 12:29:50.064 [RMI TCP Connection(7)-192.168.3.5] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
  5071. 12:29:50.064 [RMI TCP Connection(7)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
  5072. 12:29:50.064 [RMI TCP Connection(6)-192.168.3.5] INFO p6spy - 2023-08-25 12:29:50 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  5073. 12:29:50.069 [RMI TCP Connection(7)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 5 ms
  5074. 12:29:50.080 [RMI TCP Connection(6)-192.168.3.5] INFO p6spy - 2023-08-25 12:29:50 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  5075. 12:30:02.890 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  5076. 12:30:02.892 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.4.Final
  5077. 12:30:02.899 [SpringApplicationShutdownHook] INFO io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
  5078. 12:30:02.905 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - Removing {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  5079. 12:30:02.905 [SpringApplicationShutdownHook] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 0 subscriber(s).
  5080. 12:30:02.905 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - stopped bean '_org.springframework.integration.errorLogger'
  5081. 12:30:02.911 [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)
  5082. 12:30:02.912 [SpringApplicationShutdownHook] INFO o.s.s.quartz.SchedulerFactoryBean - Shutting down Quartz Scheduler
  5083. 12:30:02.912 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
  5084. 12:30:02.912 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  5085. 12:30:02.912 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
  5086. 12:30:02.924 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown initiated...
  5087. 12:30:02.928 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown completed.
  5088. 12:30:05.956 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.0.Final
  5089. 12:30:06.004 [restartedMain] INFO com.zhyc.xps.XPSApplication - Starting XPSApplication using Java 17.0.6 with PID 13964 (E:\zhycnewprj\iotplatform\xps-server-3\xps-application\target\classes started by qzz19 in E:\zhycnewprj\iotplatform\xps-server-3)
  5090. 12:30:06.004 [restartedMain] INFO com.zhyc.xps.XPSApplication - The following 1 profile is active: "local"
  5091. 12:30:06.056 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
  5092. 12:30:06.057 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
  5093. 12:30:07.831 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
  5094. 12:30:07.834 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  5095. 12:30:07.922 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 75 ms. Found 0 Redis repository interfaces.
  5096. 12:30:08.090 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created.
  5097. 12:30:08.106 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created.
  5098. 12:30:08.841 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  5099. 12:30:08.841 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 2784 ms
  5100. 12:30:11.193 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor
  5101. 12:30:11.203 [restartedMain] INFO o.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  5102. 12:30:11.204 [restartedMain] INFO org.quartz.core.QuartzScheduler - Quartz Scheduler v.2.3.2 created.
  5103. 12:30:11.204 [restartedMain] INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized.
  5104. 12:30:11.205 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
  5105. Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  5106. NOT STARTED.
  5107. Currently in standby mode.
  5108. Number of jobs executed: 0
  5109. Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  5110. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
  5111. 12:30:11.205 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  5112. 12:30:11.205 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2
  5113. 12:30:11.205 [restartedMain] INFO org.quartz.core.QuartzScheduler - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@178e71e2
  5114. 12:30:12.899 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer - LiveReload server is running on port 35729
  5115. 12:30:12.906 [restartedMain] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 15 endpoint(s) beneath base path '/actuator/z'
  5116. 12:30:13.048 [restartedMain] INFO io.undertow.websockets.jsr - UT026003: Adding annotated server endpoint class com.zhyc.xps.common.ws.WebSocketServer for path /websocket/link
  5117. 12:30:13.079 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  5118. 12:30:13.079 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 1 subscriber(s).
  5119. 12:30:13.080 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - started bean '_org.springframework.integration.errorLogger'
  5120. 12:30:13.100 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  5121. 12:30:13.108 [restartedMain] INFO org.xnio - XNIO version 3.8.8.Final
  5122. 12:30:13.119 [restartedMain] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.8.Final
  5123. 12:30:13.148 [restartedMain] INFO org.jboss.threads - JBoss Threads version 3.5.0.Final
  5124. 12:30:13.199 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 1788 (http)
  5125. 12:30:13.201 [restartedMain] INFO o.s.s.quartz.SchedulerFactoryBean - Starting Quartz Scheduler now
  5126. 12:30:13.201 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  5127. 12:30:13.226 [restartedMain] INFO com.zhyc.xps.XPSApplication - Started XPSApplication in 7.76 seconds (process running for 8.586)
  5128. 12:30:13.228 [restartedMain] INFO com.zhyc.xps.sys.job.InitSystemJob - 初始化系统定时任务
  5129. 12:30:13.236 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Starting...
  5130. 12:30:13.572 [restartedMain] INFO p6spy - 2023-08-25 12:30:13 | Time Consuming: 13 ms | Connection: statement-0 | SQL: SELECT 1
  5131. 12:30:13.576 [restartedMain] INFO com.zaxxer.hikari.pool.HikariPool - DatebookHikariCP - Added connection com.p6spy.engine.wrapper.ConnectionWrapper@5ba1b178
  5132. 12:30:13.579 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Start completed.
  5133. 12:30:13.647 [restartedMain] INFO p6spy - 2023-08-25 12:30:13 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT
  5134. A.job_id,
  5135. A.job_title,
  5136. A.job_desc,
  5137. A.status,
  5138. A.job_type,
  5139. A.job_code,
  5140. A.job_cron,
  5141. A.job_class_id,
  5142. B.job_class,
  5143. A.cycle_title,
  5144. A.cycle_period,
  5145. A.cycle_unit
  5146. FROM job AS A
  5147. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  5148. WHERE A.deleted_flag = 0
  5149. AND A.status = 1
  5150. ORDER BY A.job_id ASC
  5151. 12:30:13.667 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  5152. 12:30:13.669 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  5153. 12:30:14.426 [RMI TCP Connection(7)-192.168.3.5] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
  5154. 12:30:14.427 [RMI TCP Connection(7)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
  5155. 12:30:14.428 [RMI TCP Connection(6)-192.168.3.5] INFO p6spy - 2023-08-25 12:30:14 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  5156. 12:30:14.429 [RMI TCP Connection(7)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 2 ms
  5157. 12:30:14.444 [RMI TCP Connection(6)-192.168.3.5] INFO p6spy - 2023-08-25 12:30:14 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  5158. 12:30:34.135 [nioEventLoopGroup-5-1] INFO p6spy - 2023-08-25 12:30:34 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  5159. 12:30:34.140 [nioEventLoopGroup-5-1] INFO p6spy - 2023-08-25 12:30:34 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT *
  5160. FROM goaf_sensor
  5161. WHERE goaf_sensor_ip = '192.168.3.12'
  5162. 12:31:00.024 [quartzScheduler_Worker-1] INFO c.zhyc.xps.goaf.job.GoafCheckTaskJob - 采空区检查任务执行派发--->CheckTask Generate----Start
  5163. 12:31:00.029 [quartzScheduler_Worker-1] INFO p6spy - 2023-08-25 12:31:00 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  5164. 12:31:00.045 [quartzScheduler_Worker-1] INFO c.zhyc.xps.goaf.job.GoafCheckTaskJob - 采空区检查任务执行派发--->CheckTask Generate----End
  5165. 12:31:14.347 [nioEventLoopGroup-5-1] INFO p6spy - 2023-08-25 12:31:14 | Time Consuming: 6 ms | Connection: statement-0 | SQL: SELECT 1
  5166. 12:31:14.354 [nioEventLoopGroup-5-1] INFO p6spy - 2023-08-25 12:31:14 | Time Consuming: 6 ms | Connection: statement-0 | SQL: SELECT *
  5167. FROM goaf_sensor
  5168. WHERE goaf_sensor_ip = '192.168.3.12'
  5169. 12:31:14.371 [nioEventLoopGroup-5-1] INFO p6spy - 2023-08-25 12:31:14 | Time Consuming: 12 ms | Connection: statement-0 | SQL: replace into uid_sequence(stub) values('a')
  5170. 12:31:14.377 [nioEventLoopGroup-5-1] INFO p6spy - 2023-08-25 12:31:14 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT LAST_INSERT_ID() AS uid
  5171. 12:31:14.415 [nioEventLoopGroup-5-1] INFO p6spy - 2023-08-25 12:31:14 | Time Consuming: 29 ms | Connection: statement-0 | SQL: insert into goaf_sensordata
  5172. ( goaf_data_id,
  5173. oc_id,
  5174. goaf_sensor_id,
  5175. goaf_sensor_name,
  5176. goaf_dev_name,
  5177. frequency_x,
  5178. frequency_y,
  5179. frequency_z,
  5180. acc_x,
  5181. acc_y,
  5182. acc_z,
  5183. vel_x,
  5184. vel_y,
  5185. vel_z,
  5186. dis_x,
  5187. dis_y,
  5188. dis_z,
  5189. sensor_temperature,
  5190. ang_x,
  5191. ang_y,
  5192. ang_z,
  5193. f_alarm_acc_x,
  5194. f_alarm_acc_y,
  5195. f_alarm_acc_z,
  5196. f_alarm_vel_x,
  5197. f_alarm_vel_y,
  5198. f_alarm_vel_z,
  5199. f_alarm_dis_x,
  5200. f_alarm_dis_y,
  5201. f_alarm_dis_z,
  5202. f_alarm_temperature,
  5203. td_wave_value_x,
  5204. td_wave_value_y,
  5205. td_wave_value_z,
  5206. goaf_datareport_time )
  5207. values ( 442170,
  5208. 406283,
  5209. 442139,
  5210. '900-1770',
  5211. 'compress',
  5212. 453,
  5213. 453,
  5214. 453,
  5215. 8499,
  5216. 6958,
  5217. 1018,
  5218. 20173,
  5219. 16699,
  5220. 2936,
  5221. 2681,
  5222. 2804,
  5223. 816,
  5224. 291,
  5225. -8580,
  5226. -389,
  5227. -154,
  5228. 0,
  5229. 0,
  5230. 0,
  5231. 0,
  5232. 0,
  5233. 0,
  5234. 0,
  5235. 0,
  5236. 0,
  5237. 0,
  5238. '-246,-528,-987,-1232,-1610,-2036,-2372,-2804,-3164,-3506,-3968,-4423,-4904,-5310,-5729,-5992,-6345,-6648,-6881,-7143,-7333,-7516,-7577,-7722,-7911,-8309,-9154,-9639,-9508,-9704,-9942,-9285,-9361,-9610,-9922,-10504,-10695,-10499,-10254,-10066,-9654,-9814,-9619,-9498,-9421,-9167,-8954,-8693,-8400,-8234,-8164,-7958,-7761,-7399,-6868,-6448,-5769,-5491,-4970,-4616,-4553,-4127,-3814,-3462,-2953,-2467,-2263,-1893,-1647,-1365,-1134,-1043,-907,-747,-594,-178,285,621,1057,1359,1722,2221,2721,3132,3447,3637,3811,3990,4195,4443,4611,4834,5055,5307,5462,5661,5825,5957,6052,6042,6124,6086,6142,6338,6457,6719,6908,7062,7297,7343,7550,7824,7830,7509,7377,7258,7139,7244,7048,6816,6422,6052,5896,5754,5656,5530,5322,5110,4754,4423,4128,3894,3767,3550,3318,3011,2601,2242,1782,1351,1068,727,400,11,-400,-950,-1360,-1839,-2347,-2649,-3095,-3465,-3798,-4204,-4568,-4913,-5201,-5426,-5697,-6002,-6198,-6426,-6734,-6983,-7258,-7557,-7832,-8126,-8329,-8533,-8999,-9907,-10199,-10920,-13131,-12070,-10557,-11026,-11572,-11484,-11517,-12119,-11726,-11974,-11909,-11483,-11373,-11017,-10855,-10896,-10516,-10215,-9942,-9568,-9322,-9412,-9179,-8655,-7999,-7212,-6504,-5791,-5496,-5402,-5406,-5470,-4870,-4320,-3716,-2985,-2820,-2766,-2611,-2285,-1835,-1395,-1351,-1304,-1223,-1121,-653,-95,327,745,1008,1317,1896,2456,2970,3402,3629,3858,4038,4258,4490,4668,4823,4951,5219,5421,5725,5927,6084,6281,6323,6387,6401,6516,6591,6744,6994,7228,7447,7571,7632,7668,7621,7590,7428,7407,7615,7597,7535,7028,6684,6404,6211,5824,5571,5789,5817,5779,5088,4732,4580,4361,4183,3973,3632,3315,3119,2724,2398,2149,1817,1585,1367,963,659,307,-75,-255,-711,-1142,-1421,-1866,-2167,-2451,-2873,-3207,-3562,-3983,-4294,-4587,-4910,-5143,-5419,-5716,-5935,-6246,-6558,-6849,-7109,-7316,-7468,-7815,-8264,-8255,-8299,-8590,-8697,-8639,-8750,-8940,-9176,-9388,-9225,-9123,-8774,-8132,-7595,-7583,-7691,-7889,-8016,-7962,-7875,-7616,-7312,-7220,-7105,-6949,-6864,-6715,-6564,-6347,-6131,-5889,-5683,-5475,-5332,-5147,-4783,-4592,-4122,-3836,-3707,-3391,-3249,-2942,-2660,-2382,-2115,-1774,-1602,-1332,-950,-670,-273,117,390,757,1106,1476,1925,2269,2598,2990,3406,3874,4259,4635,4980,5209,5449,5675,5720,5925,6183,6388,6689,6768,6829,6878,6911,6874,7004,6983,6787,6891,6942,6996,6969,6800,6852,6866,6857,6780,6641,6578,6474,6324,6128,6094,5915,5808,5762,5518,5452,5252,4940,4750,4488,4241,4089,3857,3629,3380,3062,2720,2451,2075,1792,1451,1094,806,461,126,-210,-592,-926,-1231,-1674,-1953,-2384,-2807,-3165,-3627,-3917,-4323,-4792,-5252,-5675,-6106,-6449,-6734,-7030,-7263,-7465,-7650,-7804,-8014,-8553,-9796,-10077,-9536,-9818,-9835,-9376,-9307,-9456,-10082,-10618,-10545,-10275,-10308,-10072,-9672,-9736,-9388,-9216,-9150,-8901,-8737,-8701,-8316,-8054,-7911,-7819,-7766,-7551,-7217,-6912,-6418,-5655,-5090,-4787,-4615,-4541,-4413,-4189,-3542,-3193,-2638,-2433,-2411,-1982,-1825,-1552,-1358,-1223,-1194,-949,-703,-162,296,712,1178,1631,2175,2768,3232,3580,3866,4023,4193,4369,4611,4880,5076,5391,5612,5826,6014,6066,6111,6134,6158,6077,6153,6184,6326,6553,6719,6918,7139,7160,7285,7670,7867,7678,7432,7291,7151,7131,6980,6903,6798,6340,6017,5672,5680,5729,5559,5495,5178,4951,4660,4359,4111,3969,3789,3577,3227,2874,2430,1966,1501,1094,698,323,-20,-461,-901,-1414,-1945,-2431,-2879,-3264,-3568,-4028,-4294,-4719,-5109,-5301,-5664,-5971,-6276,-6454,-6641,-6913,-7163,-7428,-7773,-8060,-8259,-8412,-8773,-10086,-11832,-12427,-11217,-10651,-10885,-11124,-10802,-10723,-11199,-11305,-12080,-12368,-11650,-10838,-10934,-10921,-10859,-10982,-10355,-9900,-9776,-9484,-9571,-9466,-8747,-8041,-7541,-7164,-6910,-6756,-6389,-6164,-5915,-5579,-5320,-4909,-4482,-4229,-4025,-3685,-3336,-2854,-2455,-2360,-2069,-1741,-1496,-965,-589,-481,-152,268,898,1500,1849,2119,2502,2906,3338,3641,3741,3988,4248,4640,5002,5128,5250,5410,5755,6030,6219,6280,6298,6326,6482,6659,6681,6773,6996,7197,7296,7312,7231,7335,7387,7367,7376,7283,7197,7283,7197,7148,7006,6710,6605,6505,6255,6178,6155,6064,5649,5098,4955,4744,4735,4586,4168,3790,3461,2994,2583,2287,1953,1715,1367,935,679,361,26,-210,-638,-1056,-1365,-1712,-2037,-2345,-2745,-3056,-3535,-3895,-4220,-4584,-4805,-5009,-5227,-5560,-5881,-6252,-6595,-6848,-7106,-7366,-7586,-7692,-7785,-7967,-8060,-8157,-8265,-8217,-8260,-8514,-8730,-8909,-8914,-8750,-8242,-7578,-7238,-7178,-7235,-7436,-7755,-7895,-7928,-7684,-7476,-7442,-7313,-7131,-7096,-7058,-6931,-6834,-6633,-6377,-6110,-5911,-5809,-5636,-5378,-5142,-4802,-4498,-4148,-3864,-3729,-3405,-3096,-2819,-2398,-2108,-1742,-1398,-1244,-805,-351,-90,315,599,900,1312,1702,2128,2457,2805,3122,3511,3873,4183,4572,4818,5071,5353,5497,5770,6005,6263,6536,6724,6791,6844,6886,6896,6935,6856,6835,6754,6741,6920,6931,6788,6769,6744,6825,6859,6690,6636,6627,6558,6455,6291,6205,6217,6070,5900,5762,5541,5328,5140,4742,4532,4287,3956,3774,3461,3158,2890,2551,2170,1854,1478,1157,866,566,323,69,-298,-559,-913,-1279,-1580,-2001,-2413,-2842,-3241,-3584,-3909,-4405,-4834,-5303,-5757,-6029,-6371,-6655,-6873,-7075,-7392,-7744,-8057,-8328,-9025,-9701,-9197,-8847,-9079,-8937,-8745,-9019,-9715,-9803,-9821,-9961,-9914,-9756,-9559,-9517,-9217,-9225,-9315,-9097,-9157,-8910,-8653,-8551,-8385,-8405,-8419,-8247,-7815,-7485,-6961,-6522,-6032,-5598,-5342,-5071,-4797,-4428,-4127,-3722,-3378,-3074,-2705,-2396,-2057,-1830,-1634,-1646,-1346,-1086,-919,-322,24,442,932,1433,1957,2528,3003,3342,3655,3823,4011,4214,4388,4648,4874,5058,5238,5351,5490,5620,5708,5788,5798,5895,5914,6012,6075,6220,6434,6660,6937,7031,7209,7373,7542,7656,7619,7505,7375,7142,7098,6971,6897,6918,6643,6314,5991,5813,5715,5638,5467,5274,5118,4737,4472,4138,3771,3685,3381,3066,2793,2399,1979,1550,996,648,246,-127,-454,-922,-1386,-1856,-2351,-2845,-3164,-3604,-3936,-4298,-4649,-4919,-5246,-5579,-5765,-6065,-6182,-6313,-6671,-6875,-7187,-7457,-7655,-7886,-8142,-8604,-9686,-10966,-11304,-10762,-10499,-10549,-10728,-10783,-10271,-10335,-10750,-11175,-11881,-11925,-11295,-10876,-10899,-10887,-10999,-10943,-10455,-10171,-10118,-9926,-9808,-9424,-8716,-8218,-7747,-7430,-7233,-6925,-6541,-6221,-5929,-5490,-5151,-4747,-4398,-4201,-3846,-3421,-2985,-2596,-2382,-2162,-1926,-1498,-1065,-749,-445,-153,298,973,1501,1896,2272,2537,3014,3424,3650,3876,4054,4200,4512,4775,4970,5243,5336,5401,5620,5769,5879,5998,6083,6170,6282,6417,6592,6846,6975,7087,7229,7294,7442,7446,7472,7471,7317,7240,7313,7347,7330,7123,6819,6657,6527,6378,6274,6280,5965,5498,5155,4892,4833,4760,4592,4148,3835,3376,2957,2680,2313,2198,1834,1422,1134,818,516,328,-43,-458,-826,-1206,-1518,-1749,-2141,-2459,-2857,-3302,-3648,-3950,-4201,-4423,-4648,-4960,-5178,-5565,-5841,-6214,-6504,-6643,-6892,-7040,-7204,-7324,-7558,-7718,-7892,-8032,-8266,-8476,-8605,-8737,-8793,-8435,-7908,-7845,-7698,-7517,-7559,-8048,-8334,-8304,-8164,-8038,-8006,-7947,-7737,-7637,-7717,-7505,-7290,-7201,-7006,-6723,-6581,-6388,-6243,-6109,-5758,-5493,-5134,-4798,-4537,-4279,-4056,-3762,-3421,-3081,-2770,-2426,-2052,-1645,-1406,-1107,-680,-463,-6,337,488,960,1242,1519,1857,2210,2557,2886,3147,3514,3892,4122,4476,4815,5076,5363,5685,5844,6167,6393,6571,6707,6824,6872,6887,6934,6842,6855,6794,6776,6839,6830,6846,6798,6733,6789,6830,6779,6750,6714,6660,6570,6408,6254,6102,5928,5785,5626,5433,5252,5016,4755,4504,4245,3999,3821,3519,3333,3030,2633,2416,1989,1759,1490,1208,907,600,296,41,-287,-628,-934,-1323,-1700,-2035,-2444,-2864,-3213,-3611,-3999,-4532,-5001,-5395,-5777,-6140,-6334,-6653,-6966,-7135,-7417,-7593,-7726,-7928,-8157,-8639,-9110,-9265,-9210,-9545,-9372,-9193,-9391,-9509,-10073,-10388,-10386,-10289,-10134,-9868,-9718,-9736,-9581,-9463,-9378,-9214,-9042,-8696,-8595,-8326,-8214,-8132,-7713,-7493,-6966,-6403,-5852,-5384,-4968,-4793,-4498,-4230,-3902,-3393,-2926,-2571,-2242,-1923,-1646,-1331,-1160,-1019,-927,-792,-481,-98,365,768,1162,1574,1918,2435,2941,3230,3516,3779,3864,4067,4310,4450,4685,4942,5052,5285,5342,5503,5766,5859,5985,6150,6125,6149,6297,6361,6506,6723,6828,7083,7255,7296,7509,7827,7921,7568,7302,7236,7101,7134,7162,6817,6390,6016,5781,5704,5592,5430,5329,5046,4763,4404,3999,3839,3664,3433,3242,2949,2516,2220,1649,1212,957,513,330,-76,-539,-961,-1456,-1962,-2362,-2793,-3171,-3474,-3874,-4215,-4520,-4916,-5214,-5465,-5765,-5975,-6190,-6402,-6752,-7082,-7286,-7500,-7821,-8036,-8268,-8528,-8979,-9844,-10099,-10623,-12829,-12168,-10559,-10894,-11471,-11528,-11476,-11960,-11684,-11886,-11900,-11503,-11380,-10994,-10831,-10879,-10626,-10304,-10011,-9721,-9361,-9472,-9279,-8588,-8044,-7174,-6384,-5978,-5615,-5525,-5585,-5392,-4902,-4365,-3685,-3079,-2861,-2679,-2514,-2226,-1769,-1425,-1268,-1189,-1138,-968,-529,9,505,914,1238,1488,2019,2580,3009,3549,3757,3862,4015,4241,4468,4735,4887,4993,5213,5309,5613,5933,6098,6313,6307,6299,6464,6479,6644,6743,6877,7159,7355,7524,7615,7721,7549,7575,7434,7321,7456,7584,7451,7230,6796,6344,6137,5723,5582,5750,5893,5628,5186,4808,4535,4287,4046,3830,3569,3274,3010,2637,2368,2019,1760,',
  5239. '6819,6648,6524,6426,6242,6148,6004,5831,5616,5293,5166,5145,4990,4807,4691,4420,4202,3994,3648,3376,3037,2660,2250,1907,1586,1348,1192,1050,1307,1213,583,115,-637,-1288,-1318,-1256,-1264,-1575,-2051,-2708,-3197,-3362,-3524,-3635,-3776,-4011,-4318,-4665,-4913,-4946,-4973,-5053,-5361,-6046,-6674,-6964,-7162,-7094,-6953,-6834,-6600,-6578,-6642,-6845,-7141,-7429,-7598,-7677,-7685,-7563,-7265,-6800,-6440,-6249,-6238,-6328,-6458,-6610,-6683,-6645,-6766,-6991,-7137,-7115,-6943,-6649,-6464,-6145,-5767,-5542,-5247,-4948,-4802,-4515,-4240,-4019,-3618,-3220,-2778,-2296,-1795,-1330,-927,-662,-369,-173,-109,-80,47,65,364,1003,1832,2505,2739,2889,3030,3378,3828,4439,5031,5406,5646,5718,5837,5904,6073,6252,6484,6556,6533,6426,6318,6180,6101,6212,6299,6491,6540,6609,6574,6521,6449,6466,6499,6639,6747,6763,6781,6683,6567,6606,6547,6351,6287,5992,5744,5523,5194,4875,4369,3860,3524,3188,2791,2507,2161,1868,1724,1542,1456,1377,867,880,550,484,-248,-1712,-2297,-2389,-2349,-2224,-2414,-3137,-3371,-3626,-3894,-4048,-3918,-4087,-4200,-4423,-4673,-4726,-4513,-4281,-4281,-4711,-5715,-6374,-6827,-6889,-6314,-5675,-5139,-4800,-4923,-5418,-5907,-6252,-6311,-6216,-6359,-6650,-6788,-6608,-6253,-5830,-5516,-5397,-5525,-5782,-5934,-6069,-6022,-6132,-6348,-6626,-6966,-6902,-6584,-6212,-5899,-5575,-5126,-4582,-4232,-4097,-3866,-3658,-3446,-3212,-3055,-2637,-2137,-1774,-1216,-657,-289,10,273,488,745,1044,1314,1575,1769,1778,1737,1671,1763,2192,3135,3921,4483,5039,4970,4905,4956,5271,5679,6025,6271,6298,6510,6680,6690,6729,6834,6984,7143,7224,7241,7280,7286,7342,7385,7269,7218,7235,7257,7239,7159,7110,7010,6889,6766,6611,6410,6235,6034,5836,5581,5367,5115,4826,4593,4285,3994,3666,3470,3197,2940,2616,2162,1789,1624,1754,1670,1447,982,455,2,8,220,185,143,-483,-1158,-1826,-2131,-1844,-1610,-1404,-1325,-1403,-1675,-1981,-2155,-2296,-2401,-2481,-2597,-2734,-2943,-3206,-3459,-3726,-3918,-4013,-4174,-4380,-4747,-5052,-5347,-5568,-5710,-5882,-6074,-6246,-6299,-6325,-6333,-6315,-6264,-6219,-6132,-6121,-6118,-6045,-5907,-5769,-5620,-5525,-5326,-5068,-4805,-4600,-4430,-4282,-4071,-3735,-3580,-3248,-3055,-2945,-2703,-2667,-2668,-2479,-2253,-1890,-1324,-912,-529,-105,174,315,337,340,699,1204,1739,2154,2395,2506,2551,2698,2952,3296,3550,3789,4097,4282,4420,4550,4602,4823,5053,5253,5555,5781,5978,6169,6272,6340,6472,6600,6716,6906,7035,7142,7236,7195,7274,7316,7296,7315,7248,7163,7091,6924,6834,6645,6391,6280,6093,5813,5501,5158,4995,4903,4645,4426,4165,3869,3498,3144,2725,2321,2004,1651,1443,1095,1093,1658,1519,983,426,-693,-1333,-1198,-1142,-1018,-1129,-1547,-2175,-2690,-2891,-3158,-3204,-3407,-3528,-3694,-4110,-4360,-4478,-4501,-4663,-4675,-5147,-5806,-6397,-7054,-7314,-7334,-7045,-6808,-6664,-6694,-6862,-7153,-7529,-7774,-7963,-8082,-8039,-7798,-7544,-7149,-6879,-6637,-6375,-6417,-6535,-6577,-6634,-6704,-6830,-7040,-7131,-7054,-6896,-6457,-6018,-5686,-5186,-4841,-4484,-4288,-4167,-4057,-3786,-3467,-3275,-2886,-2555,-2218,-1677,-1239,-835,-530,-446,-335,-298,-236,-303,-267,-34,540,1326,1929,2307,2467,2530,2789,3239,3882,4582,4942,5288,5352,5465,5560,5647,5955,6248,6463,6494,6546,6404,6298,6259,6304,6521,6695,6845,6987,7064,7060,7039,7018,7087,7173,7200,7247,7290,7185,7124,6958,6791,6569,6304,6137,5837,5482,5175,4726,4059,3596,3169,2699,2263,1871,1567,1371,1284,1452,2082,1998,1634,1019,22,-1147,-2411,-2343,-1580,-1250,-1925,-2314,-2216,-2447,-3019,-3460,-3852,-3811,-3577,-4016,-4326,-4407,-4426,-4279,-4408,-4880,-5330,-5834,-6104,-5886,-5696,-5658,-5537,-5528,-5413,-5473,-5801,-6037,-6047,-6088,-6291,-6624,-6799,-6561,-6412,-6374,-6310,-6345,-6141,-5993,-5984,-5950,-5974,-6127,-6267,-6293,-6180,-5966,-5886,-5821,-5541,-5175,-4871,-4515,-4423,-4337,-4120,-3846,-3561,-3396,-3374,-3153,-2733,-2483,-2065,-1671,-1493,-1150,-904,-736,-389,-65,200,507,678,779,1080,1274,1507,1804,2120,2561,3129,3601,3962,4255,4433,4426,4595,5105,5603,5951,6253,6458,6581,6749,6757,6853,7171,7458,7695,7806,7819,7939,8018,7999,7976,7950,7805,7768,7656,7556,7451,7322,7197,6986,6641,6465,6343,6076,5867,5494,5109,4905,4578,4231,3954,3648,3431,3309,3181,2934,2660,2336,2141,2056,1859,1625,1250,812,523,392,549,716,779,376,-519,-1083,-1432,-1493,-1340,-1315,-1240,-1087,-1049,-1304,-1614,-1838,-2049,-2282,-2452,-2516,-2569,-2774,-3013,-3362,-3698,-3902,-4111,-4252,-4360,-4560,-4880,-5228,-5484,-5678,-5766,-5877,-6063,-6248,-6274,-6293,-6325,-6290,-6165,-6095,-6035,-5966,-5790,-5641,-5476,-5322,-5162,-5084,-5018,-4688,-4477,-4229,-4128,-4011,-3827,-3533,-3366,-3279,-3105,-3139,-3147,-3215,-3078,-2924,-2582,-2133,-1711,-1233,-869,-548,-265,-127,-142,-21,298,889,1434,1866,2116,2269,2333,2469,2776,3204,3488,3706,3943,4135,4316,4528,4712,4896,5197,5533,5751,6033,6288,6463,6679,6786,6926,7083,7234,7340,7514,7614,7653,7669,7608,7534,7426,7246,7141,6981,6834,6714,6516,6340,6168,5957,5715,5449,5002,4836,4716,4450,4342,4109,3734,3516,3186,2828,2703,2565,2373,2173,1799,1490,2174,2225,1323,534,-245,-703,-810,-480,-508,-716,-1039,-1800,-2300,-2450,-2687,-2899,-2999,-3259,-3488,-3884,-4326,-4370,-4410,-4562,-4652,-5038,-5604,-6249,-6793,-7056,-7170,-7197,-7130,-6984,-6958,-7018,-7199,-7311,-7486,-7652,-7820,-7909,-7762,-7480,-7082,-6784,-6428,-6217,-6108,-6102,-6222,-6231,-6240,-6419,-6629,-6745,-6812,-6668,-6437,-6263,-5947,-5557,-5308,-5047,-4872,-4781,-4602,-4429,-4237,-3999,-3792,-3430,-3042,-2598,-2223,-1770,-1401,-1247,-1053,-886,-807,-648,-574,-499,-259,122,756,1446,2188,2585,2823,2994,3386,3798,4370,4923,5385,5727,5863,6034,6155,6394,6544,6842,6908,6999,6940,6809,6746,6668,6692,6742,6958,6967,7073,7049,7002,6971,6868,6819,6825,6859,6849,6909,6715,6558,6377,6178,6028,5820,5537,5261,4894,4386,3897,3389,3046,2708,2319,2040,1848,1722,1792,2120,2294,2204,1927,1213,329,-357,-995,-1898,-1839,-1186,-1802,-2427,-2131,-2131,-2429,-2928,-3681,-3981,-3894,-4041,-4181,-4168,-4475,-4630,-4686,-4988,-5316,-5729,-6050,-6009,-5802,-5671,-5549,-5541,-5626,-5629,-5750,-5945,-6032,-6151,-6364,-6398,-6483,-6439,-6187,-6010,-5825,-5733,-5750,-5576,-5398,-5485,-5646,-5840,-6014,-5967,-6002,-6029,-5934,-5817,-5649,-5376,-5106,-4910,-4776,-4772,-4613,-4452,-4273,-4080,-3834,-3695,-3496,-3138,-2671,-2206,-1981,-1718,-1499,-1162,-763,-470,-86,133,344,626,1059,1450,1767,1898,2072,2495,3018,3626,4164,4511,4643,4835,5061,5575,6076,6409,6671,6889,6984,6987,6955,7146,7416,7653,7788,7799,7724,7741,7751,7710,7691,7582,7477,7299,7205,7149,7069,6940,6821,6541,6281,6177,6055,5861,5653,5325,5086,4855,4551,4396,4198,4012,3887,3725,3542,3347,3077,2805,2525,2223,2005,1723,1455,1303,1318,1283,1196,911,99,-417,-599,-687,-947,-1098,-971,-901,-819,-1064,-1389,-1540,-1675,-1988,-2129,-2215,-2317,-2483,-2767,-2932,-3171,-3393,-3607,-3736,-3765,-3922,-4174,-4465,-4757,-4956,-5110,-5236,-5414,-5560,-5793,-5928,-6053,-6165,-6132,-6163,-6136,-6056,-5991,-5954,-5837,-5754,-5622,-5480,-5452,-5338,-5142,-5092,-4971,-4823,-4735,-4548,-4367,-4226,-4038,-3821,-3680,-3574,-3407,-3294,-3117,-2956,-2815,-2503,-2220,-1782,-1341,-953,-455,-138,230,462,650,995,1301,1713,2101,2481,2780,3002,3174,3336,3527,3779,4082,4375,4655,4875,5087,5235,5455,5629,5882,6129,6338,6483,6613,6707,6838,6889,6951,7159,7168,7239,7271,7215,7112,7088,6967,6930,6843,6725,6586,6433,6332,6186,6081,5864,5714,5374,5091,5069,4998,4848,4705,4500,4313,4109,3808,3556,3249,2940,2639,2385,2080,1780,1494,1157,1145,1230,1043,593,42,-714,-1174,-1205,-1241,-1315,-1637,-2132,-2733,-3121,-3383,-3540,-3649,-3868,-4028,-4371,-4745,-4894,-4953,-5044,-5113,-5492,-6146,-6733,-7140,-7277,-7220,-7081,-6897,-6686,-6626,-6683,-6848,-7119,-7374,-7581,-7682,-7709,-7452,-7055,-6649,-6234,-6080,-6080,-6192,-6337,-6530,-6534,-6593,-6827,-6937,-7073,-7110,-6824,-6617,-6395,-6098,-5835,-5504,-5289,-5066,-4836,-4514,-4298,-4027,-3689,-3360,-2912,-2451,-2015,-1566,-1105,-713,-398,-191,-67,-87,29,78,254,948,1765,2498,2915,2977,3109,3449,3841,4484,5150,5576,5857,6031,6037,6093,6232,6348,6642,6721,6717,6619,6490,6308,6198,6252,6377,6567,6608,6701,6665,6571,6540,6450,6458,6635,6663,6782,6743,6631,6527,6431,6336,6247,6075,5815,5642,5346,5072,4756,4209,3781,3527,3096,2834,2456,2159,1928,1685,1521,1481,1365,812,789,319,537,-95,-1470,-2164,-2329,-2303,-2316,-2365,-3087,-3303,-3550,-3850,-4105,-3997,-4126,-4296,-4419,-4733,-4787,-4560,-4425,-4424,-4921,-5916,-6559,-6863,-6846,-6294,-5640,-5128,-4857,-4954,-5458,-5896,-6176,-6267,-6177,-6373,-6621,-6669,-6475,-6156,-5708,-5407,-5322,-5369,-5654,-5923,-5992,-5998,-6132,-6295,-6669,-6952,-6839,-6569,-6135,-5841,-5608,-5171,-4730,-4457,-4223,-4009,-3761,-3618,-3457,-3192,-2798,-2322,-1894,-1339,-887,-433,-5,278,522,680,1040,1321,1623,1881,1928,2054,1956,1954,2241,2923,3860,4605,5048,5229,5221,5238,5422,5867,6056,6275,6497,6655,6914,6882,6859,6953,7082,7141,7266,7294,7320,7312,',
  5240. '626,582,558,561,565,609,673,770,921,1115,1295,1432,1520,1546,1533,1479,1390,1255,1109,940,775,627,512,417,339,214,106,139,178,378,638,934,1291,1566,1618,1460,1200,923,735,569,396,131,-121,-395,-595,-704,-717,-588,-395,-189,-60,88,253,482,709,817,760,418,-86,-748,-1436,-2006,-2376,-2435,-2231,-1818,-1297,-751,-307,-5,113,36,-154,-400,-606,-725,-756,-721,-672,-652,-619,-555,-516,-533,-657,-872,-1119,-1358,-1543,-1666,-1690,-1596,-1395,-1098,-745,-377,-40,243,436,539,535,448,335,199,96,34,-10,-17,5,-20,-71,-167,-356,-554,-610,-527,-356,-97,151,381,538,719,938,1151,1343,1471,1532,1466,1317,1091,867,665,493,347,220,111,18,-5,8,91,259,492,767,1044,1273,1459,1603,1700,1749,1733,1679,1576,1454,1341,1212,1087,996,932,886,870,917,1007,1107,1190,1242,1249,1209,1136,1055,985,824,569,302,160,31,50,268,583,914,1096,1087,899,806,625,446,275,81,-135,-420,-623,-825,-910,-905,-851,-841,-883,-849,-622,-140,454,923,1019,656,-140,-1167,-2170,-2901,-3293,-3297,-2977,-2564,-2108,-1641,-1117,-602,-260,-205,-376,-657,-958,-1169,-1280,-1293,-1284,-1285,-1258,-1151,-958,-773,-688,-736,-908,-1162,-1433,-1693,-1874,-1936,-1869,-1601,-1186,-706,-221,230,592,792,802,675,469,198,-96,-357,-538,-663,-724,-712,-645,-465,-218,24,273,465,503,356,55,-184,-213,-33,142,282,501,699,854,871,851,839,890,989,1037,1037,993,942,852,747,632,544,492,468,485,508,541,576,631,654,648,647,637,698,757,816,881,896,864,785,671,513,347,153,-21,-142,-228,-286,-304,-271,-190,-49,49,55,3,-108,-227,-232,-104,20,65,-65,-410,-737,-895,-824,-629,-475,-458,-561,-710,-839,-864,-784,-620,-494,-445,-444,-476,-546,-632,-719,-815,-872,-918,-978,-1083,-1223,-1355,-1434,-1438,-1387,-1338,-1316,-1283,-1263,-1259,-1274,-1328,-1421,-1517,-1618,-1677,-1643,-1555,-1393,-1190,-993,-845,-715,-603,-540,-521,-564,-631,-665,-677,-687,-682,-687,-687,-618,-552,-485,-377,-269,-165,-103,-137,-250,-380,-508,-569,-536,-455,-372,-241,-77,67,152,213,319,419,537,607,637,638,584,522,421,319,215,145,107,79,80,85,114,157,226,335,466,610,769,919,1043,1139,1200,1224,1212,1171,1092,1005,907,817,738,677,639,626,647,693,759,821,886,995,1150,1308,1428,1483,1479,1415,1342,1235,1102,947,758,560,385,247,25,-162,-132,-74,141,425,771,1219,1515,1638,1614,1425,1181,977,779,568,295,48,-226,-469,-646,-695,-636,-486,-228,-4,154,289,470,638,798,917,859,545,-56,-865,-1699,-2354,-2728,-2713,-2400,-1882,-1321,-828,-397,-116,31,-5,-152,-381,-621,-780,-839,-831,-812,-770,-692,-567,-465,-433,-525,-730,-1023,-1360,-1634,-1810,-1849,-1733,-1444,-1042,-574,-91,318,632,819,858,751,540,273,16,-187,-330,-376,-332,-291,-280,-234,-250,-394,-544,-593,-508,-341,-113,165,418,602,763,911,1105,1315,1454,1506,1421,1270,1070,851,649,491,373,254,149,67,37,48,133,298,533,816,1086,1333,1532,1682,1749,1763,1755,1712,1636,1524,1425,1305,1178,1058,956,858,785,817,901,991,1056,1065,1029,975,903,849,784,736,463,-33,-149,252,826,1156,1218,1135,1059,933,524,175,55,103,165,175,74,-117,-228,-333,-359,-461,-640,-810,-771,-440,-62,153,92,-135,-463,-833,-1277,-1715,-2052,-2195,-2154,-2063,-1949,-1775,-1509,-1246,-1072,-1060,-1116,-1192,-1277,-1353,-1419,-1462,-1496,-1445,-1303,-1084,-915,-843,-826,-816,-821,-899,-995,-1102,-1175,-1187,-1132,-1019,-908,-784,-589,-363,-197,-98,-80,-102,-94,-129,-238,-335,-384,-400,-384,-389,-399,-325,-203,-62,69,145,134,101,54,-16,-72,-90,-36,130,328,487,644,740,735,693,711,785,926,1027,1030,997,915,828,725,652,615,625,655,684,727,796,882,923,928,882,816,762,702,673,647,605,546,468,392,315,261,200,133,50,-18,-75,-140,-194,-215,-176,-141,-105,-90,-89,-47,44,156,245,245,116,-91,-380,-610,-713,-680,-543,-421,-393,-494,-652,-765,-791,-735,-645,-555,-458,-367,-364,-457,-583,-717,-844,-948,-1035,-1098,-1178,-1300,-1431,-1529,-1563,-1545,-1454,-1343,-1279,-1256,-1232,-1220,-1239,-1303,-1420,-1515,-1605,-1685,-1688,-1596,-1438,-1279,-1122,-962,-785,-610,-463,-373,-319,-313,-333,-365,-415,-461,-537,-576,-578,-550,-486,-432,-373,-347,-385,-513,-657,-766,-833,-811,-689,-497,-313,-89,138,303,406,452,516,599,657,632,571,500,405,309,218,143,93,79,80,95,129,191,269,325,409,505,630,781,898,1021,1107,1152,1159,1150,1111,1053,993,943,895,838,808,783,752,732,716,705,694,690,719,796,924,1048,1137,1188,1210,1215,1225,1211,1138,1021,828,625,443,237,30,44,274,417,572,859,1247,1561,1665,1607,1392,1135,931,763,567,348,156,-99,-327,-483,-547,-459,-322,-111,79,167,235,365,546,716,807,702,409,-66,-689,-1375,-1975,-2363,-2532,-2449,-2189,-1751,-1216,-716,-307,-44,37,-57,-199,-369,-501,-580,-628,-645,-635,-577,-493,-396,-390,-480,-659,-910,-1195,-1462,-1654,-1746,-1697,-1539,-1254,-898,-513,-116,225,455,531,530,446,293,89,-102,-238,-312,-307,-298,-269,-222,-190,-223,-330,-480,-622,-653,-534,-292,20,368,663,883,1064,1233,1411,1539,1593,1569,1467,1267,1036,781,520,333,163,55,-25,-54,-4,92,244,445,711,991,1270,1485,1643,1737,1765,1752,1694,1597,1471,1326,1174,1036,899,784,702,690,776,897,997,1065,1082,1064,1024,990,976,963,870,525,213,217,496,912,1241,1320,1285,1291,1209,854,351,-32,-264,-305,-227,-148,-143,-223,-344,-433,-487,-525,-532,-464,-278,-53,109,85,-166,-596,-1060,-1503,-1921,-2231,-2397,-2380,-2232,-2014,-1754,-1468,-1198,-1013,-948,-1003,-1113,-1196,-1238,-1270,-1290,-1306,-1242,-1071,-897,-775,-715,-724,-749,-821,-983,-1133,-1281,-1402,-1429,-1395,-1267,-1077,-881,-664,-448,-257,-115,-47,-43,-115,-219,-302,-379,-429,-471,-494,-498,-455,-386,-307,-173,-59,2,50,110,175,198,148,86,104,232,401,555,697,749,742,695,693,786,893,966,962,924,861,790,724,689,696,682,682,665,682,731,763,780,744,671,583,531,516,535,547,538,532,511,485,464,430,359,258,153,55,-20,-96,-112,-81,-32,54,112,151,180,217,226,186,109,-15,-135,-250,-345,-392,-376,-352,-344,-428,-610,-772,-829,-872,-896,-810,-676,-568,-566,-603,-639,-654,-701,-790,-854,-891,-939,-1050,-1186,-1339,-1432,-1466,-1454,-1417,-1383,-1342,-1289,-1188,-1082,-996,-980,-1023,-1106,-1228,-1383,-1532,-1605,-1620,-1552,-1459,-1340,-1167,-994,-825,-669,-510,-370,-268,-214,-195,-218,-296,-409,-535,-653,-772,-852,-880,-860,-814,-751,-680,-608,-559,-525,-467,-431,-356,-264,-141,10,166,323,418,489,539,584,585,553,533,499,437,372,311,237,171,128,118,118,134,167,218,307,409,529,687,849,988,1091,1155,1175,1158,1122,1055,985,910,818,725,642,593,552,514,480,477,503,564,665,827,1030,1206,1342,1434,1484,1475,1434,1364,1263,1131,975,804,657,523,425,306,183,182,238,382,606,834,1088,1382,1567,1538,1373,1081,810,608,424,218,-11,-238,-473,-616,-690,-662,-534,-340,-131,-23,91,236,409,595,689,622,304,-241,-935,-1614,-2164,-2477,-2487,-2237,-1799,-1241,-666,-188,124,210,112,-119,-384,-588,-690,-693,-666,-631,-593,-549,-485,-462,-547,-725,-948,-1215,-1449,-1619,-1716,-1703,-1588,-1377,-1103,-782,-439,-86,206,403,508,513,433,291,128,-28,-146,-210,-203,-132,-100,-110,-135,-261,-449,-507,-426,-260,-1,272,480,615,755,926,1124,1304,1426,1481,1437,1301,1085,851,641,478,350,239,148,73,50,49,107,234,437,693,934,1168,1343,1478,1582,1645,1646,1601,1519,1419,1325,1213,1104,1015,946,893,901,978,1065,1125,1165,1186,1181,1170,1147,1088,1009,862,633,393,263,164,178,340,599,893,1073,1109,932,816,631,392,193,-9,-206,-449,-643,-868,-980,-999,-959,-907,-933,-901,-653,-145,428,858,894,489,-300,-1294,-2230,-2906,-3218,-3191,-2883,-2467,-1985,-1474,-962,-494,-188,-161,-357,-639,-967,-1203,-1316,-1318,-1274,-1249,-1207,-1082,-898,-736,-646,-731,-950,-1238,-1517,-1729,-1868,-1915,-1814,-1560,-1214,-777,-302,132,474,625,632,538,370,142,-124,-359,-541,-647,-679,-647,-551,-423,-203,54,308,529,634,576,338,60,-64,6,82,206,393,602,751,800,796,783,841,920,1008,1056,1066,1040,966,874,760,656,',
  5241. '2023-08-25T12:31:14.377263600' )
  5242. 12:31:37.401 [XNIO-1 task-2] INFO p6spy - 2023-08-25 12:31:37 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  5243. 12:31:40.805 [XNIO-1 task-2] INFO p6spy - 2023-08-25 12:31:40 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  5244. 12:31:40.815 [XNIO-1 task-2] INFO p6spy - 2023-08-25 12:31:40 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT
  5245. client_id,
  5246. client_title,
  5247. client_app_id,
  5248. client_app_key,
  5249. client_app_secret,
  5250. client_desc,
  5251. status,
  5252. is_fixed
  5253. FROM client
  5254. WHERE deleted_flag = 0
  5255. AND client_app_id = '10001'
  5256. AND client_app_key = '82a8bf439373e305'
  5257. 12:31:40.836 [XNIO-1 task-2] INFO p6spy - 2023-08-25 12:31:40 | Time Consuming: 8 ms | Connection: statement-0 | SQL: SELECT
  5258. A.oc_id,
  5259. B.oc_type_id,
  5260. B.oc_name,
  5261. A.account_id,
  5262. A.account_name,
  5263. A.account_real_name,
  5264. A.password,
  5265. A.account_type,
  5266. A.account_staff_no,
  5267. A.account_phone,
  5268. A.account_last_ip,
  5269. A.account_loc,
  5270. A.status,
  5271. A.account_avatar,
  5272. A.account_photo,
  5273. A.account_real_name,
  5274. A.account_intro,
  5275. A.wx_id,
  5276. A.is_fixed
  5277. FROM account AS A
  5278. LEFT JOIN oc AS B ON (A.oc_id = B.oc_id )
  5279. WHERE A.deleted_flag = 0
  5280. AND (A.account_name = 'sxky'
  5281. OR A.account_phone = 'sxky'
  5282. OR A.account_mail = 'sxky'
  5283. OR A.account_staff_no = 'sxky')
  5284. 12:31:40.846 [XNIO-1 task-2] INFO p6spy - 2023-08-25 12:31:40 | Time Consuming: 6 ms | Connection: statement-0 | SQL: SELECT
  5285. A.oc_id,
  5286. A.oc_name,
  5287. A.oc_type_id,
  5288. A.root_id,
  5289. A.parent_id,
  5290. A.admin_id,
  5291. B.account_name AS admin_name,
  5292. A.group_id,
  5293. A.node_left,
  5294. A.node_right,
  5295. A.node_level,
  5296. A.is_leaf,
  5297. A.status,
  5298. A.if_lic
  5299. FROM oc AS A
  5300. LEFT JOIN account AS B ON (A.oc_id = B.oc_id AND A.admin_id = B.account_id)
  5301. WHERE A.oc_id = 406283
  5302. 12:31:40.855 [XNIO-1 task-2] INFO p6spy - 2023-08-25 12:31:40 | Time Consuming: 7 ms | Connection: statement-0 | SQL: SELECT
  5303. A.rm_id,
  5304. A.role_id,
  5305. B.role_type_id,
  5306. B.role_code,
  5307. B.role_name,
  5308. A.account_id
  5309. FROM s_role_member AS A
  5310. LEFT JOIN s_role AS B ON (A.role_id = B.role_id)
  5311. WHERE account_id = 406283
  5312. LIMIT 1
  5313. 12:31:40.863 [XNIO-1 task-2] INFO p6spy - 2023-08-25 12:31:40 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT
  5314. A.gm_id,
  5315. A.oc_id,
  5316. A.group_id,
  5317. B.group_name,
  5318. B.node_left ,
  5319. B.node_right,
  5320. A.account_id
  5321. FROM s_group_member AS A
  5322. LEFT JOIN s_group AS B ON (A.oc_id = B.oc_id AND A.group_id = B.group_id)
  5323. WHERE B.deleted_flag = 0
  5324. AND A.oc_id = 406283
  5325. AND A.account_id = 406283
  5326. LIMIT 1
  5327. 12:31:40.873 [XNIO-1 task-2] INFO p6spy - 2023-08-25 12:31:40 | Time Consuming: 6 ms | Connection: statement-0 | SQL: SELECT
  5328. A.gmp_id,
  5329. A.oc_id,
  5330. A.group_id,
  5331. B.group_name,
  5332. A.account_id,
  5333. D.account_name,
  5334. D.account_real_name,
  5335. A.position_id,
  5336. C.position_name
  5337. FROM s_group_member_position A
  5338. LEFT JOIN s_group B ON (A.oc_id = B.oc_id AND A.group_id = B.group_id)
  5339. LEFT JOIN s_position C ON (A.oc_id = C.oc_id AND A.position_id = C.position_id)
  5340. LEFT JOIN account D ON (A.oc_id = D.oc_id AND A.account_id = D.account_id)
  5341. WHERE A.deleted_flag = 0
  5342. AND A.oc_id = 406283
  5343. AND A.group_id = 406283
  5344. AND A.account_id = 406283
  5345. LIMIT 1
  5346. 12:31:40.881 [XNIO-1 task-2] INFO p6spy - 2023-08-25 12:31:40 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT
  5347. A.gmpg_id,
  5348. A.oc_id,
  5349. A.group_id,
  5350. A.account_id,
  5351. A.position_id,
  5352. A.grant_group_id,
  5353. B.group_name AS grant_group_name
  5354. FROM s_group_member_position_grant A
  5355. LEFT JOIN s_group B ON(A.oc_id = B.oc_id AND A.grant_group_id = B.group_id)
  5356. WHERE A.deleted_flag = 0
  5357. AND A.oc_id = 406283
  5358. AND A.group_id = 406283
  5359. AND A.account_id = 406283
  5360. AND A.position_id = 406283
  5361. LIMIT 1
  5362. 12:31:40.967 [XNIO-1 task-3] INFO p6spy - 2023-08-25 12:31:40 | Time Consuming: 8 ms | Connection: statement-0 | SQL: SELECT
  5363. client_id,
  5364. client_title,
  5365. client_app_id,
  5366. client_app_key,
  5367. client_app_secret,
  5368. client_desc,
  5369. status,
  5370. is_fixed
  5371. FROM client
  5372. WHERE deleted_flag = 0
  5373. AND client_app_id = '10001'
  5374. AND client_app_key = '82a8bf439373e305'
  5375. 12:31:40.988 [XNIO-1 task-3] INFO p6spy - 2023-08-25 12:31:40 | Time Consuming: 7 ms | Connection: statement-0 | SQL: SELECT
  5376. A.client_id,
  5377. A.role_id,
  5378. A.permit_id,
  5379. A.permit_title,
  5380. A.permit_code,
  5381. A.permit_entry,
  5382. A.permit_desc,
  5383. A.permit_type,
  5384. A.parent_id,
  5385. A.root_id,
  5386. A.sort_no,
  5387. A.is_home
  5388. FROM s_role_permit AS A
  5389. WHERE 1 = 1
  5390. AND A.client_id = 2
  5391. AND A.role_id = 6
  5392. ORDER BY A.parent_id ASC ,A.sort_no ASC
  5393. 12:31:41.125 [XNIO-1 task-3] INFO p6spy - 2023-08-25 12:31:41 | Time Consuming: 30 ms | Connection: statement-0 | SQL: SELECT count(*)
  5394. FROM msg AS M
  5395. WHERE M.oc_id = 406283
  5396. AND (
  5397. EXISTS (
  5398. SELECT 1 FROM msg_to TT
  5399. WHERE M.oc_id = TT.oc_id AND M.msg_id = TT.msg_id AND TT.msg_to_id = 406283 AND TT.status=0
  5400. ) OR
  5401. EXISTS (
  5402. SELECT 1 FROM msg_cc CC
  5403. WHERE M.oc_id = CC.oc_id AND M.msg_id = CC.msg_id AND CC.msg_cc_id = 406283 AND CC.status=0
  5404. )
  5405. )
  5406. 12:31:41.730 [XNIO-1 task-3] INFO p6spy - 2023-08-25 12:31:41 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  5407. 12:31:41.735 [XNIO-1 task-3] INFO p6spy - 2023-08-25 12:31:41 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT count(0) FROM goaf_sensor WHERE oc_id = 406283
  5408. 12:31:41.741 [XNIO-1 task-3] INFO p6spy - 2023-08-25 12:31:41 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT *
  5409. FROM goaf_sensor
  5410. where oc_id = 406283
  5411. LIMIT 10
  5412. 12:31:44.934 [XNIO-1 task-3] INFO p6spy - 2023-08-25 12:31:44 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  5413. 12:31:44.947 [XNIO-1 task-3] INFO p6spy - 2023-08-25 12:31:44 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT *
  5414. FROM goaf_devinfo
  5415. where oc_id = 406283
  5416. 12:31:44.962 [XNIO-1 task-3] INFO p6spy - 2023-08-25 12:31:44 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT *
  5417. FROM goaf_sensor
  5418. where oc_id = 406283
  5419. AND goaf_dev_name = 'other'
  5420. 12:31:44.973 [XNIO-1 task-3] INFO p6spy - 2023-08-25 12:31:44 | Time Consuming: 8 ms | Connection: statement-0 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  5421. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  5422. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  5423. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  5424. f_alarm_temperature, goaf_datareport_time
  5425. FROM goaf_sensordata
  5426. WHERE oc_id = 406283
  5427. AND goaf_sensor_id = 442129
  5428. ORDER BY goaf_datareport_time DESC
  5429. LIMIT 1
  5430. 12:31:44.979 [XNIO-1 task-3] INFO p6spy - 2023-08-25 12:31:44 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT *
  5431. FROM goaf_sensor
  5432. where oc_id = 406283
  5433. AND goaf_dev_name = 'waterpump'
  5434. 12:31:44.987 [XNIO-1 task-3] INFO p6spy - 2023-08-25 12:31:44 | Time Consuming: 6 ms | Connection: statement-0 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  5435. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  5436. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  5437. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  5438. f_alarm_temperature, goaf_datareport_time
  5439. FROM goaf_sensordata
  5440. WHERE oc_id = 406283
  5441. AND goaf_sensor_id = 442136
  5442. ORDER BY goaf_datareport_time DESC
  5443. LIMIT 1
  5444. 12:31:44.995 [XNIO-1 task-3] INFO p6spy - 2023-08-25 12:31:44 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT *
  5445. FROM goaf_sensor
  5446. where oc_id = 406283
  5447. AND goaf_dev_name = 'machinery'
  5448. 12:31:45.003 [XNIO-1 task-3] INFO p6spy - 2023-08-25 12:31:45 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  5449. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  5450. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  5451. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  5452. f_alarm_temperature, goaf_datareport_time
  5453. FROM goaf_sensordata
  5454. WHERE oc_id = 406283
  5455. AND goaf_sensor_id = 442137
  5456. ORDER BY goaf_datareport_time DESC
  5457. LIMIT 1
  5458. 12:31:45.011 [XNIO-1 task-3] INFO p6spy - 2023-08-25 12:31:45 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT *
  5459. FROM goaf_sensor
  5460. where oc_id = 406283
  5461. AND goaf_dev_name = 'compress'
  5462. 12:31:45.017 [XNIO-1 task-3] INFO p6spy - 2023-08-25 12:31:45 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  5463. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  5464. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  5465. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  5466. f_alarm_temperature, goaf_datareport_time
  5467. FROM goaf_sensordata
  5468. WHERE oc_id = 406283
  5469. AND goaf_sensor_id = 442135
  5470. ORDER BY goaf_datareport_time DESC
  5471. LIMIT 1
  5472. 12:31:45.023 [XNIO-1 task-3] INFO p6spy - 2023-08-25 12:31:45 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  5473. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  5474. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  5475. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  5476. f_alarm_temperature, goaf_datareport_time
  5477. FROM goaf_sensordata
  5478. WHERE oc_id = 406283
  5479. AND goaf_sensor_id = 442139
  5480. ORDER BY goaf_datareport_time DESC
  5481. LIMIT 1
  5482. 12:32:16.386 [XNIO-1 task-3] INFO p6spy - 2023-08-25 12:32:16 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  5483. 12:32:16.410 [XNIO-1 task-3] INFO p6spy - 2023-08-25 12:32:16 | Time Consuming: 18 ms | Connection: statement-0 | SQL: SELECT td_wave_value_x, td_wave_value_y, td_wave_value_z
  5484. FROM goaf_sensordata
  5485. WHERE goaf_data_id = 442170
  5486. 12:32:29.850 [nioEventLoopGroup-5-2] INFO p6spy - 2023-08-25 12:32:29 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT 1
  5487. 12:32:29.856 [nioEventLoopGroup-5-2] INFO p6spy - 2023-08-25 12:32:29 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT *
  5488. FROM goaf_sensor
  5489. WHERE goaf_sensor_ip = '192.168.3.12'
  5490. 12:32:32.886 [XNIO-1 task-3] INFO p6spy - 2023-08-25 12:32:32 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  5491. 12:32:32.900 [XNIO-1 task-3] INFO p6spy - 2023-08-25 12:32:32 | Time Consuming: 9 ms | Connection: statement-0 | SQL: SELECT td_wave_value_x, td_wave_value_y, td_wave_value_z
  5492. FROM goaf_sensordata
  5493. WHERE goaf_data_id = 442170
  5494. 12:33:45.333 [nioEventLoopGroup-5-3] INFO p6spy - 2023-08-25 12:33:45 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT 1
  5495. 12:33:45.339 [nioEventLoopGroup-5-3] INFO p6spy - 2023-08-25 12:33:45 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT *
  5496. FROM goaf_sensor
  5497. WHERE goaf_sensor_ip = '192.168.3.12'
  5498. 12:35:00.794 [nioEventLoopGroup-5-4] INFO p6spy - 2023-08-25 12:35:00 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT 1
  5499. 12:35:00.802 [nioEventLoopGroup-5-4] INFO p6spy - 2023-08-25 12:35:00 | Time Consuming: 7 ms | Connection: statement-0 | SQL: SELECT *
  5500. FROM goaf_sensor
  5501. WHERE goaf_sensor_ip = '192.168.3.12'
  5502. 12:35:01.329 [XNIO-1 task-2] INFO p6spy - 2023-08-25 12:35:01 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  5503. 12:35:01.343 [XNIO-1 task-2] INFO p6spy - 2023-08-25 12:35:01 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT *
  5504. FROM goaf_syscfg
  5505. WHERE oc_id = 406283
  5506. 12:35:06.341 [XNIO-1 task-4] INFO p6spy - 2023-08-25 12:35:06 | Time Consuming: 5013 ms | Connection: statement-2 | SQL: SELECT 1
  5507. 12:35:06.341 [XNIO-1 task-3] INFO p6spy - 2023-08-25 12:35:06 | Time Consuming: 5013 ms | Connection: statement-1 | SQL: SELECT 1
  5508. 12:35:06.346 [XNIO-1 task-4] INFO p6spy - 2023-08-25 12:35:06 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  5509. 12:35:06.358 [XNIO-1 task-4] INFO p6spy - 2023-08-25 12:35:06 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT *
  5510. FROM goaf_baseinfo
  5511. WHERE oc_id = 406283
  5512. 12:35:11.345 [XNIO-1 task-3] INFO p6spy - 2023-08-25 12:35:11 | Time Consuming: 5001 ms | Connection: statement-3 | SQL: SELECT 1
  5513. 12:35:11.353 [XNIO-1 task-3] INFO p6spy - 2023-08-25 12:35:11 | Time Consuming: 7 ms | Connection: statement-0 | SQL: SELECT 1
  5514. 12:35:11.362 [XNIO-1 task-3] INFO p6spy - 2023-08-25 12:35:11 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT count(0) FROM goaf_devinfo WHERE oc_id = 406283
  5515. 12:35:11.367 [XNIO-1 task-3] INFO p6spy - 2023-08-25 12:35:11 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT *
  5516. FROM goaf_devinfo
  5517. where oc_id = 406283
  5518. LIMIT 10
  5519. 12:36:03.769 [XNIO-1 task-3] INFO p6spy - 2023-08-25 12:36:03 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  5520. 12:36:03.786 [XNIO-1 task-3] INFO p6spy - 2023-08-25 12:36:03 | Time Consuming: 10 ms | Connection: statement-0 | SQL: UPDATE goaf_devinfo
  5521. SET goaf_dev_name = 'waterpump',
  5522. goaf_dev_location = '一车间中段',
  5523. goaf_dev_typename = '水泵',
  5524. goaf_install_time = '2023-08-22T10:27:10'
  5525. WHERE goaf_dev_id = 442100
  5526. 12:36:03.826 [XNIO-1 task-3] INFO p6spy - 2023-08-25 12:36:03 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT count(0) FROM goaf_devinfo WHERE oc_id = 406283
  5527. 12:36:03.831 [XNIO-1 task-3] INFO p6spy - 2023-08-25 12:36:03 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT *
  5528. FROM goaf_devinfo
  5529. where oc_id = 406283
  5530. LIMIT 10
  5531. 12:36:16.274 [nioEventLoopGroup-5-5] INFO p6spy - 2023-08-25 12:36:16 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  5532. 12:36:16.279 [nioEventLoopGroup-5-5] INFO p6spy - 2023-08-25 12:36:16 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT *
  5533. FROM goaf_sensor
  5534. WHERE goaf_sensor_ip = '192.168.3.12'
  5535. 12:36:19.439 [XNIO-1 task-3] INFO p6spy - 2023-08-25 12:36:19 | Time Consuming: 15 ms | Connection: statement-0 | SQL: SELECT 1
  5536. 12:36:19.453 [XNIO-1 task-3] INFO p6spy - 2023-08-25 12:36:19 | Time Consuming: 9 ms | Connection: statement-0 | SQL: UPDATE goaf_devinfo
  5537. SET goaf_dev_name = 'machinery',
  5538. goaf_dev_location = '二车间南段',
  5539. goaf_dev_typename = '电机',
  5540. goaf_install_time = '2023-08-21T10:28:47'
  5541. WHERE goaf_dev_id = 442101
  5542. 12:36:19.501 [XNIO-1 task-3] INFO p6spy - 2023-08-25 12:36:19 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT count(0) FROM goaf_devinfo WHERE oc_id = 406283
  5543. 12:36:19.509 [XNIO-1 task-3] INFO p6spy - 2023-08-25 12:36:19 | Time Consuming: 6 ms | Connection: statement-0 | SQL: SELECT *
  5544. FROM goaf_devinfo
  5545. where oc_id = 406283
  5546. LIMIT 10
  5547. 12:36:33.778 [XNIO-1 task-3] INFO p6spy - 2023-08-25 12:36:33 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  5548. 12:36:33.792 [XNIO-1 task-3] INFO p6spy - 2023-08-25 12:36:33 | Time Consuming: 8 ms | Connection: statement-0 | SQL: UPDATE goaf_devinfo
  5549. SET goaf_dev_name = 'compress',
  5550. goaf_dev_location = '三车间北段',
  5551. goaf_dev_typename = '空压机',
  5552. goaf_install_time = '2023-08-23T16:46:18'
  5553. WHERE goaf_dev_id = 442141
  5554. 12:36:33.830 [XNIO-1 task-3] INFO p6spy - 2023-08-25 12:36:33 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT count(0) FROM goaf_devinfo WHERE oc_id = 406283
  5555. 12:36:33.836 [XNIO-1 task-3] INFO p6spy - 2023-08-25 12:36:33 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT *
  5556. FROM goaf_devinfo
  5557. where oc_id = 406283
  5558. LIMIT 10
  5559. 12:37:29.108 [XNIO-1 task-4] INFO p6spy - 2023-08-25 12:37:29 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT 1
  5560. 12:37:29.108 [XNIO-1 task-3] INFO p6spy - 2023-08-25 12:37:29 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT 1
  5561. 12:37:29.113 [XNIO-1 task-3] INFO p6spy - 2023-08-25 12:37:29 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT count(0) FROM goaf_sensor WHERE oc_id = 406283
  5562. 12:37:29.114 [XNIO-1 task-4] INFO p6spy - 2023-08-25 12:37:29 | Time Consuming: 5 ms | Connection: statement-5 | SQL: SELECT
  5563. COUNT(*) AS 'goafSensorTotalNum',
  5564. IFNULL(SUM( CASE WHEN goaf_sensor_status = 1 THEN 1 ELSE 0 END ), 0) AS 'sensorOnlineNum'
  5565. FROM goaf_sensor
  5566. WHERE oc_id = 406283
  5567. 12:37:29.120 [XNIO-1 task-3] INFO p6spy - 2023-08-25 12:37:29 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT *
  5568. FROM goaf_sensor
  5569. where oc_id = 406283
  5570. LIMIT 10
  5571. 12:37:31.741 [nioEventLoopGroup-5-6] INFO p6spy - 2023-08-25 12:37:31 | Time Consuming: 5 ms | Connection: statement-0 | SQL: SELECT 1
  5572. 12:37:31.746 [nioEventLoopGroup-5-6] INFO p6spy - 2023-08-25 12:37:31 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT *
  5573. FROM goaf_sensor
  5574. WHERE goaf_sensor_ip = '192.168.3.12'
  5575. 12:37:40.378 [XNIO-1 task-3] INFO p6spy - 2023-08-25 12:37:40 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT 1
  5576. 12:37:40.378 [XNIO-1 task-4] INFO p6spy - 2023-08-25 12:37:40 | Time Consuming: 4 ms | Connection: statement-6 | SQL: SELECT 1
  5577. 12:37:40.378 [XNIO-1 task-2] INFO p6spy - 2023-08-25 12:37:40 | Time Consuming: 4 ms | Connection: statement-5 | SQL: SELECT 1
  5578. 12:37:40.383 [XNIO-1 task-3] INFO p6spy - 2023-08-25 12:37:40 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT count(0) FROM goaf_sensor WHERE oc_id = 406283
  5579. 12:37:40.388 [XNIO-1 task-2] INFO p6spy - 2023-08-25 12:37:40 | Time Consuming: 5 ms | Connection: statement-5 | SQL: SELECT *
  5580. FROM goaf_syscfg
  5581. WHERE oc_id = 406283
  5582. 12:37:40.388 [XNIO-1 task-4] INFO p6spy - 2023-08-25 12:37:40 | Time Consuming: 5 ms | Connection: statement-6 | SQL: SELECT *
  5583. FROM goaf_devinfo
  5584. where oc_id = 406283
  5585. 12:37:40.388 [XNIO-1 task-3] INFO p6spy - 2023-08-25 12:37:40 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT *
  5586. FROM goaf_sensor
  5587. where oc_id = 406283
  5588. LIMIT 10
  5589. 12:38:47.167 [nioEventLoopGroup-5-7] INFO p6spy - 2023-08-25 12:38:47 | Time Consuming: 6 ms | Connection: statement-5 | SQL: SELECT 1
  5590. 12:38:47.173 [nioEventLoopGroup-5-7] INFO p6spy - 2023-08-25 12:38:47 | Time Consuming: 6 ms | Connection: statement-5 | SQL: SELECT *
  5591. FROM goaf_sensor
  5592. WHERE goaf_sensor_ip = '192.168.3.12'
  5593. 12:40:02.679 [nioEventLoopGroup-5-8] INFO p6spy - 2023-08-25 12:40:02 | Time Consuming: 6 ms | Connection: statement-5 | SQL: SELECT 1
  5594. 12:40:02.685 [nioEventLoopGroup-5-8] INFO p6spy - 2023-08-25 12:40:02 | Time Consuming: 5 ms | Connection: statement-5 | SQL: SELECT *
  5595. FROM goaf_sensor
  5596. WHERE goaf_sensor_ip = '192.168.3.12'
  5597. 12:41:18.150 [nioEventLoopGroup-5-9] INFO p6spy - 2023-08-25 12:41:18 | Time Consuming: 6 ms | Connection: statement-5 | SQL: SELECT 1
  5598. 12:41:18.155 [nioEventLoopGroup-5-9] INFO p6spy - 2023-08-25 12:41:18 | Time Consuming: 5 ms | Connection: statement-5 | SQL: SELECT *
  5599. FROM goaf_sensor
  5600. WHERE goaf_sensor_ip = '192.168.3.12'
  5601. 12:42:33.619 [nioEventLoopGroup-5-10] INFO p6spy - 2023-08-25 12:42:33 | Time Consuming: 5 ms | Connection: statement-5 | SQL: SELECT 1
  5602. 12:42:33.625 [nioEventLoopGroup-5-10] INFO p6spy - 2023-08-25 12:42:33 | Time Consuming: 5 ms | Connection: statement-5 | SQL: SELECT *
  5603. FROM goaf_sensor
  5604. WHERE goaf_sensor_ip = '192.168.3.12'
  5605. 12:43:54.081 [nioEventLoopGroup-5-11] INFO p6spy - 2023-08-25 12:43:54 | Time Consuming: 5001 ms | Connection: statement-9 | SQL: SELECT 1
  5606. 12:43:54.087 [nioEventLoopGroup-5-11] INFO p6spy - 2023-08-25 12:43:54 | Time Consuming: 4 ms | Connection: statement-10 | SQL: SELECT 1
  5607. 12:43:54.092 [nioEventLoopGroup-5-11] INFO p6spy - 2023-08-25 12:43:54 | Time Consuming: 5 ms | Connection: statement-10 | SQL: SELECT *
  5608. FROM goaf_sensor
  5609. WHERE goaf_sensor_ip = '192.168.3.12'
  5610. 12:45:09.573 [nioEventLoopGroup-5-12] INFO p6spy - 2023-08-25 12:45:09 | Time Consuming: 4 ms | Connection: statement-10 | SQL: SELECT 1
  5611. 12:45:09.578 [nioEventLoopGroup-5-12] INFO p6spy - 2023-08-25 12:45:09 | Time Consuming: 4 ms | Connection: statement-10 | SQL: SELECT *
  5612. FROM goaf_sensor
  5613. WHERE goaf_sensor_ip = '192.168.3.12'
  5614. 12:46:25.352 [nioEventLoopGroup-5-13] INFO p6spy - 2023-08-25 12:46:25 | Time Consuming: 4 ms | Connection: statement-10 | SQL: SELECT 1
  5615. 12:46:25.357 [nioEventLoopGroup-5-13] INFO p6spy - 2023-08-25 12:46:25 | Time Consuming: 4 ms | Connection: statement-10 | SQL: SELECT *
  5616. FROM goaf_sensor
  5617. WHERE goaf_sensor_ip = '192.168.3.12'
  5618. 12:47:40.818 [nioEventLoopGroup-5-14] INFO p6spy - 2023-08-25 12:47:40 | Time Consuming: 4 ms | Connection: statement-10 | SQL: SELECT 1
  5619. 12:47:40.824 [nioEventLoopGroup-5-14] INFO p6spy - 2023-08-25 12:47:40 | Time Consuming: 4 ms | Connection: statement-10 | SQL: SELECT *
  5620. FROM goaf_sensor
  5621. WHERE goaf_sensor_ip = '192.168.3.12'
  5622. 12:48:05.217 [XNIO-1 task-2] INFO p6spy - 2023-08-25 12:48:05 | Time Consuming: 4 ms | Connection: statement-10 | SQL: SELECT 1
  5623. 12:48:05.221 [XNIO-1 task-2] INFO p6spy - 2023-08-25 12:48:05 | Time Consuming: 4 ms | Connection: statement-10 | SQL: SELECT count(0) FROM goaf_sensor WHERE oc_id = 406283
  5624. 12:48:05.226 [XNIO-1 task-2] INFO p6spy - 2023-08-25 12:48:05 | Time Consuming: 3 ms | Connection: statement-10 | SQL: SELECT *
  5625. FROM goaf_sensor
  5626. where oc_id = 406283
  5627. LIMIT 10
  5628. 12:48:08.453 [XNIO-1 task-2] INFO p6spy - 2023-08-25 12:48:08 | Time Consuming: 4 ms | Connection: statement-10 | SQL: SELECT 1
  5629. 12:48:08.462 [XNIO-1 task-2] INFO p6spy - 2023-08-25 12:48:08 | Time Consuming: 5 ms | Connection: statement-10 | SQL: SELECT *
  5630. FROM goaf_devinfo
  5631. where oc_id = 406283
  5632. 12:48:08.476 [XNIO-1 task-2] INFO p6spy - 2023-08-25 12:48:08 | Time Consuming: 3 ms | Connection: statement-10 | SQL: SELECT *
  5633. FROM goaf_sensor
  5634. where oc_id = 406283
  5635. AND goaf_dev_name = 'other'
  5636. 12:48:08.482 [XNIO-1 task-2] INFO p6spy - 2023-08-25 12:48:08 | Time Consuming: 4 ms | Connection: statement-10 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  5637. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  5638. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  5639. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  5640. f_alarm_temperature, goaf_datareport_time
  5641. FROM goaf_sensordata
  5642. WHERE oc_id = 406283
  5643. AND goaf_sensor_id = 442129
  5644. ORDER BY goaf_datareport_time DESC
  5645. LIMIT 1
  5646. 12:48:08.486 [XNIO-1 task-2] INFO p6spy - 2023-08-25 12:48:08 | Time Consuming: 3 ms | Connection: statement-10 | SQL: SELECT *
  5647. FROM goaf_sensor
  5648. where oc_id = 406283
  5649. AND goaf_dev_name = 'waterpump'
  5650. 12:48:08.491 [XNIO-1 task-2] INFO p6spy - 2023-08-25 12:48:08 | Time Consuming: 3 ms | Connection: statement-10 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  5651. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  5652. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  5653. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  5654. f_alarm_temperature, goaf_datareport_time
  5655. FROM goaf_sensordata
  5656. WHERE oc_id = 406283
  5657. AND goaf_sensor_id = 442136
  5658. ORDER BY goaf_datareport_time DESC
  5659. LIMIT 1
  5660. 12:48:08.496 [XNIO-1 task-2] INFO p6spy - 2023-08-25 12:48:08 | Time Consuming: 4 ms | Connection: statement-10 | SQL: SELECT *
  5661. FROM goaf_sensor
  5662. where oc_id = 406283
  5663. AND goaf_dev_name = 'machinery'
  5664. 12:48:08.502 [XNIO-1 task-2] INFO p6spy - 2023-08-25 12:48:08 | Time Consuming: 4 ms | Connection: statement-10 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  5665. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  5666. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  5667. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  5668. f_alarm_temperature, goaf_datareport_time
  5669. FROM goaf_sensordata
  5670. WHERE oc_id = 406283
  5671. AND goaf_sensor_id = 442137
  5672. ORDER BY goaf_datareport_time DESC
  5673. LIMIT 1
  5674. 12:48:08.507 [XNIO-1 task-2] INFO p6spy - 2023-08-25 12:48:08 | Time Consuming: 3 ms | Connection: statement-10 | SQL: SELECT *
  5675. FROM goaf_sensor
  5676. where oc_id = 406283
  5677. AND goaf_dev_name = 'compress'
  5678. 12:48:08.512 [XNIO-1 task-2] INFO p6spy - 2023-08-25 12:48:08 | Time Consuming: 4 ms | Connection: statement-10 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  5679. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  5680. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  5681. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  5682. f_alarm_temperature, goaf_datareport_time
  5683. FROM goaf_sensordata
  5684. WHERE oc_id = 406283
  5685. AND goaf_sensor_id = 442135
  5686. ORDER BY goaf_datareport_time DESC
  5687. LIMIT 1
  5688. 12:48:08.519 [XNIO-1 task-2] INFO p6spy - 2023-08-25 12:48:08 | Time Consuming: 4 ms | Connection: statement-10 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  5689. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  5690. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  5691. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  5692. f_alarm_temperature, goaf_datareport_time
  5693. FROM goaf_sensordata
  5694. WHERE oc_id = 406283
  5695. AND goaf_sensor_id = 442139
  5696. ORDER BY goaf_datareport_time DESC
  5697. LIMIT 1
  5698. 12:48:56.294 [nioEventLoopGroup-5-15] INFO p6spy - 2023-08-25 12:48:56 | Time Consuming: 4 ms | Connection: statement-10 | SQL: SELECT 1
  5699. 12:48:56.298 [nioEventLoopGroup-5-15] INFO p6spy - 2023-08-25 12:48:56 | Time Consuming: 3 ms | Connection: statement-10 | SQL: SELECT *
  5700. FROM goaf_sensor
  5701. WHERE goaf_sensor_ip = '192.168.3.12'
  5702. 12:50:11.762 [nioEventLoopGroup-5-16] INFO p6spy - 2023-08-25 12:50:11 | Time Consuming: 4 ms | Connection: statement-10 | SQL: SELECT 1
  5703. 12:50:11.766 [nioEventLoopGroup-5-16] INFO p6spy - 2023-08-25 12:50:11 | Time Consuming: 4 ms | Connection: statement-10 | SQL: SELECT *
  5704. FROM goaf_sensor
  5705. WHERE goaf_sensor_ip = '192.168.3.12'
  5706. 12:51:27.237 [nioEventLoopGroup-5-17] INFO p6spy - 2023-08-25 12:51:27 | Time Consuming: 4 ms | Connection: statement-10 | SQL: SELECT 1
  5707. 12:51:27.242 [nioEventLoopGroup-5-17] INFO p6spy - 2023-08-25 12:51:27 | Time Consuming: 4 ms | Connection: statement-10 | SQL: SELECT *
  5708. FROM goaf_sensor
  5709. WHERE goaf_sensor_ip = '192.168.3.12'
  5710. 12:52:42.705 [nioEventLoopGroup-5-18] INFO p6spy - 2023-08-25 12:52:42 | Time Consuming: 5 ms | Connection: statement-15 | SQL: SELECT 1
  5711. 12:52:42.710 [nioEventLoopGroup-5-18] INFO p6spy - 2023-08-25 12:52:42 | Time Consuming: 4 ms | Connection: statement-15 | SQL: SELECT *
  5712. FROM goaf_sensor
  5713. WHERE goaf_sensor_ip = '192.168.3.12'
  5714. 12:53:58.186 [nioEventLoopGroup-5-19] INFO p6spy - 2023-08-25 12:53:58 | Time Consuming: 6 ms | Connection: statement-15 | SQL: SELECT 1
  5715. 12:53:58.194 [nioEventLoopGroup-5-19] INFO p6spy - 2023-08-25 12:53:58 | Time Consuming: 6 ms | Connection: statement-15 | SQL: SELECT *
  5716. FROM goaf_sensor
  5717. WHERE goaf_sensor_ip = '192.168.3.12'
  5718. 12:55:13.653 [nioEventLoopGroup-5-20] INFO p6spy - 2023-08-25 12:55:13 | Time Consuming: 5 ms | Connection: statement-15 | SQL: SELECT 1
  5719. 12:55:13.658 [nioEventLoopGroup-5-20] INFO p6spy - 2023-08-25 12:55:13 | Time Consuming: 4 ms | Connection: statement-15 | SQL: SELECT *
  5720. FROM goaf_sensor
  5721. WHERE goaf_sensor_ip = '192.168.3.12'
  5722. 12:55:14.736 [XNIO-1 task-2] INFO p6spy - 2023-08-25 12:55:14 | Time Consuming: 4 ms | Connection: statement-15 | SQL: SELECT 1
  5723. 12:55:14.741 [XNIO-1 task-2] INFO p6spy - 2023-08-25 12:55:14 | Time Consuming: 4 ms | Connection: statement-15 | SQL: SELECT count(0) FROM goaf_sensor WHERE oc_id = 406283
  5724. 12:55:14.746 [XNIO-1 task-2] INFO p6spy - 2023-08-25 12:55:14 | Time Consuming: 5 ms | Connection: statement-15 | SQL: SELECT *
  5725. FROM goaf_sensor
  5726. where oc_id = 406283
  5727. LIMIT 10
  5728. 12:55:48.832 [XNIO-1 task-2] INFO p6spy - 2023-08-25 12:55:48 | Time Consuming: 3 ms | Connection: statement-15 | SQL: SELECT 1
  5729. 12:55:48.837 [XNIO-1 task-2] INFO p6spy - 2023-08-25 12:55:48 | Time Consuming: 3 ms | Connection: statement-15 | SQL: SELECT count(0) FROM goaf_sensor WHERE oc_id = 406283
  5730. 12:55:48.841 [XNIO-1 task-2] INFO p6spy - 2023-08-25 12:55:48 | Time Consuming: 3 ms | Connection: statement-15 | SQL: SELECT *
  5731. FROM goaf_sensor
  5732. where oc_id = 406283
  5733. LIMIT 10
  5734. 12:55:50.263 [XNIO-1 task-2] INFO p6spy - 2023-08-25 12:55:50 | Time Consuming: 4 ms | Connection: statement-15 | SQL: SELECT 1
  5735. 12:55:50.272 [XNIO-1 task-2] INFO p6spy - 2023-08-25 12:55:50 | Time Consuming: 4 ms | Connection: statement-15 | SQL: SELECT *
  5736. FROM goaf_devinfo
  5737. where oc_id = 406283
  5738. 12:55:50.287 [XNIO-1 task-2] INFO p6spy - 2023-08-25 12:55:50 | Time Consuming: 6 ms | Connection: statement-15 | SQL: SELECT *
  5739. FROM goaf_sensor
  5740. where oc_id = 406283
  5741. AND goaf_dev_name = 'other'
  5742. 12:55:50.294 [XNIO-1 task-2] INFO p6spy - 2023-08-25 12:55:50 | Time Consuming: 4 ms | Connection: statement-15 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  5743. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  5744. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  5745. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  5746. f_alarm_temperature, goaf_datareport_time
  5747. FROM goaf_sensordata
  5748. WHERE oc_id = 406283
  5749. AND goaf_sensor_id = 442129
  5750. ORDER BY goaf_datareport_time DESC
  5751. LIMIT 1
  5752. 12:55:50.300 [XNIO-1 task-2] INFO p6spy - 2023-08-25 12:55:50 | Time Consuming: 4 ms | Connection: statement-15 | SQL: SELECT *
  5753. FROM goaf_sensor
  5754. where oc_id = 406283
  5755. AND goaf_dev_name = 'waterpump'
  5756. 12:55:50.304 [XNIO-1 task-2] INFO p6spy - 2023-08-25 12:55:50 | Time Consuming: 3 ms | Connection: statement-15 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  5757. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  5758. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  5759. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  5760. f_alarm_temperature, goaf_datareport_time
  5761. FROM goaf_sensordata
  5762. WHERE oc_id = 406283
  5763. AND goaf_sensor_id = 442136
  5764. ORDER BY goaf_datareport_time DESC
  5765. LIMIT 1
  5766. 12:55:50.308 [XNIO-1 task-2] INFO p6spy - 2023-08-25 12:55:50 | Time Consuming: 3 ms | Connection: statement-15 | SQL: SELECT *
  5767. FROM goaf_sensor
  5768. where oc_id = 406283
  5769. AND goaf_dev_name = 'machinery'
  5770. 12:55:50.313 [XNIO-1 task-2] INFO p6spy - 2023-08-25 12:55:50 | Time Consuming: 3 ms | Connection: statement-15 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  5771. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  5772. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  5773. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  5774. f_alarm_temperature, goaf_datareport_time
  5775. FROM goaf_sensordata
  5776. WHERE oc_id = 406283
  5777. AND goaf_sensor_id = 442137
  5778. ORDER BY goaf_datareport_time DESC
  5779. LIMIT 1
  5780. 12:55:50.318 [XNIO-1 task-2] INFO p6spy - 2023-08-25 12:55:50 | Time Consuming: 3 ms | Connection: statement-15 | SQL: SELECT *
  5781. FROM goaf_sensor
  5782. where oc_id = 406283
  5783. AND goaf_dev_name = 'compress'
  5784. 12:55:50.323 [XNIO-1 task-2] INFO p6spy - 2023-08-25 12:55:50 | Time Consuming: 3 ms | Connection: statement-15 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  5785. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  5786. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  5787. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  5788. f_alarm_temperature, goaf_datareport_time
  5789. FROM goaf_sensordata
  5790. WHERE oc_id = 406283
  5791. AND goaf_sensor_id = 442135
  5792. ORDER BY goaf_datareport_time DESC
  5793. LIMIT 1
  5794. 12:55:50.330 [XNIO-1 task-2] INFO p6spy - 2023-08-25 12:55:50 | Time Consuming: 4 ms | Connection: statement-15 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  5795. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  5796. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  5797. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  5798. f_alarm_temperature, goaf_datareport_time
  5799. FROM goaf_sensordata
  5800. WHERE oc_id = 406283
  5801. AND goaf_sensor_id = 442139
  5802. ORDER BY goaf_datareport_time DESC
  5803. LIMIT 1
  5804. 12:56:19.735 [XNIO-1 task-2] INFO p6spy - 2023-08-25 12:56:19 | Time Consuming: 4 ms | Connection: statement-15 | SQL: SELECT 1
  5805. 12:56:19.747 [XNIO-1 task-2] INFO p6spy - 2023-08-25 12:56:19 | Time Consuming: 7 ms | Connection: statement-15 | SQL: SELECT td_wave_value_x, td_wave_value_y, td_wave_value_z
  5806. FROM goaf_sensordata
  5807. WHERE goaf_data_id = 442170
  5808. 12:56:29.114 [nioEventLoopGroup-5-21] INFO p6spy - 2023-08-25 12:56:29 | Time Consuming: 3 ms | Connection: statement-15 | SQL: SELECT 1
  5809. 12:56:29.118 [nioEventLoopGroup-5-21] INFO p6spy - 2023-08-25 12:56:29 | Time Consuming: 3 ms | Connection: statement-15 | SQL: SELECT *
  5810. FROM goaf_sensor
  5811. WHERE goaf_sensor_ip = '192.168.3.12'
  5812. 12:57:44.586 [nioEventLoopGroup-5-22] INFO p6spy - 2023-08-25 12:57:44 | Time Consuming: 4 ms | Connection: statement-15 | SQL: SELECT 1
  5813. 12:57:44.590 [nioEventLoopGroup-5-22] INFO p6spy - 2023-08-25 12:57:44 | Time Consuming: 4 ms | Connection: statement-15 | SQL: SELECT *
  5814. FROM goaf_sensor
  5815. WHERE goaf_sensor_ip = '192.168.3.12'
  5816. 12:59:00.053 [nioEventLoopGroup-5-23] INFO p6spy - 2023-08-25 12:59:00 | Time Consuming: 4 ms | Connection: statement-15 | SQL: SELECT 1
  5817. 12:59:00.058 [nioEventLoopGroup-5-23] INFO p6spy - 2023-08-25 12:59:00 | Time Consuming: 4 ms | Connection: statement-15 | SQL: SELECT *
  5818. FROM goaf_sensor
  5819. WHERE goaf_sensor_ip = '192.168.3.12'
  5820. 13:00:20.522 [nioEventLoopGroup-5-24] INFO p6spy - 2023-08-25 13:00:20 | Time Consuming: 5001 ms | Connection: statement-19 | SQL: SELECT 1
  5821. 13:00:20.527 [nioEventLoopGroup-5-24] INFO p6spy - 2023-08-25 13:00:20 | Time Consuming: 4 ms | Connection: statement-20 | SQL: SELECT 1
  5822. 13:00:20.534 [nioEventLoopGroup-5-24] INFO p6spy - 2023-08-25 13:00:20 | Time Consuming: 5 ms | Connection: statement-20 | SQL: SELECT *
  5823. FROM goaf_sensor
  5824. WHERE goaf_sensor_ip = '192.168.3.12'
  5825. 13:01:36.011 [nioEventLoopGroup-5-25] INFO p6spy - 2023-08-25 13:01:36 | Time Consuming: 4 ms | Connection: statement-20 | SQL: SELECT 1
  5826. 13:01:36.016 [nioEventLoopGroup-5-25] INFO p6spy - 2023-08-25 13:01:36 | Time Consuming: 4 ms | Connection: statement-20 | SQL: SELECT *
  5827. FROM goaf_sensor
  5828. WHERE goaf_sensor_ip = '192.168.3.12'
  5829. 13:02:51.485 [nioEventLoopGroup-5-26] INFO p6spy - 2023-08-25 13:02:51 | Time Consuming: 4 ms | Connection: statement-20 | SQL: SELECT 1
  5830. 13:02:51.490 [nioEventLoopGroup-5-26] INFO p6spy - 2023-08-25 13:02:51 | Time Consuming: 4 ms | Connection: statement-20 | SQL: SELECT *
  5831. FROM goaf_sensor
  5832. WHERE goaf_sensor_ip = '192.168.3.12'
  5833. 13:04:06.952 [nioEventLoopGroup-5-27] INFO p6spy - 2023-08-25 13:04:06 | Time Consuming: 4 ms | Connection: statement-20 | SQL: SELECT 1
  5834. 13:04:06.957 [nioEventLoopGroup-5-27] INFO p6spy - 2023-08-25 13:04:06 | Time Consuming: 4 ms | Connection: statement-20 | SQL: SELECT *
  5835. FROM goaf_sensor
  5836. WHERE goaf_sensor_ip = '192.168.3.12'
  5837. 13:04:59.764 [XNIO-1 task-2] INFO p6spy - 2023-08-25 13:04:59 | Time Consuming: 4 ms | Connection: statement-20 | SQL: SELECT 1
  5838. 13:04:59.773 [XNIO-1 task-2] INFO p6spy - 2023-08-25 13:04:59 | Time Consuming: 5 ms | Connection: statement-20 | SQL: SELECT *
  5839. FROM goaf_devinfo
  5840. where oc_id = 406283
  5841. 13:04:59.784 [XNIO-1 task-2] INFO p6spy - 2023-08-25 13:04:59 | Time Consuming: 3 ms | Connection: statement-20 | SQL: SELECT *
  5842. FROM goaf_sensor
  5843. where oc_id = 406283
  5844. AND goaf_dev_name = 'other'
  5845. 13:04:59.790 [XNIO-1 task-2] INFO p6spy - 2023-08-25 13:04:59 | Time Consuming: 3 ms | Connection: statement-20 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  5846. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  5847. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  5848. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  5849. f_alarm_temperature, goaf_datareport_time
  5850. FROM goaf_sensordata
  5851. WHERE oc_id = 406283
  5852. AND goaf_sensor_id = 442129
  5853. ORDER BY goaf_datareport_time DESC
  5854. LIMIT 1
  5855. 13:04:59.796 [XNIO-1 task-2] INFO p6spy - 2023-08-25 13:04:59 | Time Consuming: 3 ms | Connection: statement-20 | SQL: SELECT *
  5856. FROM goaf_sensor
  5857. where oc_id = 406283
  5858. AND goaf_dev_name = 'waterpump'
  5859. 13:04:59.801 [XNIO-1 task-2] INFO p6spy - 2023-08-25 13:04:59 | Time Consuming: 3 ms | Connection: statement-20 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  5860. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  5861. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  5862. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  5863. f_alarm_temperature, goaf_datareport_time
  5864. FROM goaf_sensordata
  5865. WHERE oc_id = 406283
  5866. AND goaf_sensor_id = 442136
  5867. ORDER BY goaf_datareport_time DESC
  5868. LIMIT 1
  5869. 13:04:59.804 [XNIO-1 task-2] INFO p6spy - 2023-08-25 13:04:59 | Time Consuming: 3 ms | Connection: statement-20 | SQL: SELECT *
  5870. FROM goaf_sensor
  5871. where oc_id = 406283
  5872. AND goaf_dev_name = 'machinery'
  5873. 13:04:59.809 [XNIO-1 task-2] INFO p6spy - 2023-08-25 13:04:59 | Time Consuming: 4 ms | Connection: statement-20 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  5874. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  5875. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  5876. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  5877. f_alarm_temperature, goaf_datareport_time
  5878. FROM goaf_sensordata
  5879. WHERE oc_id = 406283
  5880. AND goaf_sensor_id = 442137
  5881. ORDER BY goaf_datareport_time DESC
  5882. LIMIT 1
  5883. 13:04:59.815 [XNIO-1 task-2] INFO p6spy - 2023-08-25 13:04:59 | Time Consuming: 3 ms | Connection: statement-20 | SQL: SELECT *
  5884. FROM goaf_sensor
  5885. where oc_id = 406283
  5886. AND goaf_dev_name = 'compress'
  5887. 13:04:59.820 [XNIO-1 task-2] INFO p6spy - 2023-08-25 13:04:59 | Time Consuming: 4 ms | Connection: statement-20 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  5888. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  5889. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  5890. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  5891. f_alarm_temperature, goaf_datareport_time
  5892. FROM goaf_sensordata
  5893. WHERE oc_id = 406283
  5894. AND goaf_sensor_id = 442135
  5895. ORDER BY goaf_datareport_time DESC
  5896. LIMIT 1
  5897. 13:04:59.825 [XNIO-1 task-2] INFO p6spy - 2023-08-25 13:04:59 | Time Consuming: 4 ms | Connection: statement-20 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  5898. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  5899. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  5900. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  5901. f_alarm_temperature, goaf_datareport_time
  5902. FROM goaf_sensordata
  5903. WHERE oc_id = 406283
  5904. AND goaf_sensor_id = 442139
  5905. ORDER BY goaf_datareport_time DESC
  5906. LIMIT 1
  5907. 13:05:22.426 [nioEventLoopGroup-5-28] INFO p6spy - 2023-08-25 13:05:22 | Time Consuming: 3 ms | Connection: statement-20 | SQL: SELECT 1
  5908. 13:05:22.430 [nioEventLoopGroup-5-28] INFO p6spy - 2023-08-25 13:05:22 | Time Consuming: 4 ms | Connection: statement-20 | SQL: SELECT *
  5909. FROM goaf_sensor
  5910. WHERE goaf_sensor_ip = '192.168.3.12'
  5911. 13:06:35.824 [XNIO-1 task-2] INFO p6spy - 2023-08-25 13:06:35 | Time Consuming: 4 ms | Connection: statement-20 | SQL: SELECT 1
  5912. 13:06:35.836 [XNIO-1 task-2] INFO p6spy - 2023-08-25 13:06:35 | Time Consuming: 8 ms | Connection: statement-20 | SQL: SELECT td_wave_value_x, td_wave_value_y, td_wave_value_z
  5913. FROM goaf_sensordata
  5914. WHERE goaf_data_id = 442169
  5915. 13:06:37.892 [nioEventLoopGroup-5-29] INFO p6spy - 2023-08-25 13:06:37 | Time Consuming: 3 ms | Connection: statement-20 | SQL: SELECT 1
  5916. 13:06:37.900 [nioEventLoopGroup-5-29] INFO p6spy - 2023-08-25 13:06:37 | Time Consuming: 7 ms | Connection: statement-20 | SQL: SELECT *
  5917. FROM goaf_sensor
  5918. WHERE goaf_sensor_ip = '192.168.3.12'
  5919. 13:06:43.719 [XNIO-1 task-2] INFO p6spy - 2023-08-25 13:06:43 | Time Consuming: 4 ms | Connection: statement-20 | SQL: SELECT 1
  5920. 13:06:43.723 [XNIO-1 task-2] INFO p6spy - 2023-08-25 13:06:43 | Time Consuming: 4 ms | Connection: statement-20 | SQL: SELECT count(0) FROM goaf_sensor WHERE oc_id = 406283
  5921. 13:06:43.728 [XNIO-1 task-2] INFO p6spy - 2023-08-25 13:06:43 | Time Consuming: 3 ms | Connection: statement-20 | SQL: SELECT *
  5922. FROM goaf_sensor
  5923. where oc_id = 406283
  5924. LIMIT 10
  5925. 13:06:45.241 [XNIO-1 task-2] INFO p6spy - 2023-08-25 13:06:45 | Time Consuming: 3 ms | Connection: statement-20 | SQL: SELECT 1
  5926. 13:06:45.245 [XNIO-1 task-2] INFO p6spy - 2023-08-25 13:06:45 | Time Consuming: 4 ms | Connection: statement-20 | SQL: SELECT count(0) FROM goaf_sensor WHERE oc_id = 406283
  5927. 13:06:45.250 [XNIO-1 task-2] INFO p6spy - 2023-08-25 13:06:45 | Time Consuming: 4 ms | Connection: statement-20 | SQL: SELECT *
  5928. FROM goaf_sensor
  5929. where oc_id = 406283
  5930. LIMIT 10
  5931. 13:06:47.626 [XNIO-1 task-2] INFO p6spy - 2023-08-25 13:06:47 | Time Consuming: 4 ms | Connection: statement-20 | SQL: SELECT 1
  5932. 13:06:47.631 [XNIO-1 task-2] INFO p6spy - 2023-08-25 13:06:47 | Time Consuming: 3 ms | Connection: statement-20 | SQL: SELECT count(0) FROM goaf_sensor WHERE oc_id = 406283
  5933. 13:06:47.635 [XNIO-1 task-2] INFO p6spy - 2023-08-25 13:06:47 | Time Consuming: 3 ms | Connection: statement-20 | SQL: SELECT *
  5934. FROM goaf_sensor
  5935. where oc_id = 406283
  5936. LIMIT 10
  5937. 13:06:48.719 [XNIO-1 task-4] INFO p6spy - 2023-08-25 13:06:48 | Time Consuming: 5001 ms | Connection: statement-21 | SQL: SELECT 1
  5938. 13:06:48.723 [XNIO-1 task-4] INFO p6spy - 2023-08-25 13:06:48 | Time Consuming: 3 ms | Connection: statement-20 | SQL: SELECT 1
  5939. 13:06:48.727 [XNIO-1 task-4] INFO p6spy - 2023-08-25 13:06:48 | Time Consuming: 4 ms | Connection: statement-20 | SQL: SELECT
  5940. COUNT(*) AS 'goafSensorTotalNum',
  5941. IFNULL(SUM( CASE WHEN goaf_sensor_status = 1 THEN 1 ELSE 0 END ), 0) AS 'sensorOnlineNum'
  5942. FROM goaf_sensor
  5943. WHERE oc_id = 406283
  5944. 13:06:48.739 [XNIO-1 task-4] INFO p6spy - 2023-08-25 13:06:48 | Time Consuming: 3 ms | Connection: statement-20 | SQL: SELECT
  5945. COUNT(*) AS 'goafSensorTotalNum',
  5946. IFNULL(SUM( CASE WHEN goaf_sensor_status = 1 THEN 1 ELSE 0 END ), 0) AS 'sensorOnlineNum'
  5947. FROM goaf_sensor
  5948. WHERE oc_id = 406283
  5949. 13:06:49.370 [XNIO-1 task-4] INFO p6spy - 2023-08-25 13:06:49 | Time Consuming: 3 ms | Connection: statement-20 | SQL: SELECT 1
  5950. 13:06:49.375 [XNIO-1 task-4] INFO p6spy - 2023-08-25 13:06:49 | Time Consuming: 4 ms | Connection: statement-20 | SQL: SELECT count(0) FROM goaf_sensor WHERE oc_id = 406283
  5951. 13:06:49.379 [XNIO-1 task-4] INFO p6spy - 2023-08-25 13:06:49 | Time Consuming: 4 ms | Connection: statement-20 | SQL: SELECT *
  5952. FROM goaf_sensor
  5953. where oc_id = 406283
  5954. LIMIT 10
  5955. 13:06:50.248 [XNIO-1 task-5] INFO p6spy - 2023-08-25 13:06:50 | Time Consuming: 5001 ms | Connection: statement-22 | SQL: SELECT 1
  5956. 13:06:50.248 [XNIO-1 task-3] INFO p6spy - 2023-08-25 13:06:50 | Time Consuming: 5001 ms | Connection: statement-23 | SQL: SELECT 1
  5957. 13:06:50.253 [XNIO-1 task-3] INFO p6spy - 2023-08-25 13:06:50 | Time Consuming: 4 ms | Connection: statement-20 | SQL: SELECT 1
  5958. 13:06:50.261 [XNIO-1 task-3] INFO p6spy - 2023-08-25 13:06:50 | Time Consuming: 4 ms | Connection: statement-20 | SQL: SELECT *
  5959. FROM goaf_devinfo
  5960. where oc_id = 406283
  5961. 13:06:50.287 [XNIO-1 task-3] INFO p6spy - 2023-08-25 13:06:50 | Time Consuming: 3 ms | Connection: statement-20 | SQL: SELECT *
  5962. FROM goaf_devinfo
  5963. where oc_id = 406283
  5964. 13:06:55.249 [XNIO-1 task-5] INFO p6spy - 2023-08-25 13:06:55 | Time Consuming: 5001 ms | Connection: statement-24 | SQL: SELECT 1
  5965. 13:06:55.253 [XNIO-1 task-5] INFO p6spy - 2023-08-25 13:06:55 | Time Consuming: 3 ms | Connection: statement-20 | SQL: SELECT 1
  5966. 13:06:55.261 [XNIO-1 task-5] INFO p6spy - 2023-08-25 13:06:55 | Time Consuming: 3 ms | Connection: statement-20 | SQL: SELECT *
  5967. FROM goaf_syscfg
  5968. WHERE oc_id = 406283
  5969. 13:06:55.285 [XNIO-1 task-5] INFO p6spy - 2023-08-25 13:06:55 | Time Consuming: 4 ms | Connection: statement-20 | SQL: SELECT *
  5970. FROM goaf_syscfg
  5971. WHERE oc_id = 406283
  5972. 13:07:53.369 [nioEventLoopGroup-5-30] INFO p6spy - 2023-08-25 13:07:53 | Time Consuming: 4 ms | Connection: statement-20 | SQL: SELECT 1
  5973. 13:07:53.373 [nioEventLoopGroup-5-30] INFO p6spy - 2023-08-25 13:07:53 | Time Consuming: 4 ms | Connection: statement-20 | SQL: SELECT *
  5974. FROM goaf_sensor
  5975. WHERE goaf_sensor_ip = '192.168.3.12'
  5976. 13:09:08.834 [nioEventLoopGroup-5-31] INFO p6spy - 2023-08-25 13:09:08 | Time Consuming: 5 ms | Connection: statement-25 | SQL: SELECT 1
  5977. 13:09:08.840 [nioEventLoopGroup-5-31] INFO p6spy - 2023-08-25 13:09:08 | Time Consuming: 4 ms | Connection: statement-25 | SQL: SELECT *
  5978. FROM goaf_sensor
  5979. WHERE goaf_sensor_ip = '192.168.3.12'
  5980. 13:10:06.631 [XNIO-1 task-5] INFO p6spy - 2023-08-25 13:10:06 | Time Consuming: 4 ms | Connection: statement-25 | SQL: SELECT 1
  5981. 13:10:06.635 [XNIO-1 task-5] INFO p6spy - 2023-08-25 13:10:06 | Time Consuming: 3 ms | Connection: statement-25 | SQL: SELECT count(0) FROM goaf_sensor WHERE oc_id = 406283
  5982. 13:10:06.641 [XNIO-1 task-5] INFO p6spy - 2023-08-25 13:10:06 | Time Consuming: 5 ms | Connection: statement-25 | SQL: SELECT *
  5983. FROM goaf_sensor
  5984. where oc_id = 406283
  5985. LIMIT 10
  5986. 13:10:24.317 [nioEventLoopGroup-5-32] INFO p6spy - 2023-08-25 13:10:24 | Time Consuming: 4 ms | Connection: statement-25 | SQL: SELECT 1
  5987. 13:10:24.321 [nioEventLoopGroup-5-32] INFO p6spy - 2023-08-25 13:10:24 | Time Consuming: 4 ms | Connection: statement-25 | SQL: SELECT *
  5988. FROM goaf_sensor
  5989. WHERE goaf_sensor_ip = '192.168.3.12'
  5990. 13:11:30.390 [XNIO-1 task-5] INFO p6spy - 2023-08-25 13:11:30 | Time Consuming: 4 ms | Connection: statement-25 | SQL: SELECT 1
  5991. 13:11:30.395 [XNIO-1 task-5] INFO p6spy - 2023-08-25 13:11:30 | Time Consuming: 4 ms | Connection: statement-25 | SQL: SELECT count(0) FROM goaf_sensor WHERE oc_id = 406283
  5992. 13:11:30.401 [XNIO-1 task-5] INFO p6spy - 2023-08-25 13:11:30 | Time Consuming: 5 ms | Connection: statement-25 | SQL: SELECT *
  5993. FROM goaf_sensor
  5994. where oc_id = 406283
  5995. LIMIT 10
  5996. 13:11:35.387 [XNIO-1 task-3] INFO p6spy - 2023-08-25 13:11:35 | Time Consuming: 5001 ms | Connection: statement-27 | SQL: SELECT 1
  5997. 13:11:35.387 [XNIO-1 task-4] INFO p6spy - 2023-08-25 13:11:35 | Time Consuming: 5001 ms | Connection: statement-26 | SQL: SELECT 1
  5998. 13:11:35.392 [XNIO-1 task-4] INFO p6spy - 2023-08-25 13:11:35 | Time Consuming: 4 ms | Connection: statement-25 | SQL: SELECT 1
  5999. 13:11:35.402 [XNIO-1 task-4] INFO p6spy - 2023-08-25 13:11:35 | Time Consuming: 5 ms | Connection: statement-25 | SQL: SELECT *
  6000. FROM goaf_syscfg
  6001. WHERE oc_id = 406283
  6002. 13:11:39.780 [nioEventLoopGroup-5-1] INFO p6spy - 2023-08-25 13:11:39 | Time Consuming: 4 ms | Connection: statement-25 | SQL: SELECT 1
  6003. 13:11:39.784 [nioEventLoopGroup-5-1] INFO p6spy - 2023-08-25 13:11:39 | Time Consuming: 4 ms | Connection: statement-25 | SQL: SELECT *
  6004. FROM goaf_sensor
  6005. WHERE goaf_sensor_ip = '192.168.3.12'
  6006. 13:11:40.390 [XNIO-1 task-3] INFO p6spy - 2023-08-25 13:11:40 | Time Consuming: 5002 ms | Connection: statement-28 | SQL: SELECT 1
  6007. 13:11:40.395 [XNIO-1 task-3] INFO p6spy - 2023-08-25 13:11:40 | Time Consuming: 4 ms | Connection: statement-25 | SQL: SELECT 1
  6008. 13:11:40.404 [XNIO-1 task-3] INFO p6spy - 2023-08-25 13:11:40 | Time Consuming: 4 ms | Connection: statement-25 | SQL: SELECT *
  6009. FROM goaf_devinfo
  6010. where oc_id = 406283
  6011. 13:12:55.257 [nioEventLoopGroup-5-2] INFO p6spy - 2023-08-25 13:12:55 | Time Consuming: 4 ms | Connection: statement-25 | SQL: SELECT 1
  6012. 13:12:55.264 [nioEventLoopGroup-5-2] INFO p6spy - 2023-08-25 13:12:55 | Time Consuming: 6 ms | Connection: statement-25 | SQL: SELECT *
  6013. FROM goaf_sensor
  6014. WHERE goaf_sensor_ip = '192.168.3.12'
  6015. 13:14:10.721 [nioEventLoopGroup-5-3] INFO p6spy - 2023-08-25 13:14:10 | Time Consuming: 4 ms | Connection: statement-25 | SQL: SELECT 1
  6016. 13:14:10.725 [nioEventLoopGroup-5-3] INFO p6spy - 2023-08-25 13:14:10 | Time Consuming: 4 ms | Connection: statement-25 | SQL: SELECT *
  6017. FROM goaf_sensor
  6018. WHERE goaf_sensor_ip = '192.168.3.12'
  6019. 13:15:26.188 [nioEventLoopGroup-5-4] INFO p6spy - 2023-08-25 13:15:26 | Time Consuming: 4 ms | Connection: statement-31 | SQL: SELECT 1
  6020. 13:15:26.194 [nioEventLoopGroup-5-4] INFO p6spy - 2023-08-25 13:15:26 | Time Consuming: 4 ms | Connection: statement-31 | SQL: SELECT *
  6021. FROM goaf_sensor
  6022. WHERE goaf_sensor_ip = '192.168.3.12'
  6023. 13:16:41.662 [nioEventLoopGroup-5-5] INFO p6spy - 2023-08-25 13:16:41 | Time Consuming: 5 ms | Connection: statement-31 | SQL: SELECT 1
  6024. 13:16:41.668 [nioEventLoopGroup-5-5] INFO p6spy - 2023-08-25 13:16:41 | Time Consuming: 5 ms | Connection: statement-31 | SQL: SELECT *
  6025. FROM goaf_sensor
  6026. WHERE goaf_sensor_ip = '192.168.3.12'
  6027. 13:17:57.129 [nioEventLoopGroup-5-6] INFO p6spy - 2023-08-25 13:17:57 | Time Consuming: 6 ms | Connection: statement-31 | SQL: SELECT 1
  6028. 13:17:57.135 [nioEventLoopGroup-5-6] INFO p6spy - 2023-08-25 13:17:57 | Time Consuming: 5 ms | Connection: statement-31 | SQL: SELECT *
  6029. FROM goaf_sensor
  6030. WHERE goaf_sensor_ip = '192.168.3.12'
  6031. 13:19:12.609 [nioEventLoopGroup-5-7] INFO p6spy - 2023-08-25 13:19:12 | Time Consuming: 5 ms | Connection: statement-31 | SQL: SELECT 1
  6032. 13:19:12.614 [nioEventLoopGroup-5-7] INFO p6spy - 2023-08-25 13:19:12 | Time Consuming: 4 ms | Connection: statement-31 | SQL: SELECT *
  6033. FROM goaf_sensor
  6034. WHERE goaf_sensor_ip = '192.168.3.12'
  6035. 13:20:33.065 [nioEventLoopGroup-5-8] INFO p6spy - 2023-08-25 13:20:33 | Time Consuming: 5001 ms | Connection: statement-35 | SQL: SELECT 1
  6036. 13:20:33.069 [nioEventLoopGroup-5-8] INFO p6spy - 2023-08-25 13:20:33 | Time Consuming: 4 ms | Connection: statement-36 | SQL: SELECT 1
  6037. 13:20:33.075 [nioEventLoopGroup-5-8] INFO p6spy - 2023-08-25 13:20:33 | Time Consuming: 5 ms | Connection: statement-36 | SQL: SELECT *
  6038. FROM goaf_sensor
  6039. WHERE goaf_sensor_ip = '192.168.3.12'
  6040. 13:21:48.566 [nioEventLoopGroup-5-9] INFO p6spy - 2023-08-25 13:21:48 | Time Consuming: 4 ms | Connection: statement-36 | SQL: SELECT 1
  6041. 13:21:48.571 [nioEventLoopGroup-5-9] INFO p6spy - 2023-08-25 13:21:48 | Time Consuming: 4 ms | Connection: statement-36 | SQL: SELECT *
  6042. FROM goaf_sensor
  6043. WHERE goaf_sensor_ip = '192.168.3.12'
  6044. 13:23:04.026 [nioEventLoopGroup-5-10] INFO p6spy - 2023-08-25 13:23:04 | Time Consuming: 4 ms | Connection: statement-36 | SQL: SELECT 1
  6045. 13:23:04.031 [nioEventLoopGroup-5-10] INFO p6spy - 2023-08-25 13:23:04 | Time Consuming: 4 ms | Connection: statement-36 | SQL: SELECT *
  6046. FROM goaf_sensor
  6047. WHERE goaf_sensor_ip = '192.168.3.12'
  6048. 13:23:49.748 [XNIO-1 task-3] INFO p6spy - 2023-08-25 13:23:49 | Time Consuming: 4 ms | Connection: statement-36 | SQL: SELECT 1
  6049. 13:23:49.761 [XNIO-1 task-3] INFO p6spy - 2023-08-25 13:23:49 | Time Consuming: 8 ms | Connection: statement-36 | SQL: SELECT td_wave_value_x, td_wave_value_y, td_wave_value_z
  6050. FROM goaf_sensordata
  6051. WHERE goaf_data_id = 442169
  6052. 13:24:17.652 [XNIO-1 task-4] INFO p6spy - 2023-08-25 13:24:17 | Time Consuming: 4 ms | Connection: statement-36 | SQL: SELECT 1
  6053. 13:24:17.664 [XNIO-1 task-4] INFO p6spy - 2023-08-25 13:24:17 | Time Consuming: 7 ms | Connection: statement-36 | SQL: SELECT td_wave_value_x, td_wave_value_y, td_wave_value_z
  6054. FROM goaf_sensordata
  6055. WHERE goaf_data_id = 442169
  6056. 13:24:19.500 [nioEventLoopGroup-5-11] INFO p6spy - 2023-08-25 13:24:19 | Time Consuming: 3 ms | Connection: statement-36 | SQL: SELECT 1
  6057. 13:24:19.504 [nioEventLoopGroup-5-11] INFO p6spy - 2023-08-25 13:24:19 | Time Consuming: 3 ms | Connection: statement-36 | SQL: SELECT *
  6058. FROM goaf_sensor
  6059. WHERE goaf_sensor_ip = '192.168.3.12'
  6060. 13:25:04.674 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  6061. 13:25:04.675 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.4.Final
  6062. 13:25:04.678 [SpringApplicationShutdownHook] INFO io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
  6063. 13:25:04.679 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - Removing {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  6064. 13:25:04.679 [SpringApplicationShutdownHook] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 0 subscriber(s).
  6065. 13:25:04.680 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - stopped bean '_org.springframework.integration.errorLogger'
  6066. 13:25:04.687 [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)
  6067. 13:25:04.687 [SpringApplicationShutdownHook] INFO o.s.s.quartz.SchedulerFactoryBean - Shutting down Quartz Scheduler
  6068. 13:25:04.687 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
  6069. 13:25:04.687 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  6070. 13:25:04.687 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
  6071. 13:25:04.705 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown initiated...
  6072. 13:25:04.707 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown completed.
  6073. 13:25:10.166 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.0.Final
  6074. 13:25:10.213 [restartedMain] INFO com.zhyc.xps.XPSApplication - Starting XPSApplication using Java 17.0.6 with PID 19560 (E:\zhycnewprj\iotplatform\xps-server-3\xps-application\target\classes started by qzz19 in E:\zhycnewprj\iotplatform\xps-server-3)
  6075. 13:25:10.214 [restartedMain] INFO com.zhyc.xps.XPSApplication - The following 1 profile is active: "local"
  6076. 13:25:10.266 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
  6077. 13:25:10.267 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
  6078. 13:25:12.084 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
  6079. 13:25:12.087 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  6080. 13:25:12.178 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 76 ms. Found 0 Redis repository interfaces.
  6081. 13:25:12.344 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created.
  6082. 13:25:12.361 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created.
  6083. 13:25:13.111 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  6084. 13:25:13.111 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 2844 ms
  6085. 13:25:15.473 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor
  6086. 13:25:15.483 [restartedMain] INFO o.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  6087. 13:25:15.484 [restartedMain] INFO org.quartz.core.QuartzScheduler - Quartz Scheduler v.2.3.2 created.
  6088. 13:25:15.484 [restartedMain] INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized.
  6089. 13:25:15.485 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
  6090. Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  6091. NOT STARTED.
  6092. Currently in standby mode.
  6093. Number of jobs executed: 0
  6094. Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  6095. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
  6096. 13:25:15.485 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  6097. 13:25:15.485 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2
  6098. 13:25:15.485 [restartedMain] INFO org.quartz.core.QuartzScheduler - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@727b8ed7
  6099. 13:25:17.189 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer - LiveReload server is running on port 35729
  6100. 13:25:17.194 [restartedMain] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 15 endpoint(s) beneath base path '/actuator/z'
  6101. 13:25:17.338 [restartedMain] INFO io.undertow.websockets.jsr - UT026003: Adding annotated server endpoint class com.zhyc.xps.common.ws.WebSocketServer for path /websocket/link
  6102. 13:25:17.368 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  6103. 13:25:17.369 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 1 subscriber(s).
  6104. 13:25:17.369 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - started bean '_org.springframework.integration.errorLogger'
  6105. 13:25:17.389 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  6106. 13:25:17.398 [restartedMain] INFO org.xnio - XNIO version 3.8.8.Final
  6107. 13:25:17.409 [restartedMain] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.8.Final
  6108. 13:25:17.439 [restartedMain] INFO org.jboss.threads - JBoss Threads version 3.5.0.Final
  6109. 13:25:17.491 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 1788 (http)
  6110. 13:25:17.492 [restartedMain] INFO o.s.s.quartz.SchedulerFactoryBean - Starting Quartz Scheduler now
  6111. 13:25:17.492 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  6112. 13:25:17.518 [restartedMain] INFO com.zhyc.xps.XPSApplication - Started XPSApplication in 7.839 seconds (process running for 8.591)
  6113. 13:25:17.520 [restartedMain] INFO com.zhyc.xps.sys.job.InitSystemJob - 初始化系统定时任务
  6114. 13:25:17.527 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Starting...
  6115. 13:25:17.847 [restartedMain] INFO p6spy - 2023-08-25 13:25:17 | Time Consuming: 13 ms | Connection: statement-0 | SQL: SELECT 1
  6116. 13:25:17.852 [restartedMain] INFO com.zaxxer.hikari.pool.HikariPool - DatebookHikariCP - Added connection com.p6spy.engine.wrapper.ConnectionWrapper@291addd8
  6117. 13:25:17.862 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Start completed.
  6118. 13:25:17.940 [restartedMain] INFO p6spy - 2023-08-25 13:25:17 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT
  6119. A.job_id,
  6120. A.job_title,
  6121. A.job_desc,
  6122. A.status,
  6123. A.job_type,
  6124. A.job_code,
  6125. A.job_cron,
  6126. A.job_class_id,
  6127. B.job_class,
  6128. A.cycle_title,
  6129. A.cycle_period,
  6130. A.cycle_unit
  6131. FROM job AS A
  6132. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  6133. WHERE A.deleted_flag = 0
  6134. AND A.status = 1
  6135. ORDER BY A.job_id ASC
  6136. 13:25:17.960 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  6137. 13:25:17.962 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  6138. 13:25:18.186 [nioEventLoopGroup-5-1] INFO p6spy - 2023-08-25 13:25:18 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT *
  6139. FROM goaf_sensor
  6140. WHERE goaf_sensor_ip = '192.168.3.12'
  6141. 13:25:18.292 [RMI TCP Connection(4)-192.168.3.5] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
  6142. 13:25:18.292 [RMI TCP Connection(4)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
  6143. 13:25:18.295 [RMI TCP Connection(4)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 3 ms
  6144. 13:25:18.301 [RMI TCP Connection(5)-192.168.3.5] INFO p6spy - 2023-08-25 13:25:18 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  6145. 13:25:43.568 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  6146. 13:25:43.569 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.4.Final
  6147. 13:25:43.576 [SpringApplicationShutdownHook] INFO io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
  6148. 13:25:43.578 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - Removing {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  6149. 13:25:43.578 [SpringApplicationShutdownHook] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 0 subscriber(s).
  6150. 13:25:43.579 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - stopped bean '_org.springframework.integration.errorLogger'
  6151. 13:25:43.591 [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)
  6152. 13:25:43.593 [SpringApplicationShutdownHook] INFO o.s.s.quartz.SchedulerFactoryBean - Shutting down Quartz Scheduler
  6153. 13:25:43.593 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
  6154. 13:25:43.593 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  6155. 13:25:43.593 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
  6156. 13:25:43.606 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown initiated...
  6157. 13:25:43.610 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown completed.
  6158. 13:25:46.740 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 8.0.0.Final
  6159. 13:25:46.789 [restartedMain] INFO com.zhyc.xps.XPSApplication - Starting XPSApplication using Java 17.0.6 with PID 4536 (E:\zhycnewprj\iotplatform\xps-server-3\xps-application\target\classes started by qzz19 in E:\zhycnewprj\iotplatform\xps-server-3)
  6160. 13:25:46.790 [restartedMain] INFO com.zhyc.xps.XPSApplication - The following 1 profile is active: "local"
  6161. 13:25:46.845 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
  6162. 13:25:46.845 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor - For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
  6163. 13:25:48.662 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode
  6164. 13:25:48.665 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  6165. 13:25:48.757 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 78 ms. Found 0 Redis repository interfaces.
  6166. 13:25:48.929 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created.
  6167. 13:25:48.947 [restartedMain] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created.
  6168. 13:25:49.691 [restartedMain] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  6169. 13:25:49.691 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 2846 ms
  6170. 13:25:52.048 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor
  6171. 13:25:52.058 [restartedMain] INFO o.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  6172. 13:25:52.058 [restartedMain] INFO org.quartz.core.QuartzScheduler - Quartz Scheduler v.2.3.2 created.
  6173. 13:25:52.059 [restartedMain] INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized.
  6174. 13:25:52.059 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
  6175. Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  6176. NOT STARTED.
  6177. Currently in standby mode.
  6178. Number of jobs executed: 0
  6179. Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  6180. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
  6181. 13:25:52.059 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  6182. 13:25:52.060 [restartedMain] INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2
  6183. 13:25:52.060 [restartedMain] INFO org.quartz.core.QuartzScheduler - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@7c504c66
  6184. 13:25:53.780 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer - LiveReload server is running on port 35729
  6185. 13:25:53.786 [restartedMain] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 15 endpoint(s) beneath base path '/actuator/z'
  6186. 13:25:53.929 [restartedMain] INFO io.undertow.websockets.jsr - UT026003: Adding annotated server endpoint class com.zhyc.xps.common.ws.WebSocketServer for path /websocket/link
  6187. 13:25:53.960 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  6188. 13:25:53.961 [restartedMain] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 1 subscriber(s).
  6189. 13:25:53.961 [restartedMain] INFO o.s.i.endpoint.EventDrivenConsumer - started bean '_org.springframework.integration.errorLogger'
  6190. 13:25:53.981 [restartedMain] INFO io.undertow - starting server: Undertow - 2.3.4.Final
  6191. 13:25:53.991 [restartedMain] INFO org.xnio - XNIO version 3.8.8.Final
  6192. 13:25:54.001 [restartedMain] INFO org.xnio.nio - XNIO NIO Implementation Version 3.8.8.Final
  6193. 13:25:54.032 [restartedMain] INFO org.jboss.threads - JBoss Threads version 3.5.0.Final
  6194. 13:25:54.083 [restartedMain] INFO o.s.b.w.e.undertow.UndertowWebServer - Undertow started on port(s) 1788 (http)
  6195. 13:25:54.085 [restartedMain] INFO o.s.s.quartz.SchedulerFactoryBean - Starting Quartz Scheduler now
  6196. 13:25:54.085 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  6197. 13:25:54.110 [restartedMain] INFO com.zhyc.xps.XPSApplication - Started XPSApplication in 7.886 seconds (process running for 8.644)
  6198. 13:25:54.112 [restartedMain] INFO com.zhyc.xps.sys.job.InitSystemJob - 初始化系统定时任务
  6199. 13:25:54.119 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Starting...
  6200. 13:25:54.440 [restartedMain] INFO p6spy - 2023-08-25 13:25:54 | Time Consuming: 14 ms | Connection: statement-0 | SQL: SELECT 1
  6201. 13:25:54.445 [restartedMain] INFO com.zaxxer.hikari.pool.HikariPool - DatebookHikariCP - Added connection com.p6spy.engine.wrapper.ConnectionWrapper@48601819
  6202. 13:25:54.456 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Start completed.
  6203. 13:25:54.524 [restartedMain] INFO p6spy - 2023-08-25 13:25:54 | Time Consuming: 4 ms | Connection: statement-0 | SQL: SELECT
  6204. A.job_id,
  6205. A.job_title,
  6206. A.job_desc,
  6207. A.status,
  6208. A.job_type,
  6209. A.job_code,
  6210. A.job_cron,
  6211. A.job_class_id,
  6212. B.job_class,
  6213. A.cycle_title,
  6214. A.cycle_period,
  6215. A.cycle_unit
  6216. FROM job AS A
  6217. LEFT JOIN job_class AS B ON (A.job_class_id = B.job_class_id)
  6218. WHERE A.deleted_flag = 0
  6219. AND A.status = 1
  6220. ORDER BY A.job_id ASC
  6221. 13:25:54.545 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  6222. 13:25:54.547 [restartedMain] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED started.
  6223. 13:25:54.852 [RMI TCP Connection(4)-192.168.3.5] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
  6224. 13:25:54.852 [RMI TCP Connection(4)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
  6225. 13:25:54.855 [RMI TCP Connection(4)-192.168.3.5] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 3 ms
  6226. 13:25:54.861 [RMI TCP Connection(3)-192.168.3.5] INFO p6spy - 2023-08-25 13:25:54 | Time Consuming: 3 ms | Connection: statement-0 | SQL: SELECT 1
  6227. 14:30:54.400 [XNIO-1 task-2] INFO p6spy - 2023-08-25 14:30:54 | Time Consuming: 5009 ms | Connection: statement-35 | SQL: SELECT 1
  6228. 14:30:54.439 [XNIO-1 task-3] INFO p6spy - 2023-08-25 14:30:54 | Time Consuming: 5001 ms | Connection: statement-36 | SQL: SELECT 1
  6229. 14:30:59.402 [XNIO-1 task-2] INFO p6spy - 2023-08-25 14:30:59 | Time Consuming: 5001 ms | Connection: statement-37 | SQL: SELECT 1
  6230. 14:30:59.442 [XNIO-1 task-3] INFO p6spy - 2023-08-25 14:30:59 | Time Consuming: 5001 ms | Connection: statement-38 | SQL: SELECT 1
  6231. 14:30:59.446 [XNIO-1 task-3] INFO p6spy - 2023-08-25 14:30:59 | Time Consuming: 3 ms | Connection: statement-40 | SQL: SELECT 1
  6232. 14:30:59.450 [XNIO-1 task-3] INFO p6spy - 2023-08-25 14:30:59 | Time Consuming: 3 ms | Connection: statement-40 | SQL: SELECT count(0) FROM goaf_sensor WHERE oc_id = 406283
  6233. 14:30:59.456 [XNIO-1 task-3] INFO p6spy - 2023-08-25 14:30:59 | Time Consuming: 4 ms | Connection: statement-40 | SQL: SELECT *
  6234. FROM goaf_sensor
  6235. where oc_id = 406283
  6236. LIMIT 10
  6237. 14:31:04.405 [XNIO-1 task-2] INFO p6spy - 2023-08-25 14:31:04 | Time Consuming: 5002 ms | Connection: statement-39 | SQL: SELECT 1
  6238. 14:31:04.409 [XNIO-1 task-2] INFO p6spy - 2023-08-25 14:31:04 | Time Consuming: 4 ms | Connection: statement-40 | SQL: SELECT 1
  6239. 14:31:04.414 [XNIO-1 task-2] INFO p6spy - 2023-08-25 14:31:04 | Time Consuming: 4 ms | Connection: statement-40 | SQL: SELECT
  6240. COUNT(*) AS 'goafSensorTotalNum',
  6241. IFNULL(SUM( CASE WHEN goaf_sensor_status = 1 THEN 1 ELSE 0 END ), 0) AS 'sensorOnlineNum'
  6242. FROM goaf_sensor
  6243. WHERE oc_id = 406283
  6244. 14:31:27.725 [XNIO-1 task-2] INFO p6spy - 2023-08-25 14:31:27 | Time Consuming: 4 ms | Connection: statement-40 | SQL: SELECT 1
  6245. 14:31:27.730 [XNIO-1 task-2] INFO p6spy - 2023-08-25 14:31:27 | Time Consuming: 4 ms | Connection: statement-40 | SQL: SELECT count(0) FROM goaf_sensor WHERE oc_id = 406283
  6246. 14:31:27.735 [XNIO-1 task-2] INFO p6spy - 2023-08-25 14:31:27 | Time Consuming: 4 ms | Connection: statement-40 | SQL: SELECT *
  6247. FROM goaf_sensor
  6248. where oc_id = 406283
  6249. LIMIT 10
  6250. 14:31:29.571 [XNIO-1 task-2] INFO p6spy - 2023-08-25 14:31:29 | Time Consuming: 4 ms | Connection: statement-40 | SQL: SELECT 1
  6251. 14:31:29.580 [XNIO-1 task-2] INFO p6spy - 2023-08-25 14:31:29 | Time Consuming: 3 ms | Connection: statement-40 | SQL: SELECT *
  6252. FROM goaf_devinfo
  6253. where oc_id = 406283
  6254. 14:31:29.594 [XNIO-1 task-2] INFO p6spy - 2023-08-25 14:31:29 | Time Consuming: 4 ms | Connection: statement-40 | SQL: SELECT *
  6255. FROM goaf_sensor
  6256. where oc_id = 406283
  6257. AND goaf_dev_name = 'other'
  6258. 14:31:29.599 [XNIO-1 task-2] INFO p6spy - 2023-08-25 14:31:29 | Time Consuming: 4 ms | Connection: statement-40 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  6259. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  6260. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  6261. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  6262. f_alarm_temperature, goaf_datareport_time
  6263. FROM goaf_sensordata
  6264. WHERE oc_id = 406283
  6265. AND goaf_sensor_id = 442129
  6266. ORDER BY goaf_datareport_time DESC
  6267. LIMIT 1
  6268. 14:31:29.605 [XNIO-1 task-2] INFO p6spy - 2023-08-25 14:31:29 | Time Consuming: 4 ms | Connection: statement-40 | SQL: SELECT *
  6269. FROM goaf_sensor
  6270. where oc_id = 406283
  6271. AND goaf_dev_name = 'waterpump'
  6272. 14:31:29.610 [XNIO-1 task-2] INFO p6spy - 2023-08-25 14:31:29 | Time Consuming: 4 ms | Connection: statement-40 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  6273. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  6274. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  6275. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  6276. f_alarm_temperature, goaf_datareport_time
  6277. FROM goaf_sensordata
  6278. WHERE oc_id = 406283
  6279. AND goaf_sensor_id = 442136
  6280. ORDER BY goaf_datareport_time DESC
  6281. LIMIT 1
  6282. 14:31:29.616 [XNIO-1 task-2] INFO p6spy - 2023-08-25 14:31:29 | Time Consuming: 4 ms | Connection: statement-40 | SQL: SELECT *
  6283. FROM goaf_sensor
  6284. where oc_id = 406283
  6285. AND goaf_dev_name = 'machinery'
  6286. 14:31:29.626 [XNIO-1 task-2] INFO p6spy - 2023-08-25 14:31:29 | Time Consuming: 10 ms | Connection: statement-40 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  6287. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  6288. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  6289. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  6290. f_alarm_temperature, goaf_datareport_time
  6291. FROM goaf_sensordata
  6292. WHERE oc_id = 406283
  6293. AND goaf_sensor_id = 442137
  6294. ORDER BY goaf_datareport_time DESC
  6295. LIMIT 1
  6296. 14:31:29.632 [XNIO-1 task-2] INFO p6spy - 2023-08-25 14:31:29 | Time Consuming: 4 ms | Connection: statement-40 | SQL: SELECT *
  6297. FROM goaf_sensor
  6298. where oc_id = 406283
  6299. AND goaf_dev_name = 'compress'
  6300. 14:31:29.636 [XNIO-1 task-2] INFO p6spy - 2023-08-25 14:31:29 | Time Consuming: 3 ms | Connection: statement-40 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  6301. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  6302. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  6303. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  6304. f_alarm_temperature, goaf_datareport_time
  6305. FROM goaf_sensordata
  6306. WHERE oc_id = 406283
  6307. AND goaf_sensor_id = 442135
  6308. ORDER BY goaf_datareport_time DESC
  6309. LIMIT 1
  6310. 14:31:29.640 [XNIO-1 task-2] INFO p6spy - 2023-08-25 14:31:29 | Time Consuming: 3 ms | Connection: statement-40 | SQL: SELECT goaf_data_id, oc_id, goaf_sensor_id, goaf_sensor_name, frequency_x, frequency_y, frequency_z,
  6311. acc_x, acc_y, acc_z, vel_x, vel_y, vel_z, dis_x, dis_y, dis_z, sensor_temperature,
  6312. ang_x, ang_y, ang_z, f_alarm_acc_x, f_alarm_acc_y, f_alarm_acc_z,
  6313. f_alarm_vel_x, f_alarm_vel_y, f_alarm_vel_z, f_alarm_dis_x, f_alarm_dis_y, f_alarm_dis_z,
  6314. f_alarm_temperature, goaf_datareport_time
  6315. FROM goaf_sensordata
  6316. WHERE oc_id = 406283
  6317. AND goaf_sensor_id = 442139
  6318. ORDER BY goaf_datareport_time DESC
  6319. LIMIT 1
  6320. 14:31:33.643 [XNIO-1 task-2] INFO p6spy - 2023-08-25 14:31:33 | Time Consuming: 4 ms | Connection: statement-40 | SQL: SELECT 1
  6321. 14:31:33.655 [XNIO-1 task-2] INFO p6spy - 2023-08-25 14:31:33 | Time Consuming: 6 ms | Connection: statement-40 | SQL: SELECT td_wave_value_x, td_wave_value_y, td_wave_value_z
  6322. FROM goaf_sensordata
  6323. WHERE goaf_data_id = 442159
  6324. 14:31:36.962 [XNIO-1 task-2] INFO p6spy - 2023-08-25 14:31:36 | Time Consuming: 4 ms | Connection: statement-40 | SQL: SELECT 1
  6325. 14:31:36.977 [XNIO-1 task-2] INFO p6spy - 2023-08-25 14:31:36 | Time Consuming: 9 ms | Connection: statement-40 | SQL: SELECT td_wave_value_x, td_wave_value_y, td_wave_value_z
  6326. FROM goaf_sensordata
  6327. WHERE goaf_data_id = 442169
  6328. 14:31:40.310 [XNIO-1 task-2] INFO p6spy - 2023-08-25 14:31:40 | Time Consuming: 3 ms | Connection: statement-40 | SQL: SELECT 1
  6329. 14:31:40.321 [XNIO-1 task-2] INFO p6spy - 2023-08-25 14:31:40 | Time Consuming: 7 ms | Connection: statement-40 | SQL: SELECT td_wave_value_x, td_wave_value_y, td_wave_value_z
  6330. FROM goaf_sensordata
  6331. WHERE goaf_data_id = 442170
  6332. 14:31:53.744 [XNIO-1 task-2] INFO p6spy - 2023-08-25 14:31:53 | Time Consuming: 4 ms | Connection: statement-40 | SQL: SELECT 1
  6333. 14:31:53.756 [XNIO-1 task-2] INFO p6spy - 2023-08-25 14:31:53 | Time Consuming: 5 ms | Connection: statement-40 | SQL: SELECT td_wave_value_x, td_wave_value_y, td_wave_value_z
  6334. FROM goaf_sensordata
  6335. WHERE goaf_data_id = 442152
  6336. 16:54:57.967 [XNIO-1 task-2] INFO p6spy - 2023-08-25 16:54:57 | Time Consuming: 5007 ms | Connection: statement-126 | SQL: SELECT 1
  6337. 16:54:57.972 [XNIO-1 task-2] INFO p6spy - 2023-08-25 16:54:57 | Time Consuming: 3 ms | Connection: statement-127 | SQL: SELECT 1
  6338. 16:54:57.987 [XNIO-1 task-2] INFO p6spy - 2023-08-25 16:54:57 | Time Consuming: 10 ms | Connection: statement-127 | SQL: SELECT td_wave_value_x, td_wave_value_y, td_wave_value_z
  6339. FROM goaf_sensordata
  6340. WHERE goaf_data_id = 442169
  6341. 16:55:18.866 [XNIO-1 task-2] INFO p6spy - 2023-08-25 16:55:18 | Time Consuming: 5 ms | Connection: statement-127 | SQL: SELECT 1
  6342. 16:55:18.871 [XNIO-1 task-2] INFO p6spy - 2023-08-25 16:55:18 | Time Consuming: 4 ms | Connection: statement-127 | SQL: SELECT
  6343. COUNT(*) AS 'goafSensorTotalNum',
  6344. IFNULL(SUM( CASE WHEN goaf_sensor_status = 1 THEN 1 ELSE 0 END ), 0) AS 'sensorOnlineNum'
  6345. FROM goaf_sensor
  6346. WHERE oc_id = 406283
  6347. 16:55:20.148 [XNIO-1 task-2] INFO p6spy - 2023-08-25 16:55:20 | Time Consuming: 4 ms | Connection: statement-127 | SQL: SELECT 1
  6348. 16:55:20.157 [XNIO-1 task-2] INFO p6spy - 2023-08-25 16:55:20 | Time Consuming: 4 ms | Connection: statement-127 | SQL: SELECT *
  6349. FROM goaf_syscfg
  6350. WHERE oc_id = 406283
  6351. 16:55:23.868 [XNIO-1 task-3] INFO p6spy - 2023-08-25 16:55:23 | Time Consuming: 5001 ms | Connection: statement-128 | SQL: SELECT 1
  6352. 16:55:23.873 [XNIO-1 task-3] INFO p6spy - 2023-08-25 16:55:23 | Time Consuming: 4 ms | Connection: statement-127 | SQL: SELECT 1
  6353. 16:55:23.876 [XNIO-1 task-3] INFO p6spy - 2023-08-25 16:55:23 | Time Consuming: 3 ms | Connection: statement-127 | SQL: SELECT count(0) FROM goaf_sensor WHERE oc_id = 406283
  6354. 16:55:23.880 [XNIO-1 task-3] INFO p6spy - 2023-08-25 16:55:23 | Time Consuming: 4 ms | Connection: statement-127 | SQL: SELECT *
  6355. FROM goaf_sensor
  6356. where oc_id = 406283
  6357. LIMIT 10
  6358. 16:55:23.896 [XNIO-1 task-3] INFO p6spy - 2023-08-25 16:55:23 | Time Consuming: 3 ms | Connection: statement-127 | SQL: SELECT count(0) FROM goaf_sensor WHERE oc_id = 406283
  6359. 16:55:23.901 [XNIO-1 task-3] INFO p6spy - 2023-08-25 16:55:23 | Time Consuming: 4 ms | Connection: statement-127 | SQL: SELECT *
  6360. FROM goaf_sensor
  6361. where oc_id = 406283
  6362. LIMIT 10
  6363. 16:55:25.146 [XNIO-1 task-4] INFO p6spy - 2023-08-25 16:55:25 | Time Consuming: 5000 ms | Connection: statement-129 | SQL: SELECT 1
  6364. 16:55:25.152 [XNIO-1 task-4] INFO p6spy - 2023-08-25 16:55:25 | Time Consuming: 4 ms | Connection: statement-127 | SQL: SELECT 1
  6365. 16:55:25.160 [XNIO-1 task-4] INFO p6spy - 2023-08-25 16:55:25 | Time Consuming: 3 ms | Connection: statement-127 | SQL: SELECT *
  6366. FROM goaf_devinfo
  6367. where oc_id = 406283
  6368. 16:55:30.125 [XNIO-1 task-4] INFO p6spy - 2023-08-25 16:55:30 | Time Consuming: 8 ms | Connection: statement-127 | SQL: SELECT 1
  6369. 16:55:30.136 [XNIO-1 task-4] INFO p6spy - 2023-08-25 16:55:30 | Time Consuming: 9 ms | Connection: statement-127 | SQL: SELECT count(0) FROM goaf_sensor WHERE oc_id = 406283
  6370. 16:55:30.141 [XNIO-1 task-4] INFO p6spy - 2023-08-25 16:55:30 | Time Consuming: 4 ms | Connection: statement-127 | SQL: SELECT *
  6371. FROM goaf_sensor
  6372. where oc_id = 406283
  6373. LIMIT 10
  6374. 16:55:33.060 [XNIO-1 task-4] INFO p6spy - 2023-08-25 16:55:33 | Time Consuming: 3 ms | Connection: statement-127 | SQL: SELECT 1
  6375. 16:55:33.066 [XNIO-1 task-3] INFO p6spy - 2023-08-25 16:55:33 | Time Consuming: 3 ms | Connection: statement-131 | SQL: SELECT 1
  6376. 16:55:33.067 [XNIO-1 task-2] INFO p6spy - 2023-08-25 16:55:33 | Time Consuming: 3 ms | Connection: statement-132 | SQL: SELECT 1
  6377. 16:55:33.068 [XNIO-1 task-4] INFO p6spy - 2023-08-25 16:55:33 | Time Consuming: 3 ms | Connection: statement-127 | SQL: SELECT *
  6378. FROM goaf_syscfg
  6379. WHERE oc_id = 406283
  6380. 16:55:33.077 [XNIO-1 task-3] INFO p6spy - 2023-08-25 16:55:33 | Time Consuming: 4 ms | Connection: statement-131 | SQL: SELECT count(0) FROM goaf_devinfo WHERE oc_id = 406283
  6381. 16:55:33.077 [XNIO-1 task-2] INFO p6spy - 2023-08-25 16:55:33 | Time Consuming: 4 ms | Connection: statement-132 | SQL: SELECT *
  6382. FROM goaf_baseinfo
  6383. WHERE oc_id = 406283
  6384. 16:55:33.083 [XNIO-1 task-3] INFO p6spy - 2023-08-25 16:55:33 | Time Consuming: 6 ms | Connection: statement-131 | SQL: SELECT *
  6385. FROM goaf_devinfo
  6386. where oc_id = 406283
  6387. LIMIT 10
  6388. 16:55:35.089 [XNIO-1 task-2] INFO p6spy - 2023-08-25 16:55:35 | Time Consuming: 5 ms | Connection: statement-132 | SQL: SELECT 1
  6389. 16:55:35.102 [XNIO-1 task-2] INFO p6spy - 2023-08-25 16:55:35 | Time Consuming: 5 ms | Connection: statement-132 | SQL: SELECT
  6390. client_id,
  6391. client_title,
  6392. client_app_id,
  6393. client_app_key,
  6394. client_app_secret,
  6395. client_desc,
  6396. status,
  6397. is_fixed
  6398. FROM client
  6399. WHERE deleted_flag = 0
  6400. AND client_app_id = '10001'
  6401. AND client_app_key = '82a8bf439373e305'
  6402. 16:55:35.120 [XNIO-1 task-2] INFO p6spy - 2023-08-25 16:55:35 | Time Consuming: 5 ms | Connection: statement-132 | SQL: SELECT
  6403. A.client_id,
  6404. A.role_id,
  6405. A.permit_id,
  6406. A.permit_title,
  6407. A.permit_code,
  6408. A.permit_entry,
  6409. A.permit_desc,
  6410. A.permit_type,
  6411. A.parent_id,
  6412. A.root_id,
  6413. A.sort_no,
  6414. A.is_home
  6415. FROM s_role_permit AS A
  6416. WHERE 1 = 1
  6417. AND A.client_id = 2
  6418. AND A.role_id = 6
  6419. ORDER BY A.parent_id ASC ,A.sort_no ASC
  6420. 16:55:35.260 [XNIO-1 task-3] INFO p6spy - 2023-08-25 16:55:35 | Time Consuming: 3 ms | Connection: statement-131 | SQL: SELECT 1
  6421. 16:55:35.262 [XNIO-1 task-4] INFO p6spy - 2023-08-25 16:55:35 | Time Consuming: 4 ms | Connection: statement-127 | SQL: SELECT 1
  6422. 16:55:35.264 [XNIO-1 task-2] INFO p6spy - 2023-08-25 16:55:35 | Time Consuming: 4 ms | Connection: statement-132 | SQL: SELECT *
  6423. FROM goaf_syscfg
  6424. WHERE oc_id = 406283
  6425. 16:55:35.268 [XNIO-1 task-5] INFO p6spy - 2023-08-25 16:55:35 | Time Consuming: 3 ms | Connection: statement-133 | SQL: SELECT 1
  6426. 16:55:35.270 [XNIO-1 task-3] INFO p6spy - 2023-08-25 16:55:35 | Time Consuming: 3 ms | Connection: statement-131 | SQL: SELECT count(0) FROM goaf_devinfo WHERE oc_id = 406283
  6427. 16:55:35.271 [XNIO-1 task-4] INFO p6spy - 2023-08-25 16:55:35 | Time Consuming: 4 ms | Connection: statement-127 | SQL: SELECT *
  6428. FROM goaf_baseinfo
  6429. WHERE oc_id = 406283
  6430. 16:55:35.274 [XNIO-1 task-3] INFO p6spy - 2023-08-25 16:55:35 | Time Consuming: 3 ms | Connection: statement-131 | SQL: SELECT *
  6431. FROM goaf_devinfo
  6432. where oc_id = 406283
  6433. LIMIT 10
  6434. 16:55:35.303 [XNIO-1 task-5] INFO p6spy - 2023-08-25 16:55:35 | Time Consuming: 30 ms | Connection: statement-133 | SQL: SELECT count(*)
  6435. FROM msg AS M
  6436. WHERE M.oc_id = 406283
  6437. AND (
  6438. EXISTS (
  6439. SELECT 1 FROM msg_to TT
  6440. WHERE M.oc_id = TT.oc_id AND M.msg_id = TT.msg_id AND TT.msg_to_id = 406283 AND TT.status=0
  6441. ) OR
  6442. EXISTS (
  6443. SELECT 1 FROM msg_cc CC
  6444. WHERE M.oc_id = CC.oc_id AND M.msg_id = CC.msg_id AND CC.msg_cc_id = 406283 AND CC.status=0
  6445. )
  6446. )
  6447. 16:56:50.855 [XNIO-1 task-5] INFO p6spy - 2023-08-25 16:56:50 | Time Consuming: 4 ms | Connection: statement-133 | SQL: SELECT 1
  6448. 16:56:50.864 [XNIO-1 task-5] INFO p6spy - 2023-08-25 16:56:50 | Time Consuming: 5 ms | Connection: statement-133 | SQL: SELECT
  6449. client_id,
  6450. client_title,
  6451. client_app_id,
  6452. client_app_key,
  6453. client_app_secret,
  6454. client_desc,
  6455. status,
  6456. is_fixed
  6457. FROM client
  6458. WHERE deleted_flag = 0
  6459. AND client_app_id = '10001'
  6460. AND client_app_key = '82a8bf439373e305'
  6461. 16:56:50.884 [XNIO-1 task-5] INFO p6spy - 2023-08-25 16:56:50 | Time Consuming: 6 ms | Connection: statement-133 | SQL: SELECT
  6462. A.client_id,
  6463. A.role_id,
  6464. A.permit_id,
  6465. A.permit_title,
  6466. A.permit_code,
  6467. A.permit_entry,
  6468. A.permit_desc,
  6469. A.permit_type,
  6470. A.parent_id,
  6471. A.root_id,
  6472. A.sort_no,
  6473. A.is_home
  6474. FROM s_role_permit AS A
  6475. WHERE 1 = 1
  6476. AND A.client_id = 2
  6477. AND A.role_id = 6
  6478. ORDER BY A.parent_id ASC ,A.sort_no ASC
  6479. 16:56:51.004 [XNIO-1 task-3] INFO p6spy - 2023-08-25 16:56:51 | Time Consuming: 3 ms | Connection: statement-131 | SQL: SELECT 1
  6480. 16:56:51.004 [XNIO-1 task-4] INFO p6spy - 2023-08-25 16:56:51 | Time Consuming: 4 ms | Connection: statement-127 | SQL: SELECT 1
  6481. 16:56:51.005 [XNIO-1 task-2] INFO p6spy - 2023-08-25 16:56:51 | Time Consuming: 4 ms | Connection: statement-132 | SQL: SELECT 1
  6482. 16:56:51.009 [XNIO-1 task-5] INFO p6spy - 2023-08-25 16:56:51 | Time Consuming: 3 ms | Connection: statement-133 | SQL: SELECT count(0) FROM goaf_devinfo WHERE oc_id = 406283
  6483. 16:56:51.014 [XNIO-1 task-3] INFO p6spy - 2023-08-25 16:56:51 | Time Consuming: 4 ms | Connection: statement-131 | SQL: SELECT *
  6484. FROM goaf_syscfg
  6485. WHERE oc_id = 406283
  6486. 16:56:51.014 [XNIO-1 task-5] INFO p6spy - 2023-08-25 16:56:51 | Time Consuming: 4 ms | Connection: statement-133 | SQL: SELECT *
  6487. FROM goaf_devinfo
  6488. where oc_id = 406283
  6489. LIMIT 10
  6490. 16:56:51.016 [XNIO-1 task-2] INFO p6spy - 2023-08-25 16:56:51 | Time Consuming: 5 ms | Connection: statement-132 | SQL: SELECT *
  6491. FROM goaf_baseinfo
  6492. WHERE oc_id = 406283
  6493. 16:56:51.043 [XNIO-1 task-4] INFO p6spy - 2023-08-25 16:56:51 | Time Consuming: 32 ms | Connection: statement-127 | SQL: SELECT count(*)
  6494. FROM msg AS M
  6495. WHERE M.oc_id = 406283
  6496. AND (
  6497. EXISTS (
  6498. SELECT 1 FROM msg_to TT
  6499. WHERE M.oc_id = TT.oc_id AND M.msg_id = TT.msg_id AND TT.msg_to_id = 406283 AND TT.status=0
  6500. ) OR
  6501. EXISTS (
  6502. SELECT 1 FROM msg_cc CC
  6503. WHERE M.oc_id = CC.oc_id AND M.msg_id = CC.msg_id AND CC.msg_cc_id = 406283 AND CC.status=0
  6504. )
  6505. )
  6506. 20:05:26.916 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  6507. 20:05:26.919 [SpringApplicationShutdownHook] INFO io.undertow - stopping server: Undertow - 2.3.4.Final
  6508. 20:05:26.923 [SpringApplicationShutdownHook] INFO io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
  6509. 20:05:26.926 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - Removing {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  6510. 20:05:26.926 [SpringApplicationShutdownHook] INFO o.s.i.c.PublishSubscribeChannel - Channel 'xps-server.errorChannel' has 0 subscriber(s).
  6511. 20:05:26.927 [SpringApplicationShutdownHook] INFO o.s.i.endpoint.EventDrivenConsumer - stopped bean '_org.springframework.integration.errorLogger'
  6512. 20:05:26.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)
  6513. 20:05:26.934 [SpringApplicationShutdownHook] INFO o.s.s.quartz.SchedulerFactoryBean - Shutting down Quartz Scheduler
  6514. 20:05:26.934 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
  6515. 20:05:26.934 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  6516. 20:05:26.934 [SpringApplicationShutdownHook] INFO org.quartz.core.QuartzScheduler - Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
  6517. 20:05:26.948 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown initiated...
  6518. 20:05:26.951 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - DatebookHikariCP - Shutdown completed.