api.log 348 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813
  1. nohup: ignoring input
  2. INFO: Started server process [29226]
  3. INFO: Waiting for application startup.
  4. INFO: Application startup complete.
  5. INFO: Uvicorn running on http://0.0.0.0:8888 (Press CTRL+C to quit)
  6. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  7. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  8. INFO: 192.168.50.235:59808 - "POST /analysis/time HTTP/1.1" 200 OK
  9. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  10. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  11. INFO: 192.168.50.235:44620 - "POST /analysis/time HTTP/1.1" 200 OK
  12. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  13. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  14. INFO: 192.168.50.201:16135 - "POST /analysis/time HTTP/1.1" 200 OK
  15. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  16. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  17. INFO: 192.168.50.201:15766 - "POST /analysis/time HTTP/1.1" 200 OK
  18. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  19. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  20. INFO: 192.168.50.201:17367 - "POST /analysis/time HTTP/1.1" 200 OK
  21. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  22. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  23. INFO: 192.168.50.201:57496 - "POST /analysis/frequency HTTP/1.1" 200 OK
  24. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  25. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  26. INFO: 192.168.50.201:16975 - "POST /analysis/frequency HTTP/1.1" 200 OK
  27. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  28. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  29. INFO: 192.168.50.201:18378 - "POST /analysis/time HTTP/1.1" 200 OK
  30. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  31. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  32. INFO: 192.168.50.201:23286 - "POST /analysis/time HTTP/1.1" 200 OK
  33. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  34. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  35. INFO: 192.168.50.201:22607 - "POST /analysis/time HTTP/1.1" 200 OK
  36. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  37. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  38. INFO: 192.168.50.201:22735 - "POST /analysis/time HTTP/1.1" 200 OK
  39. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  40. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  41. INFO: 192.168.50.201:22991 - "POST /analysis/time HTTP/1.1" 200 OK
  42. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  43. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  44. INFO: 192.168.50.201:22830 - "POST /analysis/time HTTP/1.1" 200 OK
  45. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  46. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  47. INFO: 192.168.50.201:22702 - "POST /analysis/time HTTP/1.1" 200 OK
  48. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  49. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  50. INFO: 192.168.50.201:23135 - "POST /analysis/time HTTP/1.1" 200 OK
  51. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  52. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  53. INFO: 192.168.50.201:24079 - "POST /analysis/time HTTP/1.1" 200 OK
  54. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  55. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  56. INFO: 192.168.50.201:58543 - "POST /analysis/time HTTP/1.1" 200 OK
  57. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  58. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  59. INFO: 192.168.50.201:58547 - "POST /analysis/time HTTP/1.1" 200 OK
  60. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  61. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  62. INFO: 192.168.50.201:24206 - "POST /analysis/time HTTP/1.1" 200 OK
  63. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  64. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  65. INFO: 192.168.50.201:23983 - "POST /analysis/frequency HTTP/1.1" 200 OK
  66. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  67. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  68. INFO: 192.168.50.201:27411 - "POST /analysis/time HTTP/1.1" 200 OK
  69. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  70. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  71. INFO: 192.168.50.201:26986 - "POST /analysis/time HTTP/1.1" 200 OK
  72. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  73. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  74. INFO: 192.168.50.201:28097 - "POST /analysis/time HTTP/1.1" 200 OK
  75. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  76. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  77. INFO: 192.168.50.201:27825 - "POST /analysis/time HTTP/1.1" 200 OK
  78. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  79. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  80. INFO: 192.168.50.201:59162 - "POST /analysis/time HTTP/1.1" 200 OK
  81. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  82. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  83. INFO: 192.168.50.201:27903 - "POST /analysis/time HTTP/1.1" 200 OK
  84. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  85. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  86. INFO: 192.168.50.201:59175 - "POST /analysis/time HTTP/1.1" 200 OK
  87. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  88. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  89. INFO: 192.168.50.201:59180 - "POST /analysis/time HTTP/1.1" 200 OK
  90. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  91. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  92. INFO: 192.168.50.201:59446 - "POST /analysis/time HTTP/1.1" 200 OK
  93. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  94. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  95. INFO: 192.168.50.201:59452 - "POST /analysis/time HTTP/1.1" 200 OK
  96. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  97. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  98. INFO: 192.168.50.201:59625 - "POST /analysis/time HTTP/1.1" 200 OK
  99. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  100. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  101. INFO: 192.168.50.201:30008 - "POST /analysis/time HTTP/1.1" 200 OK
  102. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  103. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  104. INFO: 192.168.50.201:59651 - "POST /analysis/time HTTP/1.1" 200 OK
  105. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  106. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  107. INFO: 192.168.50.201:30052 - "POST /analysis/time HTTP/1.1" 200 OK
  108. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  109. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  110. INFO: 192.168.50.201:59742 - "POST /analysis/time HTTP/1.1" 200 OK
  111. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  112. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  113. INFO: 192.168.50.201:30474 - "POST /analysis/time HTTP/1.1" 200 OK
  114. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  115. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  116. INFO: 192.168.50.201:59828 - "POST /analysis/envelope HTTP/1.1" 200 OK
  117. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  118. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  119. INFO: 192.168.50.201:30426 - "POST /analysis/envelope HTTP/1.1" 200 OK
  120. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  121. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  122. INFO: 192.168.50.201:59842 - "POST /analysis/envelope HTTP/1.1" 200 OK
  123. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  124. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  125. INFO: 192.168.50.201:30075 - "POST /analysis/envelope HTTP/1.1" 200 OK
  126. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  127. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  128. INFO: 192.168.50.201:30586 - "POST /analysis/envelope HTTP/1.1" 200 OK
  129. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  130. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  131. INFO: 192.168.50.201:30587 - "POST /analysis/envelope HTTP/1.1" 200 OK
  132. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  133. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  134. INFO: 192.168.50.201:30459 - "POST /analysis/envelope HTTP/1.1" 200 OK
  135. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  136. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  137. INFO: 192.168.50.201:59863 - "POST /analysis/envelope HTTP/1.1" 200 OK
  138. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  139. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  140. INFO: 192.168.50.201:29702 - "POST /analysis/envelope HTTP/1.1" 200 OK
  141. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  142. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  143. INFO: 192.168.50.201:29830 - "POST /analysis/envelope HTTP/1.1" 200 OK
  144. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  145. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  146. INFO: 192.168.50.201:30086 - "POST /analysis/envelope HTTP/1.1" 200 OK
  147. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  148. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  149. INFO: 192.168.50.201:59877 - "POST /analysis/envelope HTTP/1.1" 200 OK
  150. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  151. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  152. INFO: 192.168.50.201:30087 - "POST /analysis/envelope HTTP/1.1" 200 OK
  153. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  154. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  155. INFO: 192.168.50.201:30278 - "POST /analysis/envelope HTTP/1.1" 200 OK
  156. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  157. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  158. INFO: 192.168.50.201:59902 - "POST /analysis/envelope HTTP/1.1" 200 OK
  159. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  160. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  161. INFO: 192.168.50.201:59907 - "POST /analysis/envelope HTTP/1.1" 200 OK
  162. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  163. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  164. INFO: 192.168.50.201:59912 - "POST /analysis/envelope HTTP/1.1" 200 OK
  165. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  166. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  167. INFO: 192.168.50.201:59928 - "POST /analysis/envelope HTTP/1.1" 200 OK
  168. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  169. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  170. INFO: 192.168.50.201:59932 - "POST /analysis/envelope HTTP/1.1" 200 OK
  171. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  172. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  173. INFO: 192.168.50.201:59940 - "POST /analysis/envelope HTTP/1.1" 200 OK
  174. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  175. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  176. INFO: 192.168.50.201:59942 - "POST /analysis/envelope HTTP/1.1" 200 OK
  177. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  178. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  179. INFO: 192.168.50.201:30094 - "POST /analysis/envelope HTTP/1.1" 200 OK
  180. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  181. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  182. INFO: 192.168.50.201:30095 - "POST /analysis/envelope HTTP/1.1" 200 OK
  183. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  184. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  185. INFO: 192.168.50.201:59954 - "POST /analysis/envelope HTTP/1.1" 200 OK
  186. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  187. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  188. INFO: 192.168.50.201:30031 - "POST /analysis/envelope HTTP/1.1" 200 OK
  189. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  190. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  191. INFO: 192.168.50.201:30977 - "POST /analysis/time HTTP/1.1" 200 OK
  192. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  193. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  194. INFO: 192.168.50.201:31360 - "POST /analysis/frequency HTTP/1.1" 200 OK
  195. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  196. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  197. INFO: 192.168.50.201:59986 - "POST /analysis/envelope HTTP/1.1" 200 OK
  198. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  199. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  200. INFO: 192.168.50.201:59990 - "POST /analysis/envelope HTTP/1.1" 200 OK
  201. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  202. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  203. INFO: 192.168.50.201:30753 - "POST /analysis/frequency HTTP/1.1" 200 OK
  204. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  205. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  206. INFO: 192.168.50.201:31009 - "POST /analysis/time HTTP/1.1" 200 OK
  207. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  208. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  209. INFO: 192.168.50.201:59998 - "POST /analysis/frequency HTTP/1.1" 200 OK
  210. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  211. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  212. INFO: 192.168.50.201:60002 - "POST /analysis/frequency HTTP/1.1" 200 OK
  213. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  214. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  215. INFO: 192.168.50.201:31917 - "POST /analysis/time HTTP/1.1" 200 OK
  216. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  217. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  218. INFO: 192.168.50.201:60404 - "POST /analysis/time HTTP/1.1" 200 OK
  219. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  220. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  221. INFO: 192.168.50.201:60462 - "POST /analysis/time HTTP/1.1" 200 OK
  222. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  223. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  224. INFO: 192.168.50.201:32530 - "POST /analysis/time HTTP/1.1" 200 OK
  225. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  226. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  227. INFO: 192.168.50.201:60517 - "POST /analysis/time HTTP/1.1" 200 OK
  228. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  229. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  230. INFO: 192.168.50.201:60531 - "POST /analysis/time HTTP/1.1" 200 OK
  231. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  232. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  233. INFO: 192.168.50.201:32526 - "POST /analysis/time HTTP/1.1" 200 OK
  234. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  235. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  236. INFO: 192.168.50.201:60588 - "POST /analysis/time HTTP/1.1" 200 OK
  237. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  238. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  239. INFO: 192.168.50.201:32591 - "POST /analysis/time HTTP/1.1" 200 OK
  240. INFO: 192.168.50.201:60728 - "POST /analysis/time HTTP/1.1" 422 Unprocessable Entity
  241. INFO: 192.168.50.201:33623 - "POST /analysis/time HTTP/1.1" 422 Unprocessable Entity
  242. INFO: 192.168.50.201:32982 - "POST /analysis/time HTTP/1.1" 422 Unprocessable Entity
  243. INFO: 192.168.50.201:60807 - "POST /analysis/time HTTP/1.1" 422 Unprocessable Entity
  244. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  245. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  246. INFO: 192.168.50.201:33782 - "POST /analysis/time HTTP/1.1" 200 OK
  247. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  248. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  249. INFO: 192.168.50.201:60826 - "POST /analysis/time HTTP/1.1" 200 OK
  250. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  251. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  252. INFO: 192.168.50.201:33647 - "POST /analysis/time HTTP/1.1" 200 OK
  253. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  254. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  255. INFO: 192.168.50.201:60948 - "POST /analysis/time HTTP/1.1" 200 OK
  256. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  257. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  258. INFO: 192.168.50.201:33519 - "POST /analysis/time HTTP/1.1" 200 OK
  259. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  260. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  261. INFO: 192.168.50.201:60958 - "POST /analysis/time HTTP/1.1" 200 OK
  262. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  263. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  264. INFO: 192.168.50.201:61023 - "POST /analysis/time HTTP/1.1" 200 OK
  265. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  266. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  267. INFO: 192.168.50.201:61024 - "POST /analysis/time HTTP/1.1" 200 OK
  268. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  269. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  270. INFO: 192.168.50.201:61026 - "POST /analysis/time HTTP/1.1" 200 OK
  271. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  272. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  273. INFO: 192.168.50.201:61032 - "POST /analysis/time HTTP/1.1" 200 OK
  274. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  275. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  276. INFO: 192.168.50.201:61057 - "POST /analysis/time HTTP/1.1" 200 OK
  277. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  278. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  279. INFO: 192.168.50.201:34305 - "POST /analysis/time HTTP/1.1" 200 OK
  280. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  281. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  282. INFO: 192.168.50.201:61067 - "POST /analysis/time HTTP/1.1" 200 OK
  283. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  284. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  285. INFO: 192.168.50.201:61070 - "POST /analysis/time HTTP/1.1" 200 OK
  286. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  287. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  288. INFO: 192.168.50.201:34641 - "POST /analysis/time HTTP/1.1" 200 OK
  289. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  290. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  291. INFO: 192.168.50.201:61152 - "POST /analysis/time HTTP/1.1" 200 OK
  292. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  293. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  294. INFO: 192.168.50.201:61153 - "POST /analysis/time HTTP/1.1" 200 OK
  295. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  296. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  297. INFO: 192.168.50.201:61170 - "POST /analysis/time HTTP/1.1" 200 OK
  298. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  299. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  300. INFO: 192.168.50.201:34513 - "POST /analysis/time HTTP/1.1" 200 OK
  301. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  302. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  303. INFO: 192.168.50.201:61172 - "POST /analysis/time HTTP/1.1" 200 OK
  304. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  305. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  306. INFO: 192.168.50.201:61194 - "POST /analysis/time HTTP/1.1" 200 OK
  307. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  308. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  309. INFO: 192.168.50.201:33840 - "POST /analysis/time HTTP/1.1" 200 OK
  310. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  311. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  312. INFO: 192.168.50.201:61203 - "POST /analysis/time HTTP/1.1" 200 OK
  313. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  314. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  315. INFO: 192.168.50.201:34352 - "POST /analysis/time HTTP/1.1" 200 OK
  316. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  317. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  318. INFO: 192.168.50.201:61211 - "POST /analysis/time HTTP/1.1" 200 OK
  319. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  320. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  321. INFO: 192.168.50.201:61213 - "POST /analysis/time HTTP/1.1" 200 OK
  322. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  323. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  324. INFO: 192.168.50.201:61218 - "POST /analysis/time HTTP/1.1" 200 OK
  325. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  326. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  327. INFO: 192.168.50.201:34481 - "POST /analysis/time HTTP/1.1" 200 OK
  328. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  329. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  330. INFO: 192.168.50.201:61224 - "POST /analysis/time HTTP/1.1" 200 OK
  331. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  332. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  333. INFO: 192.168.50.201:33904 - "POST /analysis/time HTTP/1.1" 200 OK
  334. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  335. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  336. INFO: 192.168.50.201:33905 - "POST /analysis/time HTTP/1.1" 200 OK
  337. INFO: 192.168.50.201:61371 - "POST /analysis/time HTTP/1.1" 422 Unprocessable Entity
  338. INFO: 192.168.50.201:61374 - "POST /analysis/time HTTP/1.1" 422 Unprocessable Entity
  339. INFO: 192.168.50.201:34537 - "POST /analysis/time HTTP/1.1" 422 Unprocessable Entity
  340. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  341. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  342. INFO: 192.168.50.201:61407 - "POST /analysis/time HTTP/1.1" 200 OK
  343. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  344. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  345. INFO: 192.168.50.201:34280 - "POST /analysis/time HTTP/1.1" 200 OK
  346. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  347. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  348. INFO: 192.168.50.201:61412 - "POST /analysis/time HTTP/1.1" 200 OK
  349. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  350. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  351. INFO: 192.168.50.201:61422 - "POST /analysis/time HTTP/1.1" 200 OK
  352. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  353. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  354. INFO: 192.168.50.201:34328 - "POST /analysis/time HTTP/1.1" 200 OK
  355. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  356. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  357. INFO: 192.168.50.201:34329 - "POST /analysis/time HTTP/1.1" 200 OK
  358. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  359. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  360. INFO: 192.168.50.201:61437 - "POST /analysis/time HTTP/1.1" 200 OK
  361. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  362. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  363. INFO: 192.168.50.201:61442 - "POST /analysis/time HTTP/1.1" 200 OK
  364. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  365. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  366. INFO: 192.168.50.201:61446 - "POST /analysis/time HTTP/1.1" 200 OK
  367. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  368. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  369. INFO: 192.168.50.201:61462 - "POST /analysis/time HTTP/1.1" 200 OK
  370. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  371. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  372. INFO: 192.168.50.201:34457 - "POST /analysis/time HTTP/1.1" 200 OK
  373. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  374. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  375. INFO: 192.168.50.201:61551 - "POST /analysis/time HTTP/1.1" 200 OK
  376. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  377. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  378. INFO: 192.168.50.201:61553 - "POST /analysis/time HTTP/1.1" 200 OK
  379. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  380. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  381. INFO: 192.168.50.201:61577 - "POST /analysis/time HTTP/1.1" 200 OK
  382. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  383. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  384. INFO: 192.168.50.201:61591 - "POST /analysis/time HTTP/1.1" 200 OK
  385. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  386. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  387. INFO: 192.168.50.201:34565 - "POST /analysis/time HTTP/1.1" 200 OK
  388. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  389. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  390. INFO: 192.168.50.201:33925 - "POST /analysis/time HTTP/1.1" 200 OK
  391. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  392. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  393. INFO: 192.168.50.201:61669 - "POST /analysis/time HTTP/1.1" 200 OK
  394. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  395. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  396. INFO: 192.168.50.201:61670 - "POST /analysis/time HTTP/1.1" 200 OK
  397. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  398. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  399. INFO: 192.168.50.201:61674 - "POST /analysis/time HTTP/1.1" 200 OK
  400. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  401. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  402. INFO: 192.168.50.201:61691 - "POST /analysis/time HTTP/1.1" 200 OK
  403. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  404. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  405. INFO: 192.168.50.201:34084 - "POST /analysis/time HTTP/1.1" 200 OK
  406. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  407. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  408. INFO: 192.168.50.201:61717 - "POST /analysis/time HTTP/1.1" 200 OK
  409. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  410. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  411. INFO: 192.168.50.201:34149 - "POST /analysis/time HTTP/1.1" 200 OK
  412. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  413. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  414. INFO: 192.168.50.201:61740 - "POST /analysis/time HTTP/1.1" 200 OK
  415. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  416. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  417. INFO: 192.168.50.201:61741 - "POST /analysis/time HTTP/1.1" 200 OK
  418. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  419. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  420. INFO: 192.168.50.201:34660 - "POST /analysis/time HTTP/1.1" 200 OK
  421. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  422. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  423. INFO: 192.168.50.201:61774 - "POST /analysis/time HTTP/1.1" 200 OK
  424. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  425. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  426. INFO: 192.168.50.201:61778 - "POST /analysis/time HTTP/1.1" 200 OK
  427. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  428. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  429. INFO: 192.168.50.201:61783 - "POST /analysis/time HTTP/1.1" 200 OK
  430. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  431. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  432. INFO: 192.168.50.201:61785 - "POST /analysis/time HTTP/1.1" 200 OK
  433. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  434. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  435. INFO: 192.168.50.201:34069 - "POST /analysis/time HTTP/1.1" 200 OK
  436. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  437. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  438. INFO: 192.168.50.201:61792 - "POST /analysis/time HTTP/1.1" 200 OK
  439. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  440. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  441. INFO: 192.168.50.201:61796 - "POST /analysis/time HTTP/1.1" 200 OK
  442. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  443. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  444. INFO: 192.168.50.201:61799 - "POST /analysis/time HTTP/1.1" 200 OK
  445. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  446. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  447. INFO: 192.168.50.201:61802 - "POST /analysis/time HTTP/1.1" 200 OK
  448. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  449. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  450. INFO: 192.168.50.201:61808 - "POST /analysis/time HTTP/1.1" 200 OK
  451. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  452. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  453. INFO: 192.168.50.201:61858 - "POST /analysis/time HTTP/1.1" 200 OK
  454. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  455. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  456. INFO: 192.168.50.201:33983 - "POST /analysis/time HTTP/1.1" 200 OK
  457. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  458. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  459. INFO: 192.168.50.201:62037 - "POST /analysis/time HTTP/1.1" 200 OK
  460. INFO: 192.168.50.201:62719 - "POST /analysis/time HTTP/1.1" 200 OK
  461. INFO: 192.168.50.201:36799 - "POST /analysis/time HTTP/1.1" 200 OK
  462. INFO: 192.168.50.201:36350 - "POST /analysis/time HTTP/1.1" 200 OK
  463. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  464. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  465. INFO: 192.168.50.201:37136 - "POST /analysis/time HTTP/1.1" 200 OK
  466. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  467. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  468. INFO: 192.168.50.201:62769 - "POST /analysis/time HTTP/1.1" 200 OK
  469. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  470. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  471. INFO: 192.168.50.201:62822 - "POST /analysis/time HTTP/1.1" 200 OK
  472. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  473. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  474. INFO: 192.168.50.201:62829 - "POST /analysis/time HTTP/1.1" 200 OK
  475. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  476. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  477. INFO: 192.168.50.201:37705 - "POST /analysis/time HTTP/1.1" 200 OK
  478. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  479. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  480. INFO: 192.168.50.201:62838 - "POST /analysis/time HTTP/1.1" 200 OK
  481. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  482. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  483. INFO: 192.168.50.201:62842 - "POST /analysis/time HTTP/1.1" 200 OK
  484. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  485. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  486. INFO: 192.168.50.201:37365 - "POST /analysis/time HTTP/1.1" 200 OK
  487. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  488. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  489. INFO: 192.168.50.201:37388 - "POST /analysis/time HTTP/1.1" 200 OK
  490. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  491. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  492. INFO: 192.168.50.201:62924 - "POST /analysis/time HTTP/1.1" 200 OK
  493. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  494. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  495. INFO: 192.168.50.201:37357 - "POST /analysis/time HTTP/1.1" 200 OK
  496. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  497. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  498. INFO: 192.168.50.201:62948 - "POST /analysis/time HTTP/1.1" 200 OK
  499. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  500. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  501. INFO: 192.168.50.201:62949 - "POST /analysis/time HTTP/1.1" 200 OK
  502. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  503. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  504. INFO: 192.168.50.201:62956 - "POST /analysis/time HTTP/1.1" 200 OK
  505. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  506. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  507. INFO: 192.168.50.201:37276 - "POST /analysis/time HTTP/1.1" 200 OK
  508. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  509. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  510. INFO: 192.168.50.201:37500 - "POST /analysis/time HTTP/1.1" 200 OK
  511. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  512. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  513. INFO: 192.168.50.201:62995 - "POST /analysis/time HTTP/1.1" 200 OK
  514. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  515. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  516. INFO: 192.168.50.201:63000 - "POST /analysis/time HTTP/1.1" 200 OK
  517. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  518. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  519. INFO: 192.168.50.201:63009 - "POST /analysis/time HTTP/1.1" 200 OK
  520. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  521. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  522. INFO: 192.168.50.201:63042 - "POST /analysis/time HTTP/1.1" 200 OK
  523. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  524. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  525. INFO: 192.168.50.201:36967 - "POST /analysis/time HTTP/1.1" 200 OK
  526. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  527. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  528. INFO: 192.168.50.201:37014 - "POST /analysis/time HTTP/1.1" 200 OK
  529. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  530. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  531. INFO: 192.168.50.201:63053 - "POST /analysis/time HTTP/1.1" 200 OK
  532. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  533. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  534. INFO: 192.168.50.201:63089 - "POST /analysis/time HTTP/1.1" 200 OK
  535. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  536. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  537. INFO: 192.168.50.201:63090 - "POST /analysis/time HTTP/1.1" 200 OK
  538. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  539. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  540. INFO: 192.168.50.201:37888 - "POST /analysis/time HTTP/1.1" 200 OK
  541. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  542. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  543. INFO: 192.168.50.201:38409 - "POST /analysis/time HTTP/1.1" 200 OK
  544. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  545. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  546. INFO: 192.168.50.201:63127 - "POST /analysis/time HTTP/1.1" 200 OK
  547. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  548. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  549. INFO: 192.168.50.201:38793 - "POST /analysis/time HTTP/1.1" 200 OK
  550. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  551. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  552. INFO: 192.168.50.201:63139 - "POST /analysis/time HTTP/1.1" 200 OK
  553. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  554. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  555. INFO: 192.168.50.201:38856 - "POST /analysis/time HTTP/1.1" 200 OK
  556. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  557. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  558. INFO: 192.168.50.201:63147 - "POST /analysis/time HTTP/1.1" 200 OK
  559. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  560. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  561. INFO: 192.168.50.201:37971 - "POST /analysis/time HTTP/1.1" 200 OK
  562. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  563. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  564. INFO: 192.168.50.201:38226 - "POST /analysis/time HTTP/1.1" 200 OK
  565. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  566. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  567. INFO: 192.168.50.201:63226 - "POST /analysis/time HTTP/1.1" 200 OK
  568. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  569. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  570. INFO: 192.168.50.201:63228 - "POST /analysis/time HTTP/1.1" 200 OK
  571. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  572. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  573. INFO: 192.168.50.201:38186 - "POST /analysis/time HTTP/1.1" 200 OK
  574. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  575. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  576. INFO: 192.168.50.201:38470 - "POST /analysis/time HTTP/1.1" 200 OK
  577. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  578. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  579. INFO: 192.168.50.201:38167 - "POST /analysis/time HTTP/1.1" 200 OK
  580. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  581. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  582. INFO: 192.168.50.201:38839 - "POST /analysis/time HTTP/1.1" 200 OK
  583. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  584. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  585. INFO: 192.168.50.201:38646 - "POST /analysis/time HTTP/1.1" 200 OK
  586. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  587. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  588. INFO: 192.168.50.201:38902 - "POST /analysis/time HTTP/1.1" 200 OK
  589. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  590. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  591. INFO: 192.168.50.201:38351 - "POST /analysis/time HTTP/1.1" 200 OK
  592. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  593. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  594. INFO: 192.168.50.201:37934 - "POST /analysis/time HTTP/1.1" 200 OK
  595. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  596. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  597. INFO: 192.168.50.201:63333 - "POST /analysis/time HTTP/1.1" 200 OK
  598. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  599. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  600. INFO: 192.168.50.201:38110 - "POST /analysis/time HTTP/1.1" 200 OK
  601. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  602. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  603. INFO: 192.168.50.201:39152 - "POST /analysis/time HTTP/1.1" 200 OK
  604. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  605. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  606. INFO: 192.168.50.201:63410 - "POST /analysis/time HTTP/1.1" 200 OK
  607. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  608. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  609. INFO: 192.168.50.201:39720 - "POST /analysis/time HTTP/1.1" 200 OK
  610. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  611. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  612. INFO: 192.168.50.201:63436 - "POST /analysis/time HTTP/1.1" 200 OK
  613. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  614. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  615. INFO: 192.168.50.201:39016 - "POST /analysis/time HTTP/1.1" 200 OK
  616. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  617. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  618. INFO: 192.168.50.201:39868 - "POST /analysis/time HTTP/1.1" 200 OK
  619. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  620. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  621. INFO: 192.168.50.201:39420 - "POST /analysis/time HTTP/1.1" 200 OK
  622. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  623. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  624. INFO: 192.168.50.201:63513 - "POST /analysis/time HTTP/1.1" 200 OK
  625. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  626. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  627. INFO: 192.168.50.201:63542 - "POST /analysis/time HTTP/1.1" 200 OK
  628. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  629. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  630. INFO: 192.168.50.201:39882 - "POST /analysis/time HTTP/1.1" 200 OK
  631. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  632. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  633. INFO: 192.168.50.201:39258 - "POST /analysis/time HTTP/1.1" 200 OK
  634. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  635. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  636. INFO: 192.168.50.201:63556 - "POST /analysis/time HTTP/1.1" 200 OK
  637. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  638. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  639. INFO: 192.168.50.201:39226 - "POST /analysis/time HTTP/1.1" 200 OK
  640. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  641. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  642. INFO: 192.168.50.201:63562 - "POST /analysis/time HTTP/1.1" 200 OK
  643. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  644. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  645. INFO: 192.168.50.201:63564 - "POST /analysis/time HTTP/1.1" 200 OK
  646. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  647. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  648. INFO: 192.168.50.201:63571 - "POST /analysis/time HTTP/1.1" 200 OK
  649. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  650. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  651. INFO: 192.168.50.201:40439 - "POST /analysis/time HTTP/1.1" 200 OK
  652. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  653. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  654. INFO: 192.168.50.201:63999 - "POST /analysis/time HTTP/1.1" 200 OK
  655. INFO: 192.168.50.201:64017 - "POST /analysis/spectrum HTTP/1.1" 400 Bad Request
  656. INFO: 192.168.50.201:41801 - "POST /analysis/spectrum HTTP/1.1" 400 Bad Request
  657. INFO: 192.168.50.201:41160 - "POST /analysis/spectrum HTTP/1.1" 400 Bad Request
  658. INFO: 192.168.50.201:41416 - "POST /analysis/spectrum HTTP/1.1" 400 Bad Request
  659. INFO: 192.168.50.201:64028 - "POST /analysis/spectrum HTTP/1.1" 400 Bad Request
  660. INFO: 192.168.50.201:41000 - "POST /analysis/spectrum HTTP/1.1" 400 Bad Request
  661. INFO: 192.168.50.201:64046 - "POST /analysis/spectrum HTTP/1.1" 400 Bad Request
  662. INFO: 192.168.50.201:64047 - "POST /analysis/spectrum HTTP/1.1" 400 Bad Request
  663. INFO: 192.168.50.201:41832 - "POST /analysis/spectrum HTTP/1.1" 400 Bad Request
  664. INFO: 192.168.50.201:41833 - "POST /analysis/spectrum HTTP/1.1" 400 Bad Request
  665. INFO: 192.168.50.201:41193 - "POST /analysis/spectrum HTTP/1.1" 400 Bad Request
  666. INFO: 192.168.50.201:64057 - "POST /analysis/spectrum HTTP/1.1" 400 Bad Request
  667. INFO: 192.168.50.201:64081 - "POST /analysis/spectrum HTTP/1.1" 400 Bad Request
  668. INFO: 192.168.50.201:64082 - "POST /analysis/spectrum HTTP/1.1" 400 Bad Request
  669. INFO: 192.168.50.201:64083 - "POST /analysis/spectrum HTTP/1.1" 400 Bad Request
  670. INFO: 192.168.50.201:64084 - "POST /analysis/spectrum HTTP/1.1" 400 Bad Request
  671. INFO: 192.168.50.201:64088 - "POST /analysis/spectrum HTTP/1.1" 400 Bad Request
  672. INFO: 192.168.50.201:41156 - "POST /analysis/spectrum HTTP/1.1" 400 Bad Request
  673. INFO: 192.168.50.201:64107 - "POST /analysis/spectrum HTTP/1.1" 400 Bad Request
  674. INFO: 192.168.50.201:41061 - "POST /analysis/spectrum HTTP/1.1" 400 Bad Request
  675. INFO: 192.168.50.201:64150 - "POST /analysis/spectrum HTTP/1.1" 400 Bad Request
  676. INFO: 192.168.50.201:64156 - "POST /analysis/spectrum HTTP/1.1" 400 Bad Request
  677. INFO: 192.168.50.201:64167 - "POST /analysis/spectrum HTTP/1.1" 400 Bad Request
  678. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  679. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  680. INFO: 192.168.50.201:64182 - "POST /analysis/time HTTP/1.1" 200 OK
  681. INFO: 192.168.50.201:41612 - "POST /analysis/spectrum HTTP/1.1" 422 Unprocessable Entity
  682. INFO: 192.168.50.201:64203 - "POST /analysis/spectrum HTTP/1.1" 422 Unprocessable Entity
  683. INFO: 192.168.50.201:41292 - "POST /analysis/spectrum HTTP/1.1" 400 Bad Request
  684. INFO: 192.168.50.201:64217 - "POST /analysis/spectrum HTTP/1.1" 400 Bad Request
  685. INFO: 192.168.50.201:64230 - "POST /analysis/spectrum HTTP/1.1" 400 Bad Request
  686. INFO: 192.168.50.201:64231 - "POST /analysis/spectrum HTTP/1.1" 400 Bad Request
  687. INFO: 192.168.50.201:64251 - "POST /analysis/spectrum HTTP/1.1" 400 Bad Request
  688. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  689. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  690. INFO: 192.168.50.201:64331 - "POST /analysis/frequency HTTP/1.1" 200 OK
  691. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  692. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  693. INFO: 192.168.50.201:64335 - "POST /analysis/time HTTP/1.1" 200 OK
  694. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  695. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  696. INFO: 192.168.50.201:64337 - "POST /analysis/time HTTP/1.1" 200 OK
  697. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  698. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  699. INFO: 192.168.50.201:64343 - "POST /analysis/time HTTP/1.1" 200 OK
  700. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  701. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  702. INFO: 192.168.50.201:64376 - "POST /analysis/frequency HTTP/1.1" 200 OK
  703. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  704. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  705. INFO: 192.168.50.201:64379 - "POST /analysis/time HTTP/1.1" 200 OK
  706. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  707. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  708. INFO: 192.168.50.201:64384 - "POST /analysis/time HTTP/1.1" 200 OK
  709. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  710. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  711. INFO: 192.168.50.201:41778 - "POST /analysis/time HTTP/1.1" 200 OK
  712. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  713. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  714. INFO: 192.168.50.201:64410 - "POST /analysis/frequency HTTP/1.1" 200 OK
  715. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  716. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  717. INFO: 192.168.50.201:64413 - "POST /analysis/time HTTP/1.1" 200 OK
  718. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  719. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  720. INFO: 192.168.50.201:64452 - "POST /analysis/time HTTP/1.1" 200 OK
  721. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  722. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  723. INFO: 192.168.50.201:64453 - "POST /analysis/time HTTP/1.1" 200 OK
  724. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  725. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  726. INFO: 192.168.50.201:64474 - "POST /analysis/frequency HTTP/1.1" 200 OK
  727. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  728. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  729. INFO: 192.168.50.201:64476 - "POST /analysis/frequency HTTP/1.1" 200 OK
  730. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  731. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  732. INFO: 192.168.50.201:64481 - "POST /analysis/frequency HTTP/1.1" 200 OK
  733. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  734. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  735. INFO: 192.168.50.201:64484 - "POST /analysis/frequency HTTP/1.1" 200 OK
  736. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  737. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  738. INFO: 192.168.50.201:64528 - "POST /analysis/frequency HTTP/1.1" 200 OK
  739. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  740. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  741. INFO: 192.168.50.201:41306 - "POST /analysis/frequency HTTP/1.1" 200 OK
  742. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  743. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  744. INFO: 192.168.50.201:41946 - "POST /analysis/frequency HTTP/1.1" 200 OK
  745. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  746. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  747. INFO: 192.168.50.201:41530 - "POST /analysis/frequency HTTP/1.1" 200 OK
  748. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  749. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  750. INFO: 192.168.50.201:64564 - "POST /analysis/frequency HTTP/1.1" 200 OK
  751. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  752. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  753. INFO: 192.168.50.201:64569 - "POST /analysis/frequency HTTP/1.1" 200 OK
  754. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  755. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  756. INFO: 192.168.50.201:64591 - "POST /analysis/frequency HTTP/1.1" 200 OK
  757. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  758. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  759. INFO: 192.168.50.201:64596 - "POST /analysis/frequency HTTP/1.1" 200 OK
  760. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  761. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  762. INFO: 192.168.50.201:41083 - "POST /analysis/frequency HTTP/1.1" 200 OK
  763. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  764. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  765. INFO: 192.168.50.201:41595 - "POST /analysis/frequency HTTP/1.1" 200 OK
  766. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  767. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  768. INFO: 192.168.50.201:64616 - "POST /analysis/frequency HTTP/1.1" 200 OK
  769. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  770. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  771. INFO: 192.168.50.201:41722 - "POST /analysis/frequency HTTP/1.1" 200 OK
  772. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  773. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  774. INFO: 192.168.50.201:64637 - "POST /analysis/frequency HTTP/1.1" 200 OK
  775. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  776. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  777. INFO: 192.168.50.201:64639 - "POST /analysis/frequency HTTP/1.1" 200 OK
  778. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  779. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  780. INFO: 192.168.50.201:64654 - "POST /analysis/frequency HTTP/1.1" 200 OK
  781. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  782. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  783. INFO: 192.168.50.201:64655 - "POST /analysis/frequency HTTP/1.1" 200 OK
  784. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  785. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  786. INFO: 192.168.50.201:41150 - "POST /analysis/frequency HTTP/1.1" 200 OK
  787. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  788. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  789. INFO: 192.168.50.201:64660 - "POST /analysis/frequency HTTP/1.1" 200 OK
  790. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  791. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  792. INFO: 192.168.50.201:64662 - "POST /analysis/time HTTP/1.1" 200 OK
  793. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  794. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  795. INFO: 192.168.50.201:64666 - "POST /analysis/time HTTP/1.1" 200 OK
  796. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  797. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  798. INFO: 192.168.50.201:64668 - "POST /analysis/time HTTP/1.1" 200 OK
  799. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  800. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  801. INFO: 192.168.50.201:41854 - "POST /analysis/time HTTP/1.1" 200 OK
  802. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  803. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  804. INFO: 192.168.50.201:64674 - "POST /analysis/time HTTP/1.1" 200 OK
  805. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  806. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  807. INFO: 192.168.50.201:42752 - "POST /analysis/time HTTP/1.1" 200 OK
  808. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  809. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  810. INFO: 192.168.50.201:42112 - "POST /analysis/time HTTP/1.1" 200 OK
  811. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  812. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  813. INFO: 192.168.50.201:42369 - "POST /analysis/time HTTP/1.1" 200 OK
  814. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  815. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  816. INFO: 192.168.50.201:42032 - "POST /analysis/frequency HTTP/1.1" 200 OK
  817. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  818. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  819. INFO: 192.168.50.201:64690 - "POST /analysis/frequency HTTP/1.1" 200 OK
  820. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  821. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  822. INFO: 192.168.50.201:64765 - "POST /analysis/frequency HTTP/1.1" 200 OK
  823. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  824. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  825. INFO: 192.168.50.201:64776 - "POST /analysis/frequency HTTP/1.1" 200 OK
  826. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  827. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  828. INFO: 192.168.50.201:42245 - "POST /analysis/frequency HTTP/1.1" 200 OK
  829. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  830. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  831. INFO: 192.168.50.201:42884 - "POST /analysis/frequency HTTP/1.1" 200 OK
  832. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  833. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  834. INFO: 192.168.50.201:64933 - "POST /analysis/frequency HTTP/1.1" 200 OK
  835. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  836. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  837. INFO: 192.168.50.201:64938 - "POST /analysis/frequency HTTP/1.1" 200 OK
  838. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  839. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  840. INFO: 192.168.50.201:65224 - "POST /analysis/frequency HTTP/1.1" 200 OK
  841. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  842. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  843. INFO: 192.168.50.201:65227 - "POST /analysis/frequency HTTP/1.1" 200 OK
  844. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  845. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  846. INFO: 192.168.50.201:42547 - "POST /analysis/frequency HTTP/1.1" 200 OK
  847. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  848. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  849. INFO: 192.168.50.201:42290 - "POST /analysis/frequency HTTP/1.1" 200 OK
  850. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  851. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  852. INFO: 192.168.50.201:42954 - "POST /analysis/time HTTP/1.1" 200 OK
  853. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  854. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  855. INFO: 192.168.50.201:65312 - "POST /analysis/time HTTP/1.1" 200 OK
  856. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  857. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  858. INFO: 192.168.50.201:65313 - "POST /analysis/time HTTP/1.1" 200 OK
  859. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  860. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  861. INFO: 192.168.50.201:42154 - "POST /analysis/time HTTP/1.1" 200 OK
  862. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  863. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  864. INFO: 192.168.50.201:65440 - "POST /analysis/time HTTP/1.1" 200 OK
  865. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  866. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  867. INFO: 192.168.50.201:65464 - "POST /analysis/frequency HTTP/1.1" 200 OK
  868. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  869. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  870. INFO: 192.168.50.201:65466 - "POST /analysis/time HTTP/1.1" 200 OK
  871. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  872. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  873. INFO: 192.168.50.201:65468 - "POST /analysis/time HTTP/1.1" 200 OK
  874. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  875. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  876. INFO: 192.168.50.201:65492 - "POST /analysis/frequency HTTP/1.1" 200 OK
  877. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  878. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  879. INFO: 192.168.50.201:65495 - "POST /analysis/time HTTP/1.1" 200 OK
  880. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  881. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  882. INFO: 192.168.50.201:42662 - "POST /analysis/frequency HTTP/1.1" 200 OK
  883. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  884. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  885. INFO: 192.168.50.201:65519 - "POST /analysis/frequency HTTP/1.1" 200 OK
  886. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  887. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  888. INFO: 192.168.50.201:65521 - "POST /analysis/frequency HTTP/1.1" 200 OK
  889. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  890. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  891. INFO: 192.168.50.201:65532 - "POST /analysis/frequency HTTP/1.1" 200 OK
  892. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  893. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  894. INFO: 192.168.50.201:42263 - "POST /analysis/frequency HTTP/1.1" 200 OK
  895. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  896. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  897. INFO: 192.168.50.201:42807 - "POST /analysis/frequency HTTP/1.1" 200 OK
  898. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  899. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  900. INFO: 192.168.50.201:49189 - "POST /analysis/frequency HTTP/1.1" 200 OK
  901. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  902. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  903. INFO: 192.168.50.201:49194 - "POST /analysis/frequency HTTP/1.1" 200 OK
  904. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  905. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  906. INFO: 192.168.50.201:49225 - "POST /analysis/frequency HTTP/1.1" 200 OK
  907. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  908. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  909. INFO: 192.168.50.201:49227 - "POST /analysis/frequency HTTP/1.1" 200 OK
  910. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  911. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  912. INFO: 192.168.50.201:42383 - "POST /analysis/frequency HTTP/1.1" 200 OK
  913. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  914. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  915. INFO: 192.168.50.201:49238 - "POST /analysis/frequency HTTP/1.1" 200 OK
  916. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  917. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  918. INFO: 192.168.50.201:49243 - "POST /analysis/frequency HTTP/1.1" 200 OK
  919. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  920. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  921. INFO: 192.168.50.201:42062 - "POST /analysis/frequency HTTP/1.1" 200 OK
  922. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  923. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  924. INFO: 192.168.50.201:49248 - "POST /analysis/frequency HTTP/1.1" 200 OK
  925. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  926. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  927. INFO: 192.168.50.201:49251 - "POST /analysis/frequency HTTP/1.1" 200 OK
  928. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  929. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  930. INFO: 192.168.50.201:49254 - "POST /analysis/frequency HTTP/1.1" 200 OK
  931. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  932. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  933. INFO: 192.168.50.201:42319 - "POST /analysis/frequency HTTP/1.1" 200 OK
  934. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  935. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  936. INFO: 192.168.50.201:49260 - "POST /analysis/frequency HTTP/1.1" 200 OK
  937. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  938. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  939. INFO: 192.168.50.201:42190 - "POST /analysis/frequency HTTP/1.1" 200 OK
  940. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  941. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  942. INFO: 192.168.50.201:49266 - "POST /analysis/frequency HTTP/1.1" 200 OK
  943. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  944. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  945. INFO: 192.168.50.201:42799 - "POST /analysis/time HTTP/1.1" 200 OK
  946. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  947. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  948. INFO: 192.168.50.201:42670 - "POST /analysis/time HTTP/1.1" 200 OK
  949. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  950. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  951. INFO: 192.168.50.201:49283 - "POST /analysis/time HTTP/1.1" 200 OK
  952. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  953. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  954. INFO: 192.168.50.201:49285 - "POST /analysis/time HTTP/1.1" 200 OK
  955. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  956. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  957. INFO: 192.168.50.201:42926 - "POST /analysis/time HTTP/1.1" 200 OK
  958. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  959. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  960. INFO: 192.168.50.201:49293 - "POST /analysis/time HTTP/1.1" 200 OK
  961. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  962. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  963. INFO: 192.168.50.201:49754 - "POST /analysis/frequency HTTP/1.1" 200 OK
  964. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  965. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  966. INFO: 192.168.50.201:49757 - "POST /analysis/frequency HTTP/1.1" 200 OK
  967. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  968. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  969. INFO: 192.168.50.201:49819 - "POST /analysis/frequency HTTP/1.1" 200 OK
  970. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  971. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  972. INFO: 192.168.50.201:49825 - "POST /analysis/frequency HTTP/1.1" 200 OK
  973. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  974. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  975. INFO: 192.168.50.201:43177 - "POST /analysis/frequency HTTP/1.1" 200 OK
  976. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  977. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  978. INFO: 192.168.50.201:49834 - "POST /analysis/frequency HTTP/1.1" 200 OK
  979. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  980. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  981. INFO: 192.168.50.201:49842 - "POST /analysis/frequency HTTP/1.1" 200 OK
  982. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  983. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  984. INFO: 192.168.50.201:49844 - "POST /analysis/frequency HTTP/1.1" 200 OK
  985. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  986. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  987. INFO: 192.168.50.201:49848 - "POST /analysis/frequency HTTP/1.1" 200 OK
  988. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  989. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  990. INFO: 192.168.50.201:49872 - "POST /analysis/time HTTP/1.1" 200 OK
  991. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  992. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  993. INFO: 192.168.50.201:43524 - "POST /analysis/frequency HTTP/1.1" 200 OK
  994. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  995. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  996. INFO: 192.168.50.201:49879 - "POST /analysis/envelope HTTP/1.1" 200 OK
  997. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  998. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  999. INFO: 192.168.50.201:49883 - "POST /analysis/envelope HTTP/1.1" 200 OK
  1000. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1001. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1002. INFO: 192.168.50.201:49885 - "POST /analysis/envelope HTTP/1.1" 200 OK
  1003. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1004. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1005. INFO: 192.168.50.201:49889 - "POST /analysis/envelope HTTP/1.1" 200 OK
  1006. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1007. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1008. INFO: 192.168.50.201:49891 - "POST /analysis/envelope HTTP/1.1" 200 OK
  1009. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1010. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1011. INFO: 192.168.50.201:43716 - "POST /analysis/envelope HTTP/1.1" 200 OK
  1012. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1013. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1014. INFO: 192.168.50.201:43701 - "POST /analysis/time HTTP/1.1" 200 OK
  1015. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1016. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1017. INFO: 192.168.50.201:43387 - "POST /analysis/time HTTP/1.1" 200 OK
  1018. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1019. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1020. INFO: 192.168.50.201:49946 - "POST /analysis/time HTTP/1.1" 200 OK
  1021. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1022. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1023. INFO: 192.168.50.201:49947 - "POST /analysis/time HTTP/1.1" 200 OK
  1024. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1025. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1026. INFO: 192.168.50.201:49948 - "POST /analysis/time HTTP/1.1" 200 OK
  1027. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1028. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1029. INFO: 192.168.50.201:43898 - "POST /analysis/time HTTP/1.1" 200 OK
  1030. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1031. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1032. INFO: 192.168.50.201:43014 - "POST /analysis/time HTTP/1.1" 200 OK
  1033. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1034. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1035. INFO: 192.168.50.201:43270 - "POST /analysis/time HTTP/1.1" 200 OK
  1036. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1037. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1038. INFO: 192.168.50.201:43142 - "POST /analysis/time HTTP/1.1" 200 OK
  1039. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1040. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1041. INFO: 192.168.50.201:49963 - "POST /analysis/time HTTP/1.1" 200 OK
  1042. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1043. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1044. INFO: 192.168.50.201:43143 - "POST /analysis/time HTTP/1.1" 200 OK
  1045. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1046. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1047. INFO: 192.168.50.201:43398 - "POST /analysis/time HTTP/1.1" 200 OK
  1048. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1049. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1050. INFO: 192.168.50.201:43399 - "POST /analysis/time HTTP/1.1" 200 OK
  1051. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1052. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1053. INFO: 192.168.50.201:43078 - "POST /analysis/time HTTP/1.1" 200 OK
  1054. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1055. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1056. INFO: 192.168.50.201:43335 - "POST /analysis/time HTTP/1.1" 200 OK
  1057. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1058. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1059. INFO: 192.168.50.201:43206 - "POST /analysis/time HTTP/1.1" 200 OK
  1060. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1061. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1062. INFO: 192.168.50.201:43046 - "POST /analysis/time HTTP/1.1" 200 OK
  1063. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1064. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1065. INFO: 192.168.50.201:49987 - "POST /analysis/time HTTP/1.1" 200 OK
  1066. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1067. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1068. INFO: 192.168.50.201:49991 - "POST /analysis/time HTTP/1.1" 200 OK
  1069. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1070. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1071. INFO: 192.168.50.201:49993 - "POST /analysis/time HTTP/1.1" 200 OK
  1072. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1073. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1074. INFO: 192.168.50.201:49996 - "POST /analysis/time HTTP/1.1" 200 OK
  1075. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1076. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1077. INFO: 192.168.50.201:49998 - "POST /analysis/time HTTP/1.1" 200 OK
  1078. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1079. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1080. INFO: 192.168.50.201:43047 - "POST /analysis/time HTTP/1.1" 200 OK
  1081. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1082. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1083. INFO: 192.168.50.201:43302 - "POST /analysis/time HTTP/1.1" 200 OK
  1084. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1085. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1086. INFO: 192.168.50.201:43430 - "POST /analysis/time HTTP/1.1" 200 OK
  1087. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1088. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1089. INFO: 192.168.50.201:43622 - "POST /analysis/time HTTP/1.1" 200 OK
  1090. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1091. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1092. INFO: 192.168.50.201:50157 - "POST /analysis/time HTTP/1.1" 200 OK
  1093. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1094. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1095. INFO: 192.168.50.201:50161 - "POST /analysis/time HTTP/1.1" 200 OK
  1096. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1097. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1098. INFO: 192.168.50.201:46333 - "POST /analysis/time HTTP/1.1" 200 OK
  1099. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1100. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1101. INFO: 192.168.50.201:50165 - "POST /analysis/time HTTP/1.1" 200 OK
  1102. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1103. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1104. INFO: 192.168.50.201:50176 - "POST /analysis/time HTTP/1.1" 200 OK
  1105. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1106. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1107. INFO: 192.168.50.201:50177 - "POST /analysis/time HTTP/1.1" 200 OK
  1108. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1109. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1110. INFO: 192.168.50.201:50178 - "POST /analysis/time HTTP/1.1" 200 OK
  1111. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1112. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1113. INFO: 192.168.50.201:50180 - "POST /analysis/time HTTP/1.1" 200 OK
  1114. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1115. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1116. INFO: 192.168.50.201:50184 - "POST /analysis/time HTTP/1.1" 200 OK
  1117. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1118. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1119. INFO: 192.168.50.201:50186 - "POST /analysis/time HTTP/1.1" 200 OK
  1120. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1121. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1122. INFO: 192.168.50.201:50190 - "POST /analysis/time HTTP/1.1" 200 OK
  1123. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1124. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1125. INFO: 192.168.50.201:50192 - "POST /analysis/time HTTP/1.1" 200 OK
  1126. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1127. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1128. INFO: 192.168.50.201:50196 - "POST /analysis/time HTTP/1.1" 200 OK
  1129. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1130. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1131. INFO: 192.168.50.201:46459 - "POST /analysis/frequency HTTP/1.1" 200 OK
  1132. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1133. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1134. INFO: 192.168.50.201:50257 - "POST /analysis/frequency HTTP/1.1" 200 OK
  1135. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1136. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1137. INFO: 192.168.50.201:47447 - "POST /analysis/frequency HTTP/1.1" 200 OK
  1138. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1139. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1140. INFO: 192.168.50.201:47158 - "POST /analysis/frequency HTTP/1.1" 200 OK
  1141. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1142. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1143. INFO: 192.168.50.201:47670 - "POST /analysis/frequency HTTP/1.1" 200 OK
  1144. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1145. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1146. INFO: 192.168.50.201:50334 - "POST /analysis/frequency HTTP/1.1" 200 OK
  1147. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1148. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1149. INFO: 192.168.50.201:50337 - "POST /analysis/frequency HTTP/1.1" 200 OK
  1150. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1151. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1152. INFO: 192.168.50.201:50339 - "POST /analysis/frequency HTTP/1.1" 200 OK
  1153. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1154. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1155. INFO: 192.168.50.201:47222 - "POST /analysis/frequency HTTP/1.1" 200 OK
  1156. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1157. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1158. INFO: 192.168.50.201:47630 - "POST /analysis/frequency HTTP/1.1" 200 OK
  1159. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1160. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1161. INFO: 192.168.50.201:50348 - "POST /analysis/frequency HTTP/1.1" 200 OK
  1162. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1163. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1164. INFO: 192.168.50.201:47710 - "POST /analysis/frequency HTTP/1.1" 200 OK
  1165. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1166. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1167. INFO: 192.168.50.201:51445 - "POST /analysis/frequency HTTP/1.1" 200 OK
  1168. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1169. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1170. INFO: 192.168.50.201:50676 - "POST /analysis/frequency HTTP/1.1" 200 OK
  1171. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1172. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1173. INFO: 192.168.50.201:53460 - "POST /analysis/frequency HTTP/1.1" 200 OK
  1174. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1175. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1176. INFO: 192.168.50.201:53918 - "POST /analysis/frequency HTTP/1.1" 200 OK
  1177. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1178. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1179. INFO: 192.168.50.201:54306 - "POST /analysis/frequency HTTP/1.1" 200 OK
  1180. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1181. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1182. INFO: 192.168.50.201:54934 - "POST /analysis/time HTTP/1.1" 200 OK
  1183. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1184. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1185. INFO: 192.168.50.201:54647 - "POST /analysis/time HTTP/1.1" 200 OK
  1186. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1187. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1188. INFO: 192.168.50.201:51137 - "POST /analysis/time HTTP/1.1" 200 OK
  1189. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1190. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1191. INFO: 192.168.50.201:51141 - "POST /analysis/time HTTP/1.1" 200 OK
  1192. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1193. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1194. INFO: 192.168.50.201:51144 - "POST /analysis/time HTTP/1.1" 200 OK
  1195. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1196. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1197. INFO: 192.168.50.201:55481 - "POST /analysis/time HTTP/1.1" 200 OK
  1198. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1199. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1200. INFO: 192.168.50.201:51205 - "POST /analysis/frequency HTTP/1.1" 200 OK
  1201. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1202. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1203. INFO: 192.168.50.201:51210 - "POST /analysis/frequency HTTP/1.1" 200 OK
  1204. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1205. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1206. INFO: 192.168.50.201:55908 - "POST /analysis/frequency HTTP/1.1" 200 OK
  1207. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1208. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1209. INFO: 192.168.50.201:55316 - "POST /analysis/frequency HTTP/1.1" 200 OK
  1210. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1211. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1212. INFO: 192.168.50.201:51218 - "POST /analysis/time HTTP/1.1" 200 OK
  1213. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1214. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1215. INFO: 192.168.50.201:51222 - "POST /analysis/time HTTP/1.1" 200 OK
  1216. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1217. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1218. INFO: 192.168.50.201:55700 - "POST /analysis/time HTTP/1.1" 200 OK
  1219. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1220. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1221. INFO: 192.168.50.201:55381 - "POST /analysis/time HTTP/1.1" 200 OK
  1222. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1223. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1224. INFO: 192.168.50.201:55348 - "POST /analysis/time HTTP/1.1" 200 OK
  1225. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1226. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1227. INFO: 192.168.50.201:51246 - "POST /analysis/envelope HTTP/1.1" 200 OK
  1228. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1229. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1230. INFO: 192.168.50.201:51276 - "POST /analysis/frequency HTTP/1.1" 200 OK
  1231. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1232. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1233. INFO: 192.168.50.201:55467 - "POST /analysis/frequency HTTP/1.1" 200 OK
  1234. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1235. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1236. INFO: 192.168.50.201:51284 - "POST /analysis/frequency HTTP/1.1" 200 OK
  1237. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1238. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1239. INFO: 192.168.50.201:56171 - "POST /analysis/frequency HTTP/1.1" 200 OK
  1240. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1241. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1242. INFO: 192.168.50.201:51325 - "POST /analysis/envelope HTTP/1.1" 200 OK
  1243. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1244. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1245. INFO: 192.168.50.201:55606 - "POST /analysis/envelope HTTP/1.1" 200 OK
  1246. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1247. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1248. INFO: 192.168.50.201:55926 - "POST /analysis/envelope HTTP/1.1" 200 OK
  1249. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1250. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1251. /data/source_code/CMS/cms_class_20241201.py:321: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1252. fs=int(data['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1253. 2024-07-01 00:00:14
  1254. 2024-07-01 00:00:27
  1255. 2024-07-01 02:00:12
  1256. 2024-07-01 02:00:24
  1257. 2024-07-01 07:14:15
  1258. 2024-07-01 07:14:28
  1259. 2024-07-01 08:01:29
  1260. 2024-07-01 08:03:27
  1261. 2024-07-01 10:48:04
  1262. 2024-07-01 10:48:16
  1263. 2024-07-01 12:00:24
  1264. 2024-07-01 12:01:40
  1265. 2024-07-01 14:00:04
  1266. 2024-07-01 14:01:06
  1267. 2024-07-01 14:59:38
  1268. 2024-07-01 15:31:49
  1269. 2024-07-01 16:02:33
  1270. 2024-07-01 16:05:14
  1271. 2024-07-01 18:47:32
  1272. 2024-07-01 18:47:45
  1273. 2024-07-01 20:00:10
  1274. 2024-07-01 20:01:11
  1275. 2024-07-01 22:03:33
  1276. 2024-07-01 22:04:59
  1277. INFO: 192.168.50.201:55374 - "POST /analysis/trend HTTP/1.1" 200 OK
  1278. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1279. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1280. INFO: 192.168.50.201:51412 - "POST /analysis/time HTTP/1.1" 200 OK
  1281. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1282. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1283. INFO: 192.168.50.201:56794 - "POST /analysis/time HTTP/1.1" 200 OK
  1284. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1285. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1286. INFO: 192.168.50.201:57836 - "POST /analysis/time HTTP/1.1" 200 OK
  1287. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1288. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1289. INFO: 192.168.50.201:51496 - "POST /analysis/time HTTP/1.1" 200 OK
  1290. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1291. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1292. /data/source_code/CMS/cms_class_20241201.py:321: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1293. fs=int(data['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1294. 2024-07-01 00:00:14
  1295. 2024-07-01 00:00:27
  1296. 2024-07-01 02:00:12
  1297. 2024-07-01 02:00:24
  1298. 2024-07-01 07:14:15
  1299. 2024-07-01 07:14:28
  1300. 2024-07-01 08:01:29
  1301. 2024-07-01 08:03:27
  1302. 2024-07-01 10:48:04
  1303. 2024-07-01 10:48:16
  1304. 2024-07-01 12:00:24
  1305. 2024-07-01 12:01:40
  1306. 2024-07-01 14:00:04
  1307. 2024-07-01 14:01:06
  1308. 2024-07-01 14:59:38
  1309. 2024-07-01 15:31:49
  1310. 2024-07-01 16:02:33
  1311. 2024-07-01 16:05:14
  1312. 2024-07-01 18:47:32
  1313. 2024-07-01 18:47:45
  1314. 2024-07-01 20:00:10
  1315. 2024-07-01 20:01:11
  1316. 2024-07-01 22:03:33
  1317. 2024-07-01 22:04:59
  1318. INFO: 192.168.50.201:51530 - "POST /analysis/trend HTTP/1.1" 200 OK
  1319. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1320. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1321. INFO: 192.168.50.201:60609 - "POST /analysis/time HTTP/1.1" 200 OK
  1322. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1323. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1324. INFO: 192.168.50.201:60704 - "POST /analysis/time HTTP/1.1" 200 OK
  1325. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1326. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1327. INFO: 192.168.50.201:60432 - "POST /analysis/time HTTP/1.1" 200 OK
  1328. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1329. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1330. INFO: 192.168.50.201:61088 - "POST /analysis/time HTTP/1.1" 200 OK
  1331. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1332. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1333. INFO: 192.168.50.201:60832 - "POST /analysis/time HTTP/1.1" 200 OK
  1334. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1335. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1336. INFO: 192.168.50.201:61408 - "POST /analysis/time HTTP/1.1" 200 OK
  1337. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1338. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1339. INFO: 192.168.50.201:60444 - "POST /analysis/time HTTP/1.1" 200 OK
  1340. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1341. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1342. INFO: 192.168.50.201:64241 - "POST /analysis/time HTTP/1.1" 200 OK
  1343. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1344. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1345. INFO: 192.168.50.201:8487 - "POST /analysis/time HTTP/1.1" 200 OK
  1346. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1347. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1348. INFO: 192.168.50.201:64328 - "POST /analysis/time HTTP/1.1" 200 OK
  1349. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1350. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1351. INFO: 192.168.50.201:9532 - "POST /analysis/time HTTP/1.1" 200 OK
  1352. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1353. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1354. INFO: 192.168.50.201:64693 - "POST /analysis/time HTTP/1.1" 200 OK
  1355. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1356. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1357. INFO: 192.168.50.201:54460 - "POST /analysis/time HTTP/1.1" 200 OK
  1358. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1359. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1360. INFO: 111.203.200.206:33475 - "POST /analysis/time HTTP/1.1" 200 OK
  1361. INFO: 111.203.200.206:6210 - "POST /analysis/time HTTP/1.1" 422 Unprocessable Entity
  1362. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1363. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1364. INFO: 111.203.200.206:20087 - "POST /analysis/time HTTP/1.1" 200 OK
  1365. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1366. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1367. INFO: 111.203.200.206:38663 - "POST /analysis/time HTTP/1.1" 200 OK
  1368. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1369. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1370. INFO: 111.203.200.206:43394 - "POST /analysis/time HTTP/1.1" 200 OK
  1371. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1372. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1373. INFO: 111.203.200.206:43435 - "POST /analysis/time HTTP/1.1" 200 OK
  1374. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1375. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1376. INFO: 111.203.200.206:48213 - "POST /analysis/time HTTP/1.1" 200 OK
  1377. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1378. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1379. /data/source_code/CMS/cms_class_20241201.py:321: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1380. fs=int(data['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1381. 2024-07-01 00:00:14
  1382. 2024-07-01 00:00:27
  1383. 2024-07-01 02:00:12
  1384. 2024-07-01 02:00:24
  1385. 2024-07-01 07:14:15
  1386. 2024-07-01 07:14:28
  1387. 2024-07-01 08:01:29
  1388. 2024-07-01 08:03:27
  1389. 2024-07-01 10:48:04
  1390. 2024-07-01 10:48:16
  1391. 2024-07-01 12:00:24
  1392. 2024-07-01 12:01:40
  1393. 2024-07-01 14:00:04
  1394. 2024-07-01 14:01:06
  1395. 2024-07-01 14:59:38
  1396. 2024-07-01 15:31:49
  1397. 2024-07-01 16:02:33
  1398. 2024-07-01 16:05:14
  1399. 2024-07-01 18:47:32
  1400. 2024-07-01 18:47:45
  1401. 2024-07-01 20:00:10
  1402. 2024-07-01 20:01:11
  1403. 2024-07-01 22:03:33
  1404. 2024-07-01 22:04:59
  1405. INFO: 111.203.200.206:28053 - "POST /analysis/trend HTTP/1.1" 200 OK
  1406. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1407. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1408. INFO: 123.112.168.40:59699 - "POST /analysis/time HTTP/1.1" 200 OK
  1409. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1410. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1411. INFO: 123.112.168.40:59714 - "POST /analysis/frequency HTTP/1.1" 200 OK
  1412. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1413. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1414. INFO: 123.112.168.40:59718 - "POST /analysis/frequency HTTP/1.1" 200 OK
  1415. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1416. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1417. INFO: 123.112.168.40:59741 - "POST /analysis/frequency HTTP/1.1" 200 OK
  1418. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1419. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1420. INFO: 123.112.168.40:59757 - "POST /analysis/frequency HTTP/1.1" 200 OK
  1421. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1422. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1423. INFO: 123.112.168.40:59760 - "POST /analysis/time HTTP/1.1" 200 OK
  1424. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1425. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1426. INFO: 123.112.168.40:59764 - "POST /analysis/time HTTP/1.1" 200 OK
  1427. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1428. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1429. INFO: 123.112.168.40:59767 - "POST /analysis/time HTTP/1.1" 200 OK
  1430. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1431. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1432. INFO: 123.112.168.40:59774 - "POST /analysis/time HTTP/1.1" 200 OK
  1433. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1434. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1435. INFO: 123.112.168.40:59788 - "POST /analysis/time HTTP/1.1" 200 OK
  1436. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1437. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1438. INFO: 123.112.168.40:59792 - "POST /analysis/time HTTP/1.1" 200 OK
  1439. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1440. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1441. INFO: 123.112.168.40:59794 - "POST /analysis/time HTTP/1.1" 200 OK
  1442. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1443. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1444. INFO: 123.112.168.40:59830 - "POST /analysis/time HTTP/1.1" 200 OK
  1445. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1446. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1447. INFO: 123.112.168.40:59857 - "POST /analysis/time HTTP/1.1" 200 OK
  1448. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1449. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1450. INFO: 123.112.168.40:59861 - "POST /analysis/time HTTP/1.1" 200 OK
  1451. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1452. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1453. INFO: 123.112.168.40:59864 - "POST /analysis/time HTTP/1.1" 200 OK
  1454. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1455. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1456. INFO: 123.112.168.40:59866 - "POST /analysis/time HTTP/1.1" 200 OK
  1457. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1458. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1459. INFO: 123.112.168.40:59870 - "POST /analysis/frequency HTTP/1.1" 200 OK
  1460. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1461. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1462. INFO: 123.112.168.40:59872 - "POST /analysis/frequency HTTP/1.1" 200 OK
  1463. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1464. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1465. INFO: 123.112.168.40:59876 - "POST /analysis/time HTTP/1.1" 200 OK
  1466. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1467. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1468. INFO: 123.112.168.40:59996 - "POST /analysis/frequency HTTP/1.1" 200 OK
  1469. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1470. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1471. INFO: 123.112.168.40:59999 - "POST /analysis/time HTTP/1.1" 200 OK
  1472. WARNING: Invalid HTTP request received.
  1473. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1474. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1475. INFO: 123.112.168.40:60018 - "POST /analysis/frequency HTTP/1.1" 200 OK
  1476. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1477. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1478. INFO: 123.112.168.40:60020 - "POST /analysis/frequency HTTP/1.1" 200 OK
  1479. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1480. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1481. INFO: 123.112.168.40:60045 - "POST /analysis/frequency HTTP/1.1" 200 OK
  1482. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1483. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1484. INFO: 123.112.168.40:60389 - "POST /analysis/time HTTP/1.1" 200 OK
  1485. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1486. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1487. INFO: 123.112.168.40:60394 - "POST /analysis/time HTTP/1.1" 200 OK
  1488. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1489. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1490. INFO: 123.112.168.40:60400 - "POST /analysis/time HTTP/1.1" 200 OK
  1491. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1492. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1493. /data/source_code/CMS/cms_class_20241201.py:321: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1494. fs=int(data['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1495. 2024-07-01 00:00:14
  1496. 2024-07-01 00:00:27
  1497. 2024-07-01 02:00:12
  1498. 2024-07-01 02:00:24
  1499. 2024-07-01 07:14:15
  1500. 2024-07-01 07:14:28
  1501. 2024-07-01 08:01:29
  1502. 2024-07-01 08:03:27
  1503. 2024-07-01 10:48:04
  1504. 2024-07-01 10:48:16
  1505. 2024-07-01 12:00:24
  1506. 2024-07-01 12:01:40
  1507. 2024-07-01 14:00:04
  1508. 2024-07-01 14:01:06
  1509. 2024-07-01 14:59:38
  1510. 2024-07-01 15:31:49
  1511. 2024-07-01 16:02:33
  1512. 2024-07-01 16:05:14
  1513. 2024-07-01 18:47:32
  1514. 2024-07-01 18:47:45
  1515. 2024-07-01 20:00:10
  1516. 2024-07-01 20:01:11
  1517. 2024-07-01 22:03:33
  1518. 2024-07-01 22:04:59
  1519. INFO: 123.112.168.40:60449 - "POST /analysis/trend HTTP/1.1" 200 OK
  1520. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1521. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1522. INFO: 123.112.168.40:60517 - "POST /analysis/frequency HTTP/1.1" 200 OK
  1523. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1524. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1525. INFO: 123.112.168.40:61093 - "POST /analysis/time HTTP/1.1" 200 OK
  1526. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1527. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1528. INFO: 123.112.168.40:61097 - "POST /analysis/time HTTP/1.1" 200 OK
  1529. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1530. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1531. INFO: 123.112.168.40:61102 - "POST /analysis/time HTTP/1.1" 200 OK
  1532. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1533. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1534. INFO: 123.112.168.40:61181 - "POST /analysis/time HTTP/1.1" 200 OK
  1535. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1536. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1537. INFO: 123.112.168.40:61200 - "POST /analysis/time HTTP/1.1" 200 OK
  1538. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1539. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1540. INFO: 123.112.168.40:61219 - "POST /analysis/time HTTP/1.1" 200 OK
  1541. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1542. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1543. INFO: 123.112.168.40:61285 - "POST /analysis/time HTTP/1.1" 200 OK
  1544. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1545. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1546. INFO: 123.112.168.40:61310 - "POST /analysis/time HTTP/1.1" 200 OK
  1547. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1548. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1549. INFO: 123.112.168.40:61325 - "POST /analysis/time HTTP/1.1" 200 OK
  1550. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1551. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1552. INFO: 123.112.168.40:61348 - "POST /analysis/time HTTP/1.1" 200 OK
  1553. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1554. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1555. /data/source_code/CMS/cms_class_20241201.py:321: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1556. fs=int(data['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1557. 2024-07-01 00:00:14
  1558. 2024-07-01 00:00:27
  1559. 2024-07-01 02:00:12
  1560. 2024-07-01 02:00:24
  1561. 2024-07-01 07:14:15
  1562. 2024-07-01 07:14:28
  1563. 2024-07-01 08:01:29
  1564. 2024-07-01 08:03:27
  1565. 2024-07-01 10:48:04
  1566. 2024-07-01 10:48:16
  1567. 2024-07-01 12:00:24
  1568. 2024-07-01 12:01:40
  1569. 2024-07-01 14:00:04
  1570. 2024-07-01 14:01:06
  1571. 2024-07-01 14:59:38
  1572. 2024-07-01 15:31:49
  1573. 2024-07-01 16:02:33
  1574. 2024-07-01 16:05:14
  1575. 2024-07-01 18:47:32
  1576. 2024-07-01 18:47:45
  1577. 2024-07-01 20:00:10
  1578. 2024-07-01 20:01:11
  1579. 2024-07-01 22:03:33
  1580. 2024-07-01 22:04:59
  1581. INFO: 123.112.168.40:61364 - "POST /analysis/trend HTTP/1.1" 200 OK
  1582. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1583. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1584. /data/source_code/CMS/cms_class_20241201.py:321: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1585. fs=int(data['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1586. 2024-07-01 00:00:14
  1587. 2024-07-01 00:00:27
  1588. 2024-07-01 02:00:12
  1589. 2024-07-01 02:00:24
  1590. 2024-07-01 07:14:15
  1591. 2024-07-01 07:14:28
  1592. 2024-07-01 08:01:29
  1593. 2024-07-01 08:03:27
  1594. 2024-07-01 10:48:04
  1595. 2024-07-01 10:48:16
  1596. 2024-07-01 12:00:24
  1597. 2024-07-01 12:01:40
  1598. 2024-07-01 14:00:04
  1599. 2024-07-01 14:01:06
  1600. 2024-07-01 14:59:38
  1601. 2024-07-01 15:31:49
  1602. 2024-07-01 16:02:33
  1603. 2024-07-01 16:05:14
  1604. 2024-07-01 18:47:32
  1605. 2024-07-01 18:47:45
  1606. 2024-07-01 20:00:10
  1607. 2024-07-01 20:01:11
  1608. 2024-07-01 22:03:33
  1609. 2024-07-01 22:04:59
  1610. INFO: 123.112.168.40:61369 - "POST /analysis/trend HTTP/1.1" 200 OK
  1611. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1612. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1613. INFO: 123.112.168.40:61372 - "POST /analysis/time HTTP/1.1" 200 OK
  1614. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1615. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1616. INFO: 123.112.168.40:61418 - "POST /analysis/frequency HTTP/1.1" 200 OK
  1617. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1618. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1619. INFO: 123.112.168.40:61484 - "POST /analysis/time HTTP/1.1" 200 OK
  1620. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1621. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1622. INFO: 123.112.168.40:61519 - "POST /analysis/time HTTP/1.1" 200 OK
  1623. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1624. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1625. INFO: 123.112.168.40:61545 - "POST /analysis/time HTTP/1.1" 200 OK
  1626. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1627. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1628. INFO: 123.112.168.40:61755 - "POST /analysis/time HTTP/1.1" 200 OK
  1629. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1630. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1631. INFO: 123.112.168.40:61757 - "POST /analysis/time HTTP/1.1" 200 OK
  1632. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1633. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1634. INFO: 123.112.168.40:61851 - "POST /analysis/time HTTP/1.1" 200 OK
  1635. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1636. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1637. INFO: 123.112.168.40:62045 - "POST /analysis/time HTTP/1.1" 200 OK
  1638. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1639. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1640. INFO: 123.112.168.40:62168 - "POST /analysis/time HTTP/1.1" 200 OK
  1641. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1642. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1643. INFO: 123.112.168.40:62204 - "POST /analysis/time HTTP/1.1" 200 OK
  1644. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1645. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1646. INFO: 123.112.168.40:62311 - "POST /analysis/time HTTP/1.1" 200 OK
  1647. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1648. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1649. INFO: 123.112.168.40:62346 - "POST /analysis/time HTTP/1.1" 200 OK
  1650. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1651. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1652. INFO: 123.112.168.40:62590 - "POST /analysis/time HTTP/1.1" 200 OK
  1653. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1654. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1655. INFO: 123.112.168.40:62672 - "POST /analysis/time HTTP/1.1" 200 OK
  1656. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1657. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1658. INFO: 123.112.168.40:62759 - "POST /analysis/time HTTP/1.1" 200 OK
  1659. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1660. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1661. INFO: 123.112.168.40:62984 - "POST /analysis/time HTTP/1.1" 200 OK
  1662. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1663. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1664. INFO: 123.112.168.40:62991 - "POST /analysis/time HTTP/1.1" 200 OK
  1665. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1666. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1667. INFO: 123.112.168.40:62996 - "POST /analysis/time HTTP/1.1" 200 OK
  1668. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1669. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1670. INFO: 123.112.168.40:63020 - "POST /analysis/time HTTP/1.1" 200 OK
  1671. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1672. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1673. INFO: 123.112.168.40:63027 - "POST /analysis/time HTTP/1.1" 200 OK
  1674. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1675. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1676. INFO: 123.112.168.40:63039 - "POST /analysis/time HTTP/1.1" 200 OK
  1677. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1678. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1679. INFO: 123.112.168.40:63047 - "POST /analysis/frequency HTTP/1.1" 200 OK
  1680. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1681. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1682. INFO: 123.112.168.40:63149 - "POST /analysis/time HTTP/1.1" 200 OK
  1683. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1684. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1685. INFO: 123.112.168.40:63154 - "POST /analysis/time HTTP/1.1" 200 OK
  1686. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1687. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1688. INFO: 123.112.168.40:63163 - "POST /analysis/time HTTP/1.1" 200 OK
  1689. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1690. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1691. INFO: 123.112.168.40:63267 - "POST /analysis/time HTTP/1.1" 200 OK
  1692. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1693. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1694. INFO: 123.112.168.40:63272 - "POST /analysis/frequency HTTP/1.1" 200 OK
  1695. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1696. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1697. INFO: 123.112.168.40:63299 - "POST /analysis/frequency HTTP/1.1" 200 OK
  1698. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1699. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1700. INFO: 123.112.168.40:63472 - "POST /analysis/time HTTP/1.1" 200 OK
  1701. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1702. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1703. INFO: 123.112.168.40:63477 - "POST /analysis/frequency HTTP/1.1" 200 OK
  1704. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1705. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1706. /data/source_code/CMS/cms_class_20241201.py:321: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1707. fs=int(data['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1708. 2024-07-01 00:00:14
  1709. 2024-07-01 00:00:27
  1710. 2024-07-01 02:00:12
  1711. 2024-07-01 02:00:24
  1712. 2024-07-01 07:14:15
  1713. 2024-07-01 07:14:28
  1714. 2024-07-01 08:01:29
  1715. 2024-07-01 08:03:27
  1716. 2024-07-01 10:48:04
  1717. 2024-07-01 10:48:16
  1718. 2024-07-01 12:00:24
  1719. 2024-07-01 12:01:40
  1720. 2024-07-01 14:00:04
  1721. 2024-07-01 14:01:06
  1722. 2024-07-01 14:59:38
  1723. 2024-07-01 15:31:49
  1724. 2024-07-01 16:02:33
  1725. 2024-07-01 16:05:14
  1726. 2024-07-01 18:47:32
  1727. 2024-07-01 18:47:45
  1728. 2024-07-01 20:00:10
  1729. 2024-07-01 20:01:11
  1730. 2024-07-01 22:03:33
  1731. 2024-07-01 22:04:59
  1732. INFO: 123.112.168.40:63481 - "POST /analysis/trend HTTP/1.1" 200 OK
  1733. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1734. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1735. INFO: 123.112.168.40:63488 - "POST /analysis/time HTTP/1.1" 200 OK
  1736. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1737. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1738. INFO: 123.112.168.40:63518 - "POST /analysis/time HTTP/1.1" 200 OK
  1739. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1740. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1741. INFO: 123.112.168.40:63517 - "POST /analysis/time HTTP/1.1" 200 OK
  1742. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1743. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1744. INFO: 123.112.168.40:63523 - "POST /analysis/time HTTP/1.1" 200 OK
  1745. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1746. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1747. INFO: 123.112.168.40:63524 - "POST /analysis/time HTTP/1.1" 200 OK
  1748. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1749. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1750. INFO: 123.112.168.40:63540 - "POST /analysis/time HTTP/1.1" 200 OK
  1751. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1752. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1753. INFO: 123.112.168.40:63541 - "POST /analysis/time HTTP/1.1" 200 OK
  1754. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1755. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1756. INFO: 123.112.168.40:63574 - "POST /analysis/frequency HTTP/1.1" 200 OK
  1757. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1758. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1759. INFO: 123.112.168.40:63576 - "POST /analysis/frequency HTTP/1.1" 200 OK
  1760. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1761. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1762. INFO: 123.112.168.40:63774 - "POST /analysis/time HTTP/1.1" 200 OK
  1763. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1764. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1765. INFO: 123.112.168.40:63776 - "POST /analysis/time HTTP/1.1" 200 OK
  1766. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1767. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1768. INFO: 123.112.168.40:63779 - "POST /analysis/time HTTP/1.1" 200 OK
  1769. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1770. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1771. INFO: 123.112.168.40:63787 - "POST /analysis/time HTTP/1.1" 200 OK
  1772. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1773. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1774. INFO: 123.112.168.40:63837 - "POST /analysis/time HTTP/1.1" 200 OK
  1775. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1776. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1777. INFO: 123.112.168.40:63861 - "POST /analysis/time HTTP/1.1" 200 OK
  1778. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1779. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1780. INFO: 123.112.168.40:63865 - "POST /analysis/time HTTP/1.1" 200 OK
  1781. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1782. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1783. INFO: 123.112.168.40:63881 - "POST /analysis/time HTTP/1.1" 200 OK
  1784. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1785. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1786. INFO: 123.112.168.40:63901 - "POST /analysis/time HTTP/1.1" 200 OK
  1787. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1788. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1789. INFO: 123.112.168.40:63919 - "POST /analysis/time HTTP/1.1" 200 OK
  1790. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1791. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1792. INFO: 123.112.168.40:63923 - "POST /analysis/time HTTP/1.1" 200 OK
  1793. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1794. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1795. INFO: 123.112.168.40:63929 - "POST /analysis/time HTTP/1.1" 200 OK
  1796. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1797. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1798. INFO: 123.112.168.40:64008 - "POST /analysis/time HTTP/1.1" 200 OK
  1799. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1800. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1801. INFO: 123.112.168.40:64009 - "POST /analysis/time HTTP/1.1" 200 OK
  1802. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1803. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1804. INFO: 123.112.168.40:64010 - "POST /analysis/time HTTP/1.1" 200 OK
  1805. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1806. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1807. INFO: 123.112.168.40:64116 - "POST /analysis/time HTTP/1.1" 200 OK
  1808. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1809. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1810. INFO: 123.112.168.40:64121 - "POST /analysis/time HTTP/1.1" 200 OK
  1811. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1812. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1813. INFO: 123.112.168.40:64124 - "POST /analysis/time HTTP/1.1" 200 OK
  1814. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1815. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1816. INFO: 123.112.168.40:64129 - "POST /analysis/time HTTP/1.1" 200 OK
  1817. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1818. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1819. INFO: 123.112.168.40:64132 - "POST /analysis/time HTTP/1.1" 200 OK
  1820. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1821. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1822. INFO: 123.112.168.40:64137 - "POST /analysis/time HTTP/1.1" 200 OK
  1823. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1824. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1825. INFO: 123.112.168.40:64140 - "POST /analysis/time HTTP/1.1" 200 OK
  1826. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1827. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1828. INFO: 123.112.168.40:64145 - "POST /analysis/time HTTP/1.1" 200 OK
  1829. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1830. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1831. INFO: 123.112.168.40:64148 - "POST /analysis/time HTTP/1.1" 200 OK
  1832. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1833. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1834. INFO: 123.112.168.40:64153 - "POST /analysis/time HTTP/1.1" 200 OK
  1835. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1836. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1837. INFO: 123.112.168.40:64220 - "POST /analysis/time HTTP/1.1" 200 OK
  1838. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1839. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1840. INFO: 123.112.168.40:64223 - "POST /analysis/time HTTP/1.1" 200 OK
  1841. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1842. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1843. INFO: 123.112.168.40:64231 - "POST /analysis/time HTTP/1.1" 200 OK
  1844. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1845. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1846. INFO: 123.112.168.40:64234 - "POST /analysis/time HTTP/1.1" 200 OK
  1847. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1848. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1849. INFO: 123.112.168.40:64240 - "POST /analysis/time HTTP/1.1" 200 OK
  1850. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1851. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1852. INFO: 123.112.168.40:64243 - "POST /analysis/time HTTP/1.1" 200 OK
  1853. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1854. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1855. INFO: 123.112.168.40:64247 - "POST /analysis/time HTTP/1.1" 200 OK
  1856. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1857. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1858. INFO: 123.112.168.40:64249 - "POST /analysis/time HTTP/1.1" 200 OK
  1859. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1860. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1861. INFO: 123.112.168.40:64254 - "POST /analysis/time HTTP/1.1" 200 OK
  1862. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1863. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1864. INFO: 123.112.168.40:64411 - "POST /analysis/time HTTP/1.1" 200 OK
  1865. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1866. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1867. INFO: 123.112.168.40:64413 - "POST /analysis/time HTTP/1.1" 200 OK
  1868. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1869. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1870. INFO: 123.112.168.40:64415 - "POST /analysis/time HTTP/1.1" 200 OK
  1871. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1872. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1873. INFO: 123.112.168.40:64420 - "POST /analysis/time HTTP/1.1" 200 OK
  1874. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1875. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1876. INFO: 123.112.168.40:64423 - "POST /analysis/time HTTP/1.1" 200 OK
  1877. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1878. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1879. INFO: 123.112.168.40:64429 - "POST /analysis/time HTTP/1.1" 200 OK
  1880. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1881. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1882. INFO: 123.112.168.40:64432 - "POST /analysis/time HTTP/1.1" 200 OK
  1883. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1884. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1885. INFO: 123.112.168.40:64437 - "POST /analysis/time HTTP/1.1" 200 OK
  1886. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1887. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1888. INFO: 123.112.168.40:64440 - "POST /analysis/time HTTP/1.1" 200 OK
  1889. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1890. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1891. INFO: 123.112.168.40:64444 - "POST /analysis/time HTTP/1.1" 200 OK
  1892. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1893. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1894. INFO: 123.112.168.40:64447 - "POST /analysis/time HTTP/1.1" 200 OK
  1895. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1896. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1897. INFO: 123.112.168.40:64454 - "POST /analysis/time HTTP/1.1" 200 OK
  1898. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1899. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1900. INFO: 123.112.168.40:64457 - "POST /analysis/time HTTP/1.1" 200 OK
  1901. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1902. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1903. INFO: 123.112.168.40:64465 - "POST /analysis/time HTTP/1.1" 200 OK
  1904. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1905. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1906. INFO: 123.112.168.40:64498 - "POST /analysis/time HTTP/1.1" 200 OK
  1907. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1908. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1909. INFO: 123.112.168.40:64503 - "POST /analysis/time HTTP/1.1" 200 OK
  1910. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1911. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1912. INFO: 123.112.168.40:64505 - "POST /analysis/time HTTP/1.1" 200 OK
  1913. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1914. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1915. INFO: 123.112.168.40:64512 - "POST /analysis/time HTTP/1.1" 200 OK
  1916. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1917. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1918. INFO: 123.112.168.40:64616 - "POST /analysis/time HTTP/1.1" 200 OK
  1919. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1920. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1921. INFO: 123.112.168.40:64621 - "POST /analysis/time HTTP/1.1" 200 OK
  1922. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1923. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1924. INFO: 123.112.168.40:64623 - "POST /analysis/time HTTP/1.1" 200 OK
  1925. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1926. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1927. INFO: 123.112.168.40:64629 - "POST /analysis/time HTTP/1.1" 200 OK
  1928. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1929. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1930. INFO: 123.112.168.40:64634 - "POST /analysis/time HTTP/1.1" 200 OK
  1931. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1932. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1933. INFO: 123.112.168.40:64643 - "POST /analysis/time HTTP/1.1" 200 OK
  1934. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1935. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1936. INFO: 123.112.168.40:65135 - "POST /analysis/time HTTP/1.1" 200 OK
  1937. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1938. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1939. INFO: 123.112.168.40:65139 - "POST /analysis/time HTTP/1.1" 200 OK
  1940. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1941. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1942. INFO: 123.112.168.40:65148 - "POST /analysis/time HTTP/1.1" 200 OK
  1943. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1944. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1945. INFO: 123.112.168.40:65151 - "POST /analysis/time HTTP/1.1" 200 OK
  1946. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1947. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1948. INFO: 123.112.168.40:65184 - "POST /analysis/time HTTP/1.1" 200 OK
  1949. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1950. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1951. INFO: 123.112.168.40:65186 - "POST /analysis/time HTTP/1.1" 200 OK
  1952. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1953. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1954. INFO: 123.112.168.40:65193 - "POST /analysis/time HTTP/1.1" 200 OK
  1955. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1956. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1957. INFO: 123.112.168.40:65194 - "POST /analysis/time HTTP/1.1" 200 OK
  1958. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1959. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1960. INFO: 123.112.168.40:65195 - "POST /analysis/time HTTP/1.1" 200 OK
  1961. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1962. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1963. INFO: 123.112.168.40:65197 - "POST /analysis/time HTTP/1.1" 200 OK
  1964. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1965. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1966. INFO: 123.112.168.40:65236 - "POST /analysis/time HTTP/1.1" 200 OK
  1967. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1968. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1969. INFO: 123.112.168.40:65238 - "POST /analysis/time HTTP/1.1" 200 OK
  1970. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1971. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1972. INFO: 123.112.168.40:65241 - "POST /analysis/time HTTP/1.1" 200 OK
  1973. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1974. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1975. INFO: 123.112.168.40:65246 - "POST /analysis/time HTTP/1.1" 200 OK
  1976. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1977. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1978. INFO: 123.112.168.40:65311 - "POST /analysis/time HTTP/1.1" 200 OK
  1979. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1980. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1981. INFO: 123.112.168.40:65316 - "POST /analysis/time HTTP/1.1" 200 OK
  1982. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1983. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1984. INFO: 123.112.168.40:65321 - "POST /analysis/time HTTP/1.1" 200 OK
  1985. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1986. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1987. INFO: 123.112.168.40:65403 - "POST /analysis/time HTTP/1.1" 200 OK
  1988. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1989. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1990. INFO: 123.112.168.40:65410 - "POST /analysis/time HTTP/1.1" 200 OK
  1991. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1992. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1993. INFO: 123.112.168.40:65431 - "POST /analysis/time HTTP/1.1" 200 OK
  1994. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1995. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1996. INFO: 123.112.168.40:65488 - "POST /analysis/time HTTP/1.1" 200 OK
  1997. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  1998. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  1999. INFO: 123.112.168.40:49159 - "POST /analysis/time HTTP/1.1" 200 OK
  2000. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2001. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2002. INFO: 123.112.168.40:49165 - "POST /analysis/time HTTP/1.1" 200 OK
  2003. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2004. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2005. INFO: 123.112.168.40:49223 - "POST /analysis/time HTTP/1.1" 200 OK
  2006. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2007. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2008. INFO: 123.112.168.40:49226 - "POST /analysis/frequency HTTP/1.1" 200 OK
  2009. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2010. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2011. INFO: 123.112.168.40:49319 - "POST /analysis/time HTTP/1.1" 200 OK
  2012. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2013. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2014. INFO: 123.112.168.40:49323 - "POST /analysis/frequency HTTP/1.1" 200 OK
  2015. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2016. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2017. INFO: 123.112.168.40:49350 - "POST /analysis/frequency HTTP/1.1" 200 OK
  2018. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2019. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2020. INFO: 123.112.168.40:49814 - "POST /analysis/time HTTP/1.1" 200 OK
  2021. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2022. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2023. INFO: 123.112.168.40:49866 - "POST /analysis/time HTTP/1.1" 200 OK
  2024. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2025. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2026. /data/source_code/CMS/cms_class_20241201.py:321: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2027. fs=int(data['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2028. 2024-07-01 00:00:14
  2029. 2024-07-01 00:00:27
  2030. 2024-07-01 02:00:12
  2031. 2024-07-01 02:00:24
  2032. 2024-07-01 07:14:15
  2033. 2024-07-01 07:14:28
  2034. 2024-07-01 08:01:29
  2035. 2024-07-01 08:03:27
  2036. 2024-07-01 10:48:04
  2037. 2024-07-01 10:48:16
  2038. 2024-07-01 12:00:24
  2039. 2024-07-01 12:01:40
  2040. 2024-07-01 14:00:04
  2041. 2024-07-01 14:01:06
  2042. 2024-07-01 14:59:38
  2043. 2024-07-01 15:31:49
  2044. 2024-07-01 16:02:33
  2045. 2024-07-01 16:05:14
  2046. 2024-07-01 18:47:32
  2047. 2024-07-01 18:47:45
  2048. 2024-07-01 20:00:10
  2049. 2024-07-01 20:01:11
  2050. 2024-07-01 22:03:33
  2051. 2024-07-01 22:04:59
  2052. INFO: 123.112.168.40:49869 - "POST /analysis/trend HTTP/1.1" 200 OK
  2053. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2054. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2055. INFO: 123.112.168.40:49875 - "POST /analysis/time HTTP/1.1" 200 OK
  2056. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2057. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2058. INFO: 123.112.168.40:49879 - "POST /analysis/time HTTP/1.1" 200 OK
  2059. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2060. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2061. INFO: 123.112.168.40:49884 - "POST /analysis/time HTTP/1.1" 200 OK
  2062. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2063. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2064. INFO: 123.112.168.40:49886 - "POST /analysis/time HTTP/1.1" 200 OK
  2065. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2066. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2067. INFO: 123.112.168.40:49891 - "POST /analysis/time HTTP/1.1" 200 OK
  2068. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2069. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2070. INFO: 123.112.168.40:49933 - "POST /analysis/time HTTP/1.1" 200 OK
  2071. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2072. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2073. INFO: 123.112.168.40:49938 - "POST /analysis/time HTTP/1.1" 200 OK
  2074. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2075. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2076. INFO: 123.112.168.40:49941 - "POST /analysis/time HTTP/1.1" 200 OK
  2077. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2078. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2079. INFO: 123.112.168.40:49946 - "POST /analysis/time HTTP/1.1" 200 OK
  2080. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2081. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2082. INFO: 123.112.168.40:49950 - "POST /analysis/frequency HTTP/1.1" 200 OK
  2083. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2084. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2085. INFO: 123.112.168.40:49956 - "POST /analysis/frequency HTTP/1.1" 200 OK
  2086. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2087. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2088. INFO: 123.112.168.40:50079 - "POST /analysis/time HTTP/1.1" 200 OK
  2089. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2090. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2091. INFO: 123.112.168.40:50082 - "POST /analysis/time HTTP/1.1" 200 OK
  2092. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2093. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2094. INFO: 123.112.168.40:50087 - "POST /analysis/time HTTP/1.1" 200 OK
  2095. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2096. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2097. INFO: 123.112.168.40:50106 - "POST /analysis/time HTTP/1.1" 200 OK
  2098. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2099. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2100. INFO: 123.112.168.40:50137 - "POST /analysis/time HTTP/1.1" 200 OK
  2101. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2102. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2103. INFO: 123.112.168.40:50142 - "POST /analysis/time HTTP/1.1" 200 OK
  2104. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2105. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2106. INFO: 123.112.168.40:50148 - "POST /analysis/time HTTP/1.1" 200 OK
  2107. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2108. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2109. INFO: 123.112.168.40:50152 - "POST /analysis/time HTTP/1.1" 200 OK
  2110. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2111. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2112. INFO: 123.112.168.40:50157 - "POST /analysis/time HTTP/1.1" 200 OK
  2113. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2114. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2115. INFO: 123.112.168.40:50162 - "POST /analysis/time HTTP/1.1" 200 OK
  2116. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2117. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2118. /data/source_code/CMS/cms_class_20241201.py:321: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2119. fs=int(data['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2120. 2024-07-01 00:00:14
  2121. 2024-07-01 00:00:27
  2122. 2024-07-01 02:00:12
  2123. 2024-07-01 02:00:24
  2124. 2024-07-01 07:14:15
  2125. 2024-07-01 07:14:28
  2126. 2024-07-01 08:01:29
  2127. 2024-07-01 08:03:27
  2128. 2024-07-01 10:48:04
  2129. 2024-07-01 10:48:16
  2130. 2024-07-01 12:00:24
  2131. 2024-07-01 12:01:40
  2132. 2024-07-01 14:00:04
  2133. 2024-07-01 14:01:06
  2134. 2024-07-01 14:59:38
  2135. 2024-07-01 15:31:49
  2136. 2024-07-01 16:02:33
  2137. 2024-07-01 16:05:14
  2138. 2024-07-01 18:47:32
  2139. 2024-07-01 18:47:45
  2140. 2024-07-01 20:00:10
  2141. 2024-07-01 20:01:11
  2142. 2024-07-01 22:03:33
  2143. 2024-07-01 22:04:59
  2144. INFO: 123.112.168.40:50218 - "POST /analysis/trend HTTP/1.1" 200 OK
  2145. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2146. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2147. INFO: 111.203.200.206:48421 - "POST /analysis/time HTTP/1.1" 200 OK
  2148. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2149. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2150. INFO: 111.203.200.206:9339 - "POST /analysis/time HTTP/1.1" 200 OK
  2151. INFO: 111.203.200.206:11435 - "POST /analysis/time HTTP/1.1" 200 OK
  2152. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2153. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2154. INFO: 111.203.200.206:7407 - "POST /analysis/time HTTP/1.1" 200 OK
  2155. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2156. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2157. INFO: 111.203.200.206:11507 - "POST /analysis/time HTTP/1.1" 200 OK
  2158. INFO: 111.203.200.206:9818 - "POST /analysis/time HTTP/1.1" 200 OK
  2159. INFO: 111.203.200.206:55380 - "POST /analysis/time HTTP/1.1" 200 OK
  2160. INFO: 111.203.200.206:42629 - "POST /analysis/time HTTP/1.1" 200 OK
  2161. INFO: 111.203.200.206:4501 - "POST /analysis/time HTTP/1.1" 200 OK
  2162. INFO: 111.203.200.206:44571 - "POST /analysis/time HTTP/1.1" 200 OK
  2163. INFO: 111.203.200.206:35921 - "POST /analysis/time HTTP/1.1" 200 OK
  2164. INFO: 111.203.200.206:12189 - "POST /analysis/time HTTP/1.1" 200 OK
  2165. INFO: 111.203.200.206:23296 - "POST /analysis/time HTTP/1.1" 200 OK
  2166. INFO: 111.203.200.206:47671 - "POST /analysis/time HTTP/1.1" 200 OK
  2167. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2168. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2169. INFO: 111.203.200.206:28594 - "POST /analysis/frequency HTTP/1.1" 200 OK
  2170. INFO: 111.203.200.206:11689 - "POST /analysis/time HTTP/1.1" 200 OK
  2171. INFO: 111.203.200.206:35367 - "GET /analysis/time HTTP/1.1" 405 Method Not Allowed
  2172. INFO: 111.203.200.206:18517 - "POST /analysis/time HTTP/1.1" 200 OK
  2173. INFO: 111.203.200.206:40636 - "POST /analysis/time HTTP/1.1" 200 OK
  2174. INFO: 111.203.200.206:18522 - "POST /analysis/time HTTP/1.1" 200 OK
  2175. INFO: 111.203.200.206:51118 - "POST /analysis/time HTTP/1.1" 200 OK
  2176. INFO: 111.203.200.206:21081 - "POST /analysis/time HTTP/1.1" 200 OK
  2177. INFO: 111.203.200.206:18523 - "POST /analysis/time HTTP/1.1" 200 OK
  2178. INFO: 111.203.200.206:9341 - "POST /analysis/time HTTP/1.1" 200 OK
  2179. INFO: 111.203.200.206:8321 - "POST /analysis/time HTTP/1.1" 200 OK
  2180. INFO: 111.203.200.206:34469 - "POST /analysis/time HTTP/1.1" 200 OK
  2181. INFO: 111.203.200.206:31439 - "POST /analysis/time HTTP/1.1" 200 OK
  2182. INFO: 111.203.200.206:19569 - "POST /analysis/time HTTP/1.1" 200 OK
  2183. INFO: 111.203.200.206:51469 - "POST /analysis/time HTTP/1.1" 200 OK
  2184. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2185. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2186. INFO: 111.203.200.206:53705 - "POST /analysis/time HTTP/1.1" 200 OK
  2187. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2188. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2189. INFO: 111.203.200.206:32219 - "POST /analysis/time HTTP/1.1" 200 OK
  2190. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2191. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2192. INFO: 111.203.200.206:44177 - "POST /analysis/time HTTP/1.1" 200 OK
  2193. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2194. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2195. INFO: 111.203.200.206:29240 - "POST /analysis/time HTTP/1.1" 200 OK
  2196. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2197. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2198. INFO: 111.203.200.206:41259 - "POST /analysis/time HTTP/1.1" 200 OK
  2199. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2200. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2201. INFO: 111.203.200.206:35022 - "POST /analysis/time HTTP/1.1" 200 OK
  2202. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2203. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2204. INFO: 111.203.200.206:32162 - "POST /analysis/time HTTP/1.1" 200 OK
  2205. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2206. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2207. INFO: 111.203.200.206:20983 - "POST /analysis/time HTTP/1.1" 200 OK
  2208. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2209. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2210. INFO: 111.203.200.206:6023 - "POST /analysis/time HTTP/1.1" 200 OK
  2211. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2212. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2213. INFO: 111.203.200.206:4070 - "POST /analysis/time HTTP/1.1" 200 OK
  2214. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2215. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2216. INFO: 111.203.200.206:1791 - "POST /analysis/time HTTP/1.1" 200 OK
  2217. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2218. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2219. INFO: 111.203.200.206:27429 - "POST /analysis/time HTTP/1.1" 200 OK
  2220. INFO: 111.203.200.206:19640 - "POST /analysis/time HTTP/1.1" 200 OK
  2221. INFO: 111.203.200.206:9013 - "POST /analysis/time HTTP/1.1" 200 OK
  2222. INFO: 111.203.200.206:3454 - "POST /analysis/time HTTP/1.1" 200 OK
  2223. INFO: 111.203.200.206:44573 - "POST /analysis/time HTTP/1.1" 200 OK
  2224. INFO: 111.203.200.206:17920 - "POST /analysis/time HTTP/1.1" 200 OK
  2225. INFO: 111.203.200.206:9780 - "POST /analysis/time HTTP/1.1" 200 OK
  2226. INFO: 111.203.200.206:36893 - "POST /analysis/time HTTP/1.1" 200 OK
  2227. INFO: 111.203.200.206:32194 - "POST /analysis/time HTTP/1.1" 200 OK
  2228. INFO: 111.203.200.206:38206 - "POST /analysis/time HTTP/1.1" 200 OK
  2229. INFO: 111.203.200.206:53757 - "POST /analysis/time HTTP/1.1" 200 OK
  2230. INFO: 111.203.200.206:19607 - "POST /analysis/time HTTP/1.1" 200 OK
  2231. INFO: 111.203.200.206:38206 - "POST /analysis/time HTTP/1.1" 200 OK
  2232. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2233. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2234. INFO: 111.203.200.206:29574 - "POST /analysis/time HTTP/1.1" 200 OK
  2235. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2236. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2237. INFO: 111.203.200.206:39315 - "POST /analysis/time HTTP/1.1" 200 OK
  2238. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2239. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2240. INFO: 111.203.200.206:21394 - "POST /analysis/time HTTP/1.1" 200 OK
  2241. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2242. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2243. INFO: 111.203.200.206:12216 - "POST /analysis/time HTTP/1.1" 200 OK
  2244. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2245. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2246. INFO: 111.203.200.206:21730 - "POST /analysis/time HTTP/1.1" 200 OK
  2247. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2248. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2249. INFO: 111.203.200.206:4535 - "POST /analysis/time HTTP/1.1" 200 OK
  2250. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2251. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2252. INFO: 111.203.200.206:34006 - "POST /analysis/time HTTP/1.1" 200 OK
  2253. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2254. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2255. INFO: 111.203.200.206:44554 - "POST /analysis/time HTTP/1.1" 200 OK
  2256. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2257. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2258. INFO: 111.203.200.206:8961 - "POST /analysis/time HTTP/1.1" 200 OK
  2259. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2260. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2261. INFO: 111.203.200.206:18500 - "POST /analysis/time HTTP/1.1" 200 OK
  2262. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2263. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2264. INFO: 111.203.200.206:38645 - "POST /analysis/time HTTP/1.1" 200 OK
  2265. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2266. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2267. INFO: 111.203.200.206:25360 - "POST /analysis/time HTTP/1.1" 200 OK
  2268. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2269. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2270. INFO: 111.203.200.206:31868 - "POST /analysis/time HTTP/1.1" 200 OK
  2271. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2272. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2273. INFO: 111.203.200.206:12664 - "POST /analysis/time HTTP/1.1" 200 OK
  2274. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2275. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2276. INFO: 111.203.200.206:11436 - "POST /analysis/time HTTP/1.1" 200 OK
  2277. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2278. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2279. INFO: 111.203.200.206:50245 - "POST /analysis/time HTTP/1.1" 200 OK
  2280. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2281. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2282. INFO: 111.203.200.206:39339 - "POST /analysis/time HTTP/1.1" 200 OK
  2283. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2284. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2285. INFO: 111.203.200.206:50253 - "POST /analysis/time HTTP/1.1" 200 OK
  2286. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2287. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2288. INFO: 111.203.200.206:38930 - "POST /analysis/time HTTP/1.1" 200 OK
  2289. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2290. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2291. INFO: 111.203.200.206:55540 - "POST /analysis/time HTTP/1.1" 200 OK
  2292. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2293. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2294. INFO: 111.203.200.206:6503 - "POST /analysis/time HTTP/1.1" 200 OK
  2295. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2296. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2297. INFO: 111.203.200.206:38940 - "POST /analysis/time HTTP/1.1" 200 OK
  2298. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2299. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2300. INFO: 111.203.200.206:55236 - "POST /analysis/time HTTP/1.1" 200 OK
  2301. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2302. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2303. INFO: 111.203.200.206:20078 - "POST /analysis/time HTTP/1.1" 200 OK
  2304. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2305. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2306. INFO: 111.203.200.206:20081 - "POST /analysis/time HTTP/1.1" 200 OK
  2307. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2308. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2309. INFO: 111.203.200.206:20088 - "POST /analysis/time HTTP/1.1" 200 OK
  2310. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2311. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2312. INFO: 111.203.200.206:1738 - "POST /analysis/time HTTP/1.1" 200 OK
  2313. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2314. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2315. INFO: 111.203.200.206:35010 - "POST /analysis/time HTTP/1.1" 200 OK
  2316. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2317. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2318. INFO: 111.203.200.206:4872 - "POST /analysis/time HTTP/1.1" 200 OK
  2319. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2320. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2321. INFO: 111.203.200.206:20986 - "POST /analysis/time HTTP/1.1" 200 OK
  2322. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2323. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2324. INFO: 111.203.200.206:53391 - "POST /analysis/time HTTP/1.1" 200 OK
  2325. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2326. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2327. INFO: 111.203.200.206:53428 - "POST /analysis/time HTTP/1.1" 200 OK
  2328. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2329. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2330. INFO: 111.203.200.206:25866 - "POST /analysis/time HTTP/1.1" 200 OK
  2331. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2332. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2333. INFO: 111.203.200.206:4510 - "POST /analysis/time HTTP/1.1" 200 OK
  2334. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2335. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2336. /data/source_code/CMS/cms_class_20241201.py:321: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2337. fs=int(data['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2338. 2024-07-01 00:00:14
  2339. 2024-07-01 00:00:27
  2340. 2024-07-01 02:00:12
  2341. 2024-07-01 02:00:24
  2342. 2024-07-01 07:14:15
  2343. 2024-07-01 07:14:28
  2344. 2024-07-01 08:01:29
  2345. 2024-07-01 08:03:27
  2346. 2024-07-01 10:48:04
  2347. 2024-07-01 10:48:16
  2348. 2024-07-01 12:00:24
  2349. 2024-07-01 12:01:40
  2350. 2024-07-01 14:00:04
  2351. 2024-07-01 14:01:06
  2352. 2024-07-01 14:59:38
  2353. 2024-07-01 15:31:49
  2354. 2024-07-01 16:02:33
  2355. 2024-07-01 16:05:14
  2356. 2024-07-01 18:47:32
  2357. 2024-07-01 18:47:45
  2358. 2024-07-01 20:00:10
  2359. 2024-07-01 20:01:11
  2360. 2024-07-01 22:03:33
  2361. 2024-07-01 22:04:59
  2362. INFO: 111.203.200.206:14074 - "POST /analysis/trend HTTP/1.1" 200 OK
  2363. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2364. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2365. INFO: 111.203.200.206:9895 - "POST /analysis/time HTTP/1.1" 200 OK
  2366. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2367. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2368. INFO: 111.203.200.206:51050 - "POST /analysis/time HTTP/1.1" 200 OK
  2369. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2370. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2371. INFO: 111.203.200.206:43437 - "POST /analysis/time HTTP/1.1" 200 OK
  2372. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2373. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2374. INFO: 111.203.200.206:7228 - "POST /analysis/frequency HTTP/1.1" 200 OK
  2375. INFO: 111.203.200.206:29345 - "POST /analysis/envelope HTTP/1.1" 200 OK
  2376. INFO: 111.203.200.206:45356 - "POST /analysis/envelope HTTP/1.1" 200 OK
  2377. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2378. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2379. INFO: 111.203.200.206:33171 - "POST /analysis/envelope HTTP/1.1" 200 OK
  2380. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2381. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2382. INFO: 111.203.200.206:1632 - "POST /analysis/envelope HTTP/1.1" 200 OK
  2383. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2384. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2385. INFO: 111.203.200.206:46550 - "POST /analysis/envelope HTTP/1.1" 200 OK
  2386. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2387. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2388. INFO: 111.203.200.206:23738 - "POST /analysis/frequency HTTP/1.1" 200 OK
  2389. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2390. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2391. INFO: 111.203.200.206:39128 - "POST /analysis/envelope HTTP/1.1" 200 OK
  2392. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2393. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2394. INFO: 111.203.200.206:16721 - "POST /analysis/frequency HTTP/1.1" 200 OK
  2395. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2396. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2397. INFO: 111.203.200.206:32253 - "POST /analysis/envelope HTTP/1.1" 200 OK
  2398. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2399. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2400. INFO: 111.203.200.206:5141 - "POST /analysis/frequency HTTP/1.1" 200 OK
  2401. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2402. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2403. INFO: 111.203.200.206:51714 - "POST /analysis/frequency HTTP/1.1" 200 OK
  2404. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2405. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2406. INFO: 111.203.200.206:31857 - "POST /analysis/time HTTP/1.1" 200 OK
  2407. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2408. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2409. /data/source_code/CMS/cms_class_20241201.py:321: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2410. fs=int(data['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2411. 2024-07-01 00:00:14
  2412. 2024-07-01 00:00:27
  2413. 2024-07-01 02:00:12
  2414. 2024-07-01 02:00:24
  2415. 2024-07-01 07:14:15
  2416. 2024-07-01 07:14:28
  2417. 2024-07-01 08:01:29
  2418. 2024-07-01 08:03:27
  2419. 2024-07-01 10:48:04
  2420. 2024-07-01 10:48:16
  2421. 2024-07-01 12:00:24
  2422. 2024-07-01 12:01:40
  2423. 2024-07-01 14:00:04
  2424. 2024-07-01 14:01:06
  2425. 2024-07-01 14:59:38
  2426. 2024-07-01 15:31:49
  2427. 2024-07-01 16:02:33
  2428. 2024-07-01 16:05:14
  2429. 2024-07-01 18:47:32
  2430. 2024-07-01 18:47:45
  2431. 2024-07-01 20:00:10
  2432. 2024-07-01 20:01:11
  2433. 2024-07-01 22:03:33
  2434. 2024-07-01 22:04:59
  2435. INFO: 111.203.200.206:8885 - "POST /analysis/trend HTTP/1.1" 200 OK
  2436. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2437. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2438. /data/source_code/CMS/cms_class_20241201.py:321: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2439. fs=int(data['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2440. 2024-07-01 00:00:14
  2441. 2024-07-01 00:00:27
  2442. 2024-07-01 02:00:12
  2443. 2024-07-01 02:00:24
  2444. 2024-07-01 07:14:15
  2445. 2024-07-01 07:14:28
  2446. 2024-07-01 08:01:29
  2447. 2024-07-01 08:03:27
  2448. 2024-07-01 10:48:04
  2449. 2024-07-01 10:48:16
  2450. 2024-07-01 12:00:24
  2451. 2024-07-01 12:01:40
  2452. 2024-07-01 14:00:04
  2453. 2024-07-01 14:01:06
  2454. 2024-07-01 14:59:38
  2455. 2024-07-01 15:31:49
  2456. 2024-07-01 16:02:33
  2457. 2024-07-01 16:05:14
  2458. 2024-07-01 18:47:32
  2459. 2024-07-01 18:47:45
  2460. 2024-07-01 20:00:10
  2461. 2024-07-01 20:01:11
  2462. 2024-07-01 22:03:33
  2463. 2024-07-01 22:04:59
  2464. INFO: 111.203.200.206:21111 - "POST /analysis/trend HTTP/1.1" 200 OK
  2465. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2466. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2467. INFO: 111.203.200.206:2346 - "POST /analysis/time HTTP/1.1" 200 OK
  2468. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2469. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2470. INFO: 111.203.200.206:21699 - "POST /analysis/frequency HTTP/1.1" 200 OK
  2471. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2472. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2473. INFO: 111.203.200.206:33214 - "POST /analysis/time HTTP/1.1" 200 OK
  2474. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2475. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2476. INFO: 111.203.200.206:11254 - "POST /analysis/frequency HTTP/1.1" 200 OK
  2477. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2478. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2479. INFO: 111.203.200.206:51809 - "POST /analysis/time HTTP/1.1" 200 OK
  2480. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2481. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2482. INFO: 111.203.200.206:45970 - "POST /analysis/frequency HTTP/1.1" 200 OK
  2483. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2484. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2485. INFO: 111.203.200.206:19560 - "POST /analysis/frequency HTTP/1.1" 200 OK
  2486. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2487. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2488. /data/source_code/CMS/cms_class_20241201.py:321: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2489. fs=int(data['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2490. 2024-07-01 00:00:14
  2491. 2024-07-01 00:00:27
  2492. 2024-07-01 02:00:12
  2493. 2024-07-01 02:00:24
  2494. 2024-07-01 07:14:15
  2495. 2024-07-01 07:14:28
  2496. 2024-07-01 08:01:29
  2497. 2024-07-01 08:03:27
  2498. 2024-07-01 10:48:04
  2499. 2024-07-01 10:48:16
  2500. 2024-07-01 12:00:24
  2501. 2024-07-01 12:01:40
  2502. 2024-07-01 14:00:04
  2503. 2024-07-01 14:01:06
  2504. 2024-07-01 14:59:38
  2505. 2024-07-01 15:31:49
  2506. 2024-07-01 16:02:33
  2507. 2024-07-01 16:05:14
  2508. 2024-07-01 18:47:32
  2509. 2024-07-01 18:47:45
  2510. 2024-07-01 20:00:10
  2511. 2024-07-01 20:01:11
  2512. 2024-07-01 22:03:33
  2513. 2024-07-01 22:04:59
  2514. INFO: 111.203.200.206:31603 - "POST /analysis/trend HTTP/1.1" 200 OK
  2515. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2516. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2517. /data/source_code/CMS/cms_class_20241201.py:321: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2518. fs=int(data['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2519. 2024-07-01 00:00:14
  2520. 2024-07-01 00:00:27
  2521. 2024-07-01 02:00:12
  2522. 2024-07-01 02:00:24
  2523. 2024-07-01 07:14:15
  2524. 2024-07-01 07:14:28
  2525. 2024-07-01 08:01:29
  2526. 2024-07-01 08:03:27
  2527. 2024-07-01 10:48:04
  2528. 2024-07-01 10:48:16
  2529. 2024-07-01 12:00:24
  2530. 2024-07-01 12:01:40
  2531. 2024-07-01 14:00:04
  2532. 2024-07-01 14:01:06
  2533. 2024-07-01 14:59:38
  2534. 2024-07-01 15:31:49
  2535. 2024-07-01 16:02:33
  2536. 2024-07-01 16:05:14
  2537. 2024-07-01 18:47:32
  2538. 2024-07-01 18:47:45
  2539. 2024-07-01 20:00:10
  2540. 2024-07-01 20:01:11
  2541. 2024-07-01 22:03:33
  2542. 2024-07-01 22:04:59
  2543. INFO: 111.203.200.206:26227 - "POST /analysis/trend HTTP/1.1" 200 OK
  2544. WARNING: Invalid HTTP request received.
  2545. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2546. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2547. INFO: 111.203.200.206:21095 - "POST /analysis/time HTTP/1.1" 200 OK
  2548. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2549. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2550. INFO: 111.203.200.206:2344 - "POST /analysis/frequency HTTP/1.1" 200 OK
  2551. WARNING: Invalid HTTP request received.
  2552. WARNING: Invalid HTTP request received.
  2553. WARNING: Invalid HTTP request received.
  2554. WARNING: Invalid HTTP request received.
  2555. WARNING: Invalid HTTP request received.
  2556. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2557. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2558. INFO: 111.203.200.206:42008 - "POST /analysis/time HTTP/1.1" 200 OK
  2559. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2560. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2561. INFO: 111.203.200.206:11585 - "POST /analysis/time HTTP/1.1" 200 OK
  2562. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2563. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2564. INFO: 111.203.200.206:44917 - "POST /analysis/time HTTP/1.1" 200 OK
  2565. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2566. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2567. INFO: 111.203.200.206:29589 - "POST /analysis/time HTTP/1.1" 200 OK
  2568. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2569. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2570. INFO: 111.203.200.206:25981 - "POST /analysis/time HTTP/1.1" 200 OK
  2571. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2572. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2573. INFO: 111.203.200.206:50114 - "POST /analysis/time HTTP/1.1" 200 OK
  2574. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2575. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2576. INFO: 111.203.200.206:45311 - "POST /analysis/time HTTP/1.1" 200 OK
  2577. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2578. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2579. INFO: 111.203.200.206:21423 - "POST /analysis/time HTTP/1.1" 200 OK
  2580. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2581. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2582. INFO: 111.203.200.206:21300 - "POST /analysis/time HTTP/1.1" 200 OK
  2583. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2584. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2585. INFO: 111.203.200.206:1625 - "POST /analysis/time HTTP/1.1" 200 OK
  2586. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2587. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2588. INFO: 111.203.200.206:14020 - "POST /analysis/time HTTP/1.1" 200 OK
  2589. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2590. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2591. INFO: 111.203.200.206:44567 - "POST /analysis/time HTTP/1.1" 200 OK
  2592. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2593. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2594. INFO: 111.203.200.206:44606 - "POST /analysis/time HTTP/1.1" 200 OK
  2595. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2596. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2597. INFO: 111.203.200.206:19611 - "POST /analysis/time HTTP/1.1" 200 OK
  2598. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2599. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2600. INFO: 111.203.200.206:36977 - "POST /analysis/time HTTP/1.1" 200 OK
  2601. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2602. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2603. INFO: 111.203.200.206:19633 - "POST /analysis/time HTTP/1.1" 200 OK
  2604. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2605. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2606. INFO: 111.203.200.206:54697 - "POST /analysis/time HTTP/1.1" 200 OK
  2607. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2608. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2609. INFO: 111.203.200.206:55525 - "POST /analysis/time HTTP/1.1" 200 OK
  2610. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2611. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2612. INFO: 111.203.200.206:34022 - "POST /analysis/time HTTP/1.1" 200 OK
  2613. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2614. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2615. INFO: 111.203.200.206:42830 - "POST /analysis/frequency HTTP/1.1" 200 OK
  2616. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2617. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2618. INFO: 111.203.200.206:14131 - "POST /analysis/time HTTP/1.1" 200 OK
  2619. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2620. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2621. INFO: 111.203.200.206:34836 - "POST /analysis/time HTTP/1.1" 200 OK
  2622. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2623. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2624. INFO: 111.203.200.206:3332 - "POST /analysis/time HTTP/1.1" 200 OK
  2625. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2626. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2627. INFO: 111.203.200.206:11439 - "POST /analysis/time HTTP/1.1" 200 OK
  2628. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2629. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2630. INFO: 111.203.200.206:53720 - "POST /analysis/time HTTP/1.1" 200 OK
  2631. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2632. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2633. INFO: 111.203.200.206:53740 - "POST /analysis/time HTTP/1.1" 200 OK
  2634. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2635. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2636. INFO: 111.203.200.206:45343 - "POST /analysis/time HTTP/1.1" 200 OK
  2637. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2638. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2639. INFO: 111.203.200.206:16280 - "POST /analysis/time HTTP/1.1" 200 OK
  2640. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2641. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2642. INFO: 111.203.200.206:44218 - "POST /analysis/time HTTP/1.1" 200 OK
  2643. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2644. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2645. INFO: 111.203.200.206:12066 - "POST /analysis/time HTTP/1.1" 200 OK
  2646. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2647. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2648. INFO: 111.203.200.206:49290 - "POST /analysis/time HTTP/1.1" 200 OK
  2649. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2650. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2651. INFO: 111.203.200.206:6835 - "POST /analysis/time HTTP/1.1" 200 OK
  2652. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2653. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2654. /data/source_code/CMS/cms_class_20241201.py:321: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2655. fs=int(data['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2656. 2024-07-01 00:00:14
  2657. 2024-07-01 00:00:27
  2658. 2024-07-01 02:00:12
  2659. 2024-07-01 02:00:24
  2660. 2024-07-01 07:14:15
  2661. 2024-07-01 07:14:28
  2662. 2024-07-01 08:01:29
  2663. 2024-07-01 08:03:27
  2664. 2024-07-01 10:48:04
  2665. 2024-07-01 10:48:16
  2666. 2024-07-01 12:00:24
  2667. 2024-07-01 12:01:40
  2668. 2024-07-01 14:00:04
  2669. 2024-07-01 14:01:06
  2670. 2024-07-01 14:59:38
  2671. 2024-07-01 15:31:49
  2672. 2024-07-01 16:02:33
  2673. 2024-07-01 16:05:14
  2674. 2024-07-01 18:47:32
  2675. 2024-07-01 18:47:45
  2676. 2024-07-01 20:00:10
  2677. 2024-07-01 20:01:11
  2678. 2024-07-01 22:03:33
  2679. 2024-07-01 22:04:59
  2680. INFO: 111.203.200.206:13559 - "POST /analysis/trend HTTP/1.1" 200 OK
  2681. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2682. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2683. /data/source_code/CMS/cms_class_20241201.py:321: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2684. fs=int(data['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2685. 2024-07-01 00:00:14
  2686. 2024-07-01 00:00:27
  2687. 2024-07-01 02:00:12
  2688. 2024-07-01 02:00:24
  2689. 2024-07-01 07:14:15
  2690. 2024-07-01 07:14:28
  2691. 2024-07-01 08:01:29
  2692. 2024-07-01 08:03:27
  2693. 2024-07-01 10:48:04
  2694. 2024-07-01 10:48:16
  2695. 2024-07-01 12:00:24
  2696. 2024-07-01 12:01:40
  2697. 2024-07-01 14:00:04
  2698. 2024-07-01 14:01:06
  2699. 2024-07-01 14:59:38
  2700. 2024-07-01 15:31:49
  2701. 2024-07-01 16:02:33
  2702. 2024-07-01 16:05:14
  2703. 2024-07-01 18:47:32
  2704. 2024-07-01 18:47:45
  2705. 2024-07-01 20:00:10
  2706. 2024-07-01 20:01:11
  2707. 2024-07-01 22:03:33
  2708. 2024-07-01 22:04:59
  2709. INFO: 111.203.200.206:6269 - "POST /analysis/trend HTTP/1.1" 200 OK
  2710. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2711. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2712. /data/source_code/CMS/cms_class_20241201.py:321: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2713. fs=int(data['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2714. 2024-07-01 00:00:14
  2715. 2024-07-01 00:00:27
  2716. 2024-07-01 02:00:12
  2717. 2024-07-01 02:00:24
  2718. 2024-07-01 07:14:15
  2719. 2024-07-01 07:14:28
  2720. 2024-07-01 08:01:29
  2721. 2024-07-01 08:03:27
  2722. 2024-07-01 10:48:04
  2723. 2024-07-01 10:48:16
  2724. 2024-07-01 12:00:24
  2725. 2024-07-01 12:01:40
  2726. 2024-07-01 14:00:04
  2727. 2024-07-01 14:01:06
  2728. 2024-07-01 14:59:38
  2729. 2024-07-01 15:31:49
  2730. 2024-07-01 16:02:33
  2731. 2024-07-01 16:05:14
  2732. 2024-07-01 18:47:32
  2733. 2024-07-01 18:47:45
  2734. 2024-07-01 20:00:10
  2735. 2024-07-01 20:01:11
  2736. 2024-07-01 22:03:33
  2737. 2024-07-01 22:04:59
  2738. INFO: 111.203.200.206:7171 - "POST /analysis/trend HTTP/1.1" 200 OK
  2739. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2740. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2741. INFO: 111.203.200.206:25935 - "POST /analysis/time HTTP/1.1" 200 OK
  2742. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2743. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2744. INFO: 111.203.200.206:50152 - "POST /analysis/frequency HTTP/1.1" 200 OK
  2745. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2746. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2747. INFO: 111.203.200.206:21437 - "POST /analysis/time HTTP/1.1" 200 OK
  2748. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2749. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2750. INFO: 111.203.200.206:50380 - "POST /analysis/time HTTP/1.1" 200 OK
  2751. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2752. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2753. INFO: 111.203.200.206:17248 - "POST /analysis/time HTTP/1.1" 200 OK
  2754. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2755. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2756. INFO: 111.203.200.206:19912 - "POST /analysis/time HTTP/1.1" 200 OK
  2757. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2758. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2759. INFO: 111.203.200.206:3085 - "POST /analysis/time HTTP/1.1" 200 OK
  2760. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2761. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2762. INFO: 111.203.200.206:7778 - "POST /analysis/time HTTP/1.1" 200 OK
  2763. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2764. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2765. INFO: 111.203.200.206:31981 - "POST /analysis/time HTTP/1.1" 200 OK
  2766. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2767. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2768. /data/source_code/CMS/cms_class_20241201.py:321: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2769. fs=int(data['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2770. 2024-07-01 00:00:14
  2771. 2024-07-01 00:00:27
  2772. 2024-07-01 02:00:12
  2773. 2024-07-01 02:00:24
  2774. 2024-07-01 07:14:15
  2775. 2024-07-01 07:14:28
  2776. 2024-07-01 08:01:29
  2777. 2024-07-01 08:03:27
  2778. 2024-07-01 10:48:04
  2779. 2024-07-01 10:48:16
  2780. 2024-07-01 12:00:24
  2781. 2024-07-01 12:01:40
  2782. 2024-07-01 14:00:04
  2783. 2024-07-01 14:01:06
  2784. 2024-07-01 14:59:38
  2785. 2024-07-01 15:31:49
  2786. 2024-07-01 16:02:33
  2787. 2024-07-01 16:05:14
  2788. 2024-07-01 18:47:32
  2789. 2024-07-01 18:47:45
  2790. 2024-07-01 20:00:10
  2791. 2024-07-01 20:01:11
  2792. 2024-07-01 22:03:33
  2793. 2024-07-01 22:04:59
  2794. INFO: 111.203.200.206:2341 - "POST /analysis/trend HTTP/1.1" 200 OK
  2795. WARNING: Invalid HTTP request received.
  2796. WARNING: Invalid HTTP request received.
  2797. INFO: 80.66.83.114:48586 - "CONNECT hotmail-com.olc.protection.outlook.com%3A25 HTTP/1.1" 404 Not Found
  2798. WARNING: Invalid HTTP request received.
  2799. WARNING: Invalid HTTP request received.
  2800. INFO: 80.66.83.114:33448 - "CONNECT hotmail-com.olc.protection.outlook.com%3A25 HTTP/1.1" 404 Not Found
  2801. WARNING: Invalid HTTP request received.
  2802. WARNING: Invalid HTTP request received.
  2803. INFO: 80.66.83.114:55548 - "CONNECT 85.206.160.115%3A80 HTTP/1.1" 404 Not Found
  2804. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2805. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2806. /data/source_code/CMS/cms_class_20241201.py:321: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2807. fs=int(data['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2808. 2024-07-01 00:00:14
  2809. 2024-07-01 00:00:27
  2810. 2024-07-01 02:00:12
  2811. 2024-07-01 02:00:24
  2812. 2024-07-01 07:14:15
  2813. 2024-07-01 07:14:28
  2814. 2024-07-01 08:01:29
  2815. 2024-07-01 08:03:27
  2816. 2024-07-01 10:48:04
  2817. 2024-07-01 10:48:16
  2818. 2024-07-01 12:00:24
  2819. 2024-07-01 12:01:40
  2820. 2024-07-01 14:00:04
  2821. 2024-07-01 14:01:06
  2822. 2024-07-01 14:59:38
  2823. 2024-07-01 15:31:49
  2824. 2024-07-01 16:02:33
  2825. 2024-07-01 16:05:14
  2826. 2024-07-01 18:47:32
  2827. 2024-07-01 18:47:45
  2828. 2024-07-01 20:00:10
  2829. 2024-07-01 20:01:11
  2830. 2024-07-01 22:03:33
  2831. 2024-07-01 22:04:59
  2832. INFO: 111.203.200.206:13159 - "POST /analysis/trend HTTP/1.1" 200 OK
  2833. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2834. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2835. INFO: 111.203.200.206:42873 - "POST /analysis/time HTTP/1.1" 200 OK
  2836. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2837. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2838. INFO: 111.203.200.206:8986 - "POST /analysis/frequency HTTP/1.1" 200 OK
  2839. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2840. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2841. INFO: 111.203.200.206:41207 - "POST /analysis/frequency HTTP/1.1" 200 OK
  2842. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2843. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2844. INFO: 111.203.200.206:9794 - "POST /analysis/frequency HTTP/1.1" 200 OK
  2845. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2846. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2847. INFO: 111.203.200.206:47106 - "POST /analysis/frequency HTTP/1.1" 200 OK
  2848. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2849. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2850. INFO: 111.203.200.206:30364 - "POST /analysis/frequency HTTP/1.1" 200 OK
  2851. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2852. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2853. INFO: 111.203.200.206:41216 - "POST /analysis/frequency HTTP/1.1" 200 OK
  2854. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2855. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2856. INFO: 111.203.200.206:41223 - "POST /analysis/frequency HTTP/1.1" 200 OK
  2857. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2858. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2859. INFO: 111.203.200.206:41231 - "POST /analysis/frequency HTTP/1.1" 200 OK
  2860. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2861. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2862. INFO: 111.203.200.206:41237 - "POST /analysis/frequency HTTP/1.1" 200 OK
  2863. WARNING: Invalid HTTP request received.
  2864. INFO: 223.113.128.215:55224 - "GET / HTTP/1.1" 404 Not Found
  2865. WARNING: Invalid HTTP request received.
  2866. WARNING: Invalid HTTP request received.
  2867. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2868. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2869. INFO: 123.112.168.40:49880 - "POST /analysis/time HTTP/1.1" 200 OK
  2870. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2871. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2872. INFO: 123.112.168.40:49881 - "POST /analysis/time HTTP/1.1" 200 OK
  2873. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2874. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2875. INFO: 123.112.168.40:49882 - "POST /analysis/time HTTP/1.1" 200 OK
  2876. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2877. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2878. INFO: 123.112.168.40:49920 - "POST /analysis/time HTTP/1.1" 200 OK
  2879. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2880. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2881. INFO: 123.112.168.40:49936 - "POST /analysis/time HTTP/1.1" 200 OK
  2882. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2883. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2884. INFO: 123.112.168.40:49937 - "POST /analysis/frequency HTTP/1.1" 200 OK
  2885. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2886. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2887. INFO: 123.112.168.40:63331 - "POST /analysis/time HTTP/1.1" 200 OK
  2888. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2889. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2890. INFO: 123.112.168.40:63333 - "POST /analysis/frequency HTTP/1.1" 200 OK
  2891. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2892. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2893. /data/source_code/CMS/cms_class_20241201.py:321: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2894. fs=int(data['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2895. 2024-07-01 00:00:14
  2896. 2024-07-01 00:00:27
  2897. 2024-07-01 02:00:12
  2898. 2024-07-01 02:00:24
  2899. 2024-07-01 07:14:15
  2900. 2024-07-01 07:14:28
  2901. 2024-07-01 08:01:29
  2902. 2024-07-01 08:03:27
  2903. 2024-07-01 10:48:04
  2904. 2024-07-01 10:48:16
  2905. 2024-07-01 12:00:24
  2906. 2024-07-01 12:01:40
  2907. 2024-07-01 14:00:04
  2908. 2024-07-01 14:01:06
  2909. 2024-07-01 14:59:38
  2910. 2024-07-01 15:31:49
  2911. 2024-07-01 16:02:33
  2912. 2024-07-01 16:05:14
  2913. 2024-07-01 18:47:32
  2914. 2024-07-01 18:47:45
  2915. 2024-07-01 20:00:10
  2916. 2024-07-01 20:01:11
  2917. 2024-07-01 22:03:33
  2918. 2024-07-01 22:04:59
  2919. INFO: 123.112.168.40:63340 - "POST /analysis/trend HTTP/1.1" 200 OK
  2920. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2921. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2922. INFO: 123.112.168.40:63342 - "POST /analysis/time HTTP/1.1" 200 OK
  2923. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2924. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2925. INFO: 123.112.168.40:63346 - "POST /analysis/time HTTP/1.1" 200 OK
  2926. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2927. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2928. INFO: 123.112.168.40:63348 - "POST /analysis/time HTTP/1.1" 200 OK
  2929. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2930. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2931. INFO: 123.112.168.40:63352 - "POST /analysis/time HTTP/1.1" 200 OK
  2932. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2933. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2934. INFO: 123.112.168.40:63354 - "POST /analysis/time HTTP/1.1" 200 OK
  2935. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2936. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2937. INFO: 123.112.168.40:63358 - "POST /analysis/time HTTP/1.1" 200 OK
  2938. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2939. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2940. INFO: 123.112.168.40:63360 - "POST /analysis/time HTTP/1.1" 200 OK
  2941. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2942. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2943. INFO: 123.112.168.40:63364 - "POST /analysis/time HTTP/1.1" 200 OK
  2944. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2945. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2946. INFO: 123.112.168.40:63366 - "POST /analysis/time HTTP/1.1" 200 OK
  2947. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2948. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2949. INFO: 123.112.168.40:63370 - "POST /analysis/time HTTP/1.1" 200 OK
  2950. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2951. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2952. INFO: 123.112.168.40:63372 - "POST /analysis/time HTTP/1.1" 200 OK
  2953. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2954. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2955. INFO: 123.112.168.40:65283 - "POST /analysis/time HTTP/1.1" 200 OK
  2956. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2957. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2958. INFO: 123.112.168.40:65289 - "POST /analysis/time HTTP/1.1" 200 OK
  2959. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2960. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2961. INFO: 123.112.168.40:65466 - "POST /analysis/time HTTP/1.1" 200 OK
  2962. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2963. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2964. INFO: 123.112.168.40:61087 - "POST /analysis/frequency HTTP/1.1" 200 OK
  2965. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2966. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2967. INFO: 111.203.200.206:16754 - "POST /analysis/time HTTP/1.1" 200 OK
  2968. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2969. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2970. INFO: 111.203.200.206:28087 - "POST /analysis/time HTTP/1.1" 200 OK
  2971. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2972. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2973. INFO: 111.203.200.206:20084 - "POST /analysis/time HTTP/1.1" 200 OK
  2974. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2975. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2976. INFO: 111.203.200.206:5784 - "POST /analysis/time HTTP/1.1" 200 OK
  2977. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2978. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2979. INFO: 111.203.200.206:3368 - "POST /analysis/time HTTP/1.1" 200 OK
  2980. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2981. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2982. INFO: 111.203.200.206:34038 - "POST /analysis/time HTTP/1.1" 200 OK
  2983. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2984. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2985. INFO: 111.203.200.206:40578 - "POST /analysis/frequency HTTP/1.1" 200 OK
  2986. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2987. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2988. INFO: 111.203.200.206:30158 - "POST /analysis/envelope HTTP/1.1" 200 OK
  2989. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2990. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2991. /data/source_code/CMS/cms_class_20241201.py:321: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  2992. fs=int(data['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  2993. 2024-07-01 00:00:14
  2994. 2024-07-01 00:00:27
  2995. 2024-07-01 02:00:12
  2996. 2024-07-01 02:00:24
  2997. 2024-07-01 07:14:15
  2998. 2024-07-01 07:14:28
  2999. 2024-07-01 08:01:29
  3000. 2024-07-01 08:03:27
  3001. 2024-07-01 10:48:04
  3002. 2024-07-01 10:48:16
  3003. 2024-07-01 12:00:24
  3004. 2024-07-01 12:01:40
  3005. 2024-07-01 14:00:04
  3006. 2024-07-01 14:01:06
  3007. 2024-07-01 14:59:38
  3008. 2024-07-01 15:31:49
  3009. 2024-07-01 16:02:33
  3010. 2024-07-01 16:05:14
  3011. 2024-07-01 18:47:32
  3012. 2024-07-01 18:47:45
  3013. 2024-07-01 20:00:10
  3014. 2024-07-01 20:01:11
  3015. 2024-07-01 22:03:33
  3016. 2024-07-01 22:04:59
  3017. INFO: 111.203.200.206:36894 - "POST /analysis/trend HTTP/1.1" 200 OK
  3018. WARNING: Invalid HTTP request received.
  3019. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  3020. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  3021. INFO: 111.203.200.206:22450 - "POST /analysis/time HTTP/1.1" 200 OK
  3022. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  3023. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  3024. INFO: 111.203.200.206:15637 - "POST /analysis/frequency HTTP/1.1" 200 OK
  3025. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  3026. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  3027. /data/source_code/CMS/cms_class_20241201.py:321: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  3028. fs=int(data['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  3029. 2024-07-01 00:00:14
  3030. 2024-07-01 00:00:27
  3031. 2024-07-01 02:00:12
  3032. 2024-07-01 02:00:24
  3033. 2024-07-01 07:14:15
  3034. 2024-07-01 07:14:28
  3035. 2024-07-01 08:01:29
  3036. 2024-07-01 08:03:27
  3037. 2024-07-01 10:48:04
  3038. 2024-07-01 10:48:16
  3039. 2024-07-01 12:00:24
  3040. 2024-07-01 12:01:40
  3041. 2024-07-01 14:00:04
  3042. 2024-07-01 14:01:06
  3043. 2024-07-01 14:59:38
  3044. 2024-07-01 15:31:49
  3045. 2024-07-01 16:02:33
  3046. 2024-07-01 16:05:14
  3047. 2024-07-01 18:47:32
  3048. 2024-07-01 18:47:45
  3049. 2024-07-01 20:00:10
  3050. 2024-07-01 20:01:11
  3051. 2024-07-01 22:03:33
  3052. 2024-07-01 22:04:59
  3053. INFO: 111.203.200.206:30192 - "POST /analysis/trend HTTP/1.1" 200 OK
  3054. WARNING: Invalid HTTP request received.
  3055. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  3056. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  3057. INFO: 111.203.200.206:50628 - "POST /analysis/time HTTP/1.1" 200 OK
  3058. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  3059. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  3060. INFO: 111.203.200.206:10196 - "POST /analysis/frequency HTTP/1.1" 200 OK
  3061. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  3062. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  3063. INFO: 111.203.200.206:50659 - "POST /analysis/time HTTP/1.1" 200 OK
  3064. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  3065. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  3066. INFO: 111.203.200.206:55312 - "POST /analysis/frequency HTTP/1.1" 200 OK
  3067. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  3068. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  3069. INFO: 111.203.200.206:16012 - "POST /analysis/time HTTP/1.1" 200 OK
  3070. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  3071. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  3072. INFO: 111.203.200.206:11201 - "POST /analysis/time HTTP/1.1" 200 OK
  3073. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  3074. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  3075. INFO: 111.203.200.206:11207 - "POST /analysis/time HTTP/1.1" 200 OK
  3076. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  3077. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  3078. INFO: 111.203.200.206:44197 - "POST /analysis/time HTTP/1.1" 200 OK
  3079. WARNING: Invalid HTTP request received.
  3080. INFO: 52.81.60.5:52302 - "GET / HTTP/1.1" 404 Not Found
  3081. INFO: 52.81.60.5:52314 - "GET /favicon.ico HTTP/1.1" 404 Not Found
  3082. INFO: 52.81.60.5:52326 - "GET /robots.txt HTTP/1.1" 404 Not Found
  3083. INFO: 52.81.60.5:52338 - "GET /sitemap.xml HTTP/1.1" 404 Not Found
  3084. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  3085. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  3086. INFO: 111.203.200.206:18905 - "POST /analysis/time HTTP/1.1" 200 OK
  3087. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  3088. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  3089. INFO: 111.203.200.206:50385 - "POST /analysis/frequency HTTP/1.1" 200 OK
  3090. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  3091. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  3092. INFO: 111.203.200.206:35237 - "POST /analysis/time HTTP/1.1" 200 OK
  3093. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  3094. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  3095. /data/source_code/CMS/cms_class_20241201.py:321: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  3096. fs=int(data['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  3097. 2024-07-01 00:00:14
  3098. 2024-07-01 00:00:27
  3099. 2024-07-01 02:00:12
  3100. 2024-07-01 02:00:24
  3101. 2024-07-01 07:14:15
  3102. 2024-07-01 07:14:28
  3103. 2024-07-01 08:01:29
  3104. 2024-07-01 08:03:27
  3105. 2024-07-01 10:48:04
  3106. 2024-07-01 10:48:16
  3107. 2024-07-01 12:00:24
  3108. 2024-07-01 12:01:40
  3109. 2024-07-01 14:00:04
  3110. 2024-07-01 14:01:06
  3111. 2024-07-01 14:59:38
  3112. 2024-07-01 15:31:49
  3113. 2024-07-01 16:02:33
  3114. 2024-07-01 16:05:14
  3115. 2024-07-01 18:47:32
  3116. 2024-07-01 18:47:45
  3117. 2024-07-01 20:00:10
  3118. 2024-07-01 20:01:11
  3119. 2024-07-01 22:03:33
  3120. 2024-07-01 22:04:59
  3121. INFO: 111.203.200.206:33494 - "POST /analysis/trend HTTP/1.1" 200 OK
  3122. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  3123. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  3124. INFO: 111.203.200.206:44908 - "POST /analysis/time HTTP/1.1" 200 OK
  3125. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  3126. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  3127. INFO: 111.203.200.206:1763 - "POST /analysis/frequency HTTP/1.1" 200 OK
  3128. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  3129. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  3130. INFO: 111.203.200.206:35959 - "POST /analysis/envelope HTTP/1.1" 200 OK
  3131. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  3132. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  3133. /data/source_code/CMS/cms_class_20241201.py:321: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  3134. fs=int(data['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  3135. 2024-07-01 00:00:14
  3136. 2024-07-01 00:00:27
  3137. 2024-07-01 02:00:12
  3138. 2024-07-01 02:00:24
  3139. 2024-07-01 07:14:15
  3140. 2024-07-01 07:14:28
  3141. 2024-07-01 08:01:29
  3142. 2024-07-01 08:03:27
  3143. 2024-07-01 10:48:04
  3144. 2024-07-01 10:48:16
  3145. 2024-07-01 12:00:24
  3146. 2024-07-01 12:01:40
  3147. 2024-07-01 14:00:04
  3148. 2024-07-01 14:01:06
  3149. 2024-07-01 14:59:38
  3150. 2024-07-01 15:31:49
  3151. 2024-07-01 16:02:33
  3152. 2024-07-01 16:05:14
  3153. 2024-07-01 18:47:32
  3154. 2024-07-01 18:47:45
  3155. 2024-07-01 20:00:10
  3156. 2024-07-01 20:01:11
  3157. 2024-07-01 22:03:33
  3158. 2024-07-01 22:04:59
  3159. INFO: 111.203.200.206:29348 - "POST /analysis/trend HTTP/1.1" 200 OK
  3160. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  3161. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  3162. INFO: 111.203.200.206:28602 - "POST /analysis/time HTTP/1.1" 200 OK
  3163. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  3164. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  3165. INFO: 111.203.200.206:36965 - "POST /analysis/frequency HTTP/1.1" 200 OK
  3166. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  3167. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  3168. /data/source_code/CMS/cms_class_20241201.py:321: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  3169. fs=int(data['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  3170. 2024-07-01 00:00:14
  3171. 2024-07-01 00:00:27
  3172. 2024-07-01 02:00:12
  3173. 2024-07-01 02:00:24
  3174. 2024-07-01 07:14:15
  3175. 2024-07-01 07:14:28
  3176. 2024-07-01 08:01:29
  3177. 2024-07-01 08:03:27
  3178. 2024-07-01 10:48:04
  3179. 2024-07-01 10:48:16
  3180. 2024-07-01 12:00:24
  3181. 2024-07-01 12:01:40
  3182. 2024-07-01 14:00:04
  3183. 2024-07-01 14:01:06
  3184. 2024-07-01 14:59:38
  3185. 2024-07-01 15:31:49
  3186. 2024-07-01 16:02:33
  3187. 2024-07-01 16:05:14
  3188. 2024-07-01 18:47:32
  3189. 2024-07-01 18:47:45
  3190. 2024-07-01 20:00:10
  3191. 2024-07-01 20:01:11
  3192. 2024-07-01 22:03:33
  3193. 2024-07-01 22:04:59
  3194. INFO: 111.203.200.206:47367 - "POST /analysis/trend HTTP/1.1" 200 OK
  3195. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  3196. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  3197. INFO: 111.203.200.206:47402 - "POST /analysis/envelope HTTP/1.1" 200 OK
  3198. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  3199. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  3200. INFO: 111.203.200.206:20079 - "POST /analysis/time HTTP/1.1" 200 OK
  3201. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  3202. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  3203. INFO: 111.203.200.206:47651 - "POST /analysis/frequency HTTP/1.1" 200 OK
  3204. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  3205. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  3206. INFO: 111.203.200.206:20093 - "POST /analysis/envelope HTTP/1.1" 200 OK
  3207. WARNING: Invalid HTTP request received.
  3208. WARNING: Invalid HTTP request received.
  3209. WARNING: Invalid HTTP request received.
  3210. INFO: 106.75.157.47:35424 - "POST /token HTTP/1.1" 404 Not Found
  3211. WARNING: Invalid HTTP request received.
  3212. WARNING: Invalid HTTP request received.
  3213. WARNING: Invalid HTTP request received.
  3214. WARNING: Invalid HTTP request received.
  3215. WARNING: Invalid HTTP request received.
  3216. INFO: 123.125.21.156:34316 - "GET / HTTP/1.1" 404 Not Found
  3217. INFO: 123.125.21.156:34330 - "GET / HTTP/1.1" 404 Not Found
  3218. INFO: 123.125.21.156:34332 - "GET /never_could_exists HTTP/1.1" 404 Not Found
  3219. INFO: 123.125.21.156:60668 - "GET /adminer/ HTTP/1.1" 404 Not Found
  3220. INFO: 123.125.21.156:60672 - "GET /arcgis/ HTTP/1.1" 404 Not Found
  3221. INFO: 123.125.21.156:60682 - "GET /axis2/ HTTP/1.1" 404 Not Found
  3222. INFO: 123.125.21.156:60684 - "GET /axis/ HTTP/1.1" 404 Not Found
  3223. INFO: 123.125.21.156:53396 - "GET /druid/ HTTP/1.1" 404 Not Found
  3224. INFO: 123.125.21.156:46462 - "GET /uis/ HTTP/1.1" 404 Not Found
  3225. INFO: 123.125.21.156:46470 - "GET /imc/ HTTP/1.1" 404 Not Found
  3226. INFO: 123.125.21.156:46484 - "GET /manager/ HTTP/1.1" 404 Not Found
  3227. INFO: 123.125.21.156:46496 - "GET /minio/login HTTP/1.1" 404 Not Found
  3228. INFO: 123.125.21.156:46500 - "GET /nacos/ HTTP/1.1" 404 Not Found
  3229. INFO: 123.125.21.156:46510 - "GET /phpmyadmin/ HTTP/1.1" 404 Not Found
  3230. INFO: 123.125.21.156:46520 - "GET /pma/ HTTP/1.1" 404 Not Found
  3231. INFO: 123.125.21.156:58270 - "GET /swagger-ui.html HTTP/1.1" 404 Not Found
  3232. INFO: 123.125.21.156:58284 - "GET /swagger/ HTTP/1.1" 404 Not Found
  3233. INFO: 123.125.21.156:58288 - "GET /api/docs/ HTTP/1.1" 404 Not Found
  3234. INFO: 123.125.21.156:58292 - "GET /console/ HTTP/1.1" 404 Not Found
  3235. INFO: 123.125.21.156:58294 - "GET /webroot/decision/ HTTP/1.1" 404 Not Found
  3236. INFO: 123.125.21.156:58298 - "GET /harbor/ HTTP/1.1" 404 Not Found
  3237. INFO: 123.125.21.156:58310 - "GET /xxl-job/ HTTP/1.1" 404 Not Found
  3238. INFO: 123.125.21.156:58314 - "GET /xxl-job-admin/ HTTP/1.1" 404 Not Found
  3239. INFO: 123.125.21.156:37058 - "GET /xxl/ HTTP/1.1" 404 Not Found
  3240. INFO: 123.125.21.156:37066 - "GET /wui/ HTTP/1.1" 404 Not Found
  3241. INFO: 123.125.21.156:37076 - "GET /smartbi/ HTTP/1.1" 404 Not Found
  3242. INFO: 123.125.21.156:49724 - "GET /webroot/decision/ HTTP/1.1" 404 Not Found
  3243. INFO: 123.125.21.156:49738 - "GET /xxl-job/ HTTP/1.1" 404 Not Found
  3244. INFO: 123.125.21.156:59420 - "GET /xxl-job-admin/ HTTP/1.1" 404 Not Found
  3245. INFO: 123.125.21.156:59436 - "GET /xxl/ HTTP/1.1" 404 Not Found
  3246. INFO: 123.125.21.156:39960 - "GET /admin/ HTTP/1.1" 404 Not Found
  3247. INFO: 123.125.21.156:39962 - "GET /login/ HTTP/1.1" 404 Not Found
  3248. INFO: 123.125.21.156:39974 - "GET /mail/ HTTP/1.1" 404 Not Found
  3249. INFO: 123.125.21.156:39466 - "GET /client/ HTTP/1.1" 404 Not Found
  3250. INFO: 123.125.21.156:39468 - "GET /blog/ HTTP/1.1" 404 Not Found
  3251. INFO: 123.125.21.156:39472 - "GET /old/ HTTP/1.1" 404 Not Found
  3252. INFO: 123.125.21.156:32842 - "GET /email/ HTTP/1.1" 404 Not Found
  3253. INFO: 123.125.21.156:32848 - "GET /office/ HTTP/1.1" 404 Not Found
  3254. INFO: 123.125.21.156:32860 - "GET /oa/ HTTP/1.1" 404 Not Found
  3255. INFO: 123.125.21.156:32862 - "GET /crm/ HTTP/1.1" 404 Not Found
  3256. INFO: 123.125.21.156:32864 - "GET /stack/ HTTP/1.1" 404 Not Found
  3257. INFO: 123.125.21.156:32876 - "GET /dashboard/ HTTP/1.1" 404 Not Found
  3258. INFO: 123.125.21.156:40424 - "GET /cms/ HTTP/1.1" 404 Not Found
  3259. INFO: 123.125.21.156:40430 - "GET /news/ HTTP/1.1" 404 Not Found
  3260. INFO: 123.125.21.156:40440 - "GET /user/ HTTP/1.1" 404 Not Found
  3261. INFO: 123.125.21.156:40454 - "GET /member/ HTTP/1.1" 404 Not Found
  3262. INFO: 123.125.21.156:53868 - "GET /forum/ HTTP/1.1" 404 Not Found
  3263. INFO: 123.125.21.156:53880 - "GET /mobile/ HTTP/1.1" 404 Not Found
  3264. INFO: 123.125.21.156:53886 - "GET /app/ HTTP/1.1" 404 Not Found
  3265. INFO: 123.125.21.156:53898 - "GET /home/ HTTP/1.1" 404 Not Found
  3266. INFO: 123.125.21.156:50586 - "GET /cas/ HTTP/1.1" 404 Not Found
  3267. INFO: 123.125.21.156:50598 - "GET /portal/ HTTP/1.1" 404 Not Found
  3268. INFO: 123.125.21.156:50604 - "GET /sys/ HTTP/1.1" 404 Not Found
  3269. WARNING: Invalid HTTP request received.
  3270. WARNING: Invalid HTTP request received.
  3271. WARNING: Invalid HTTP request received.
  3272. WARNING: Invalid HTTP request received.
  3273. WARNING: Invalid HTTP request received.
  3274. WARNING: Invalid HTTP request received.
  3275. WARNING: Invalid HTTP request received.
  3276. INFO: 123.160.223.75:22350 - "GET / HTTP/1.1" 404 Not Found
  3277. WARNING: Invalid HTTP request received.
  3278. WARNING: Invalid HTTP request received.
  3279. INFO: 192.168.50.201:52519 - "GET / HTTP/1.1" 404 Not Found
  3280. INFO: 192.168.50.201:52519 - "GET /favicon.ico HTTP/1.1" 404 Not Found
  3281. INFO: 192.168.50.201:52774 - "GET /analysis/time HTTP/1.1" 405 Method Not Allowed
  3282. INFO: 192.168.50.201:62189 - "GET /analysis/time/endTime%3A%20%222024-07-02%2000%3A00%3A00%22%2C%20mesureNameList%3A%20%5B%22gearbox_input_end_radial_vibration%22%5D%2C%20startTime%3A%20%222024-07-01%2000%3A00%3A00%22%2C%20windCode%3A%20%22SKF001%22%2C%20windTurbineNumberList%3A%20%5B%22F004%22%5D%2C HTTP/1.1" 404 Not Found
  3283. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  3284. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  3285. INFO: 111.203.200.206:12086 - "POST /analysis/time HTTP/1.1" 200 OK
  3286. INFO: 192.168.50.201:62763 - "GET /analysis/time?id=237 HTTP/1.1" 405 Method Not Allowed
  3287. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  3288. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  3289. INFO: 111.203.200.206:42737 - "POST /analysis/time HTTP/1.1" 200 OK
  3290. INFO: 192.168.50.201:54764 - "GET /analysis/time HTTP/1.1" 405 Method Not Allowed
  3291. INFO: 192.168.50.201:56162 - "GET / HTTP/1.1" 404 Not Found
  3292. INFO: 192.168.50.201:56810 - "POST / HTTP/1.1" 404 Not Found
  3293. INFO: 192.168.50.201:52154 - "POST /waveData/getMesureData HTTP/1.1" 404 Not Found
  3294. INFO: 192.168.50.201:52154 - "POST /waveData/getMesureData HTTP/1.1" 404 Not Found
  3295. INFO: 192.168.50.201:52167 - "POST /waveData/getMesureData/ HTTP/1.1" 404 Not Found
  3296. INFO: 192.168.50.201:52167 - "POST /waveData/getMesureData/ HTTP/1.1" 404 Not Found
  3297. INFO: 192.168.50.201:52167 - "POST /waveData/getMesureData HTTP/1.1" 404 Not Found
  3298. INFO: 192.168.50.201:52175 - "POST /waveData/getMesureData HTTP/1.1" 404 Not Found
  3299. INFO: 192.168.50.201:58037 - "POST /waveData/getMesureData HTTP/1.1" 404 Not Found
  3300. INFO: 111.203.200.206:53398 - "POST /waveData/getMesureData HTTP/1.1" 404 Not Found
  3301. INFO: 192.168.50.201:63344 - "POST / HTTP/1.1" 404 Not Found
  3302. INFO: 192.168.50.201:58453 - "POST /waveData/getMesureData HTTP/1.1" 404 Not Found
  3303. INFO: 192.168.50.201:63418 - "GET /waveData/getMesureData HTTP/1.1" 404 Not Found
  3304. WARNING: Invalid HTTP request received.
  3305. WARNING: Invalid HTTP request received.
  3306. INFO: 223.113.128.164:36260 - "GET / HTTP/1.1" 404 Not Found
  3307. WARNING: Invalid HTTP request received.
  3308. WARNING: Invalid HTTP request received.
  3309. INFO: 52.80.13.3:47604 - "GET / HTTP/1.1" 404 Not Found
  3310. INFO: 52.80.13.3:47610 - "GET /favicon.ico HTTP/1.1" 404 Not Found
  3311. INFO: 52.80.13.3:47618 - "GET /sitemap.xml HTTP/1.1" 404 Not Found
  3312. INFO: 52.80.13.3:47616 - "GET /robots.txt HTTP/1.1" 404 Not Found
  3313. WARNING: Invalid HTTP request received.
  3314. INFO: 106.75.157.47:56180 - "POST /token HTTP/1.1" 404 Not Found
  3315. WARNING: Invalid HTTP request received.
  3316. WARNING: Invalid HTTP request received.
  3317. WARNING: Invalid HTTP request received.
  3318. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  3319. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  3320. INFO: 111.203.200.206:55344 - "POST /analysis/time HTTP/1.1" 200 OK
  3321. INFO: 192.168.50.235:60090 - "GET /analysis/time HTTP/1.0" 405 Method Not Allowed
  3322. INFO: 192.168.50.235:60092 - "GET /analysis/time HTTP/1.0" 405 Method Not Allowed
  3323. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  3324. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  3325. INFO: 192.168.50.235:60214 - "POST /analysis/time HTTP/1.0" 200 OK
  3326. WARNING: Invalid HTTP request received.
  3327. WARNING: Invalid HTTP request received.
  3328. WARNING: Invalid HTTP request received.
  3329. INFO: 152.32.234.97:59780 - "GET / HTTP/1.1" 404 Not Found
  3330. INFO: 152.32.234.97:44042 - "GET /favicon.ico HTTP/1.1" 404 Not Found
  3331. INFO: 152.32.234.97:44054 - "GET /robots.txt HTTP/1.1" 404 Not Found
  3332. INFO: 152.32.234.97:44070 - "GET /sitemap.xml HTTP/1.1" 404 Not Found
  3333. WARNING: Invalid HTTP request received.
  3334. WARNING: Invalid HTTP request received.
  3335. WARNING: Invalid HTTP request received.
  3336. INFO: 123.160.223.74:18517 - "GET / HTTP/1.1" 404 Not Found
  3337. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  3338. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  3339. INFO: 111.203.200.206:49323 - "POST /analysis/time HTTP/1.1" 200 OK
  3340. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  3341. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  3342. INFO: 111.203.200.206:3338 - "POST /analysis/frequency HTTP/1.1" 200 OK
  3343. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  3344. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  3345. INFO: 111.203.200.206:15824 - "POST /analysis/envelope HTTP/1.1" 200 OK
  3346. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  3347. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  3348. /data/source_code/CMS/cms_class_20241201.py:321: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  3349. fs=int(data['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  3350. 2024-07-01 00:00:14
  3351. 2024-07-01 00:00:27
  3352. 2024-07-01 02:00:12
  3353. 2024-07-01 02:00:24
  3354. 2024-07-01 07:14:15
  3355. 2024-07-01 07:14:28
  3356. 2024-07-01 08:01:29
  3357. 2024-07-01 08:03:27
  3358. 2024-07-01 10:48:04
  3359. 2024-07-01 10:48:16
  3360. 2024-07-01 12:00:24
  3361. 2024-07-01 12:01:40
  3362. 2024-07-01 14:00:04
  3363. 2024-07-01 14:01:06
  3364. 2024-07-01 14:59:38
  3365. 2024-07-01 15:31:49
  3366. 2024-07-01 16:02:33
  3367. 2024-07-01 16:05:14
  3368. 2024-07-01 18:47:32
  3369. 2024-07-01 18:47:45
  3370. 2024-07-01 20:00:10
  3371. 2024-07-01 20:01:11
  3372. 2024-07-01 22:03:33
  3373. 2024-07-01 22:04:59
  3374. INFO: 111.203.200.206:15846 - "POST /analysis/trend HTTP/1.1" 200 OK
  3375. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  3376. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  3377. INFO: 111.203.200.206:41994 - "POST /analysis/frequency HTTP/1.1" 200 OK
  3378. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  3379. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  3380. INFO: 111.203.200.206:55201 - "POST /analysis/time HTTP/1.1" 200 OK
  3381. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  3382. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  3383. INFO: 111.203.200.206:55215 - "POST /analysis/frequency HTTP/1.1" 200 OK
  3384. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  3385. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  3386. INFO: 111.203.200.206:50269 - "POST /analysis/time HTTP/1.1" 200 OK
  3387. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  3388. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  3389. INFO: 111.203.200.206:49286 - "POST /analysis/time HTTP/1.1" 200 OK
  3390. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  3391. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  3392. /data/source_code/CMS/cms_class_20241201.py:321: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  3393. fs=int(data['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  3394. 2024-07-01 00:00:14
  3395. 2024-07-01 00:00:27
  3396. 2024-07-01 02:00:12
  3397. 2024-07-01 02:00:24
  3398. 2024-07-01 07:14:15
  3399. 2024-07-01 07:14:28
  3400. 2024-07-01 08:01:29
  3401. 2024-07-01 08:03:27
  3402. 2024-07-01 10:48:04
  3403. 2024-07-01 10:48:16
  3404. 2024-07-01 12:00:24
  3405. 2024-07-01 12:01:40
  3406. 2024-07-01 14:00:04
  3407. 2024-07-01 14:01:06
  3408. 2024-07-01 14:59:38
  3409. 2024-07-01 15:31:49
  3410. 2024-07-01 16:02:33
  3411. 2024-07-01 16:05:14
  3412. 2024-07-01 18:47:32
  3413. 2024-07-01 18:47:45
  3414. 2024-07-01 20:00:10
  3415. 2024-07-01 20:01:11
  3416. 2024-07-01 22:03:33
  3417. 2024-07-01 22:04:59
  3418. INFO: 111.203.200.206:49294 - "POST /analysis/trend HTTP/1.1" 200 OK
  3419. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  3420. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  3421. INFO: 111.203.200.206:24308 - "POST /analysis/frequency HTTP/1.1" 200 OK
  3422. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  3423. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  3424. INFO: 111.203.200.206:31400 - "POST /analysis/envelope HTTP/1.1" 200 OK
  3425. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  3426. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  3427. INFO: 111.203.200.206:49317 - "POST /analysis/time HTTP/1.1" 200 OK
  3428. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  3429. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  3430. INFO: 111.203.200.206:32031 - "POST /analysis/frequency HTTP/1.1" 200 OK
  3431. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  3432. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  3433. INFO: 111.203.200.206:31416 - "POST /analysis/envelope HTTP/1.1" 200 OK
  3434. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  3435. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  3436. INFO: 111.203.200.206:49330 - "POST /analysis/envelope HTTP/1.1" 200 OK
  3437. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  3438. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  3439. INFO: 111.203.200.206:28801 - "POST /analysis/envelope HTTP/1.1" 200 OK
  3440. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  3441. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  3442. INFO: 111.203.200.206:33523 - "POST /analysis/envelope HTTP/1.1" 200 OK
  3443. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  3444. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  3445. INFO: 111.203.200.206:42965 - "POST /analysis/time HTTP/1.1" 200 OK
  3446. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  3447. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  3448. INFO: 111.203.200.206:19058 - "POST /analysis/frequency HTTP/1.1" 200 OK
  3449. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  3450. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  3451. INFO: 111.203.200.206:23317 - "POST /analysis/envelope HTTP/1.1" 200 OK
  3452. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  3453. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  3454. /data/source_code/CMS/cms_class_20241201.py:321: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  3455. fs=int(data['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  3456. 2024-07-01 00:00:14
  3457. 2024-07-01 00:00:27
  3458. 2024-07-01 02:00:12
  3459. 2024-07-01 02:00:24
  3460. 2024-07-01 07:14:15
  3461. 2024-07-01 07:14:28
  3462. 2024-07-01 08:01:29
  3463. 2024-07-01 08:03:27
  3464. 2024-07-01 10:48:04
  3465. 2024-07-01 10:48:16
  3466. 2024-07-01 12:00:24
  3467. 2024-07-01 12:01:40
  3468. 2024-07-01 14:00:04
  3469. 2024-07-01 14:01:06
  3470. 2024-07-01 14:59:38
  3471. 2024-07-01 15:31:49
  3472. 2024-07-01 16:02:33
  3473. 2024-07-01 16:05:14
  3474. 2024-07-01 18:47:32
  3475. 2024-07-01 18:47:45
  3476. 2024-07-01 20:00:10
  3477. 2024-07-01 20:01:11
  3478. 2024-07-01 22:03:33
  3479. 2024-07-01 22:04:59
  3480. INFO: 111.203.200.206:43878 - "POST /analysis/trend HTTP/1.1" 200 OK
  3481. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  3482. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  3483. INFO: 111.203.200.206:43900 - "POST /analysis/time HTTP/1.1" 200 OK
  3484. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  3485. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  3486. INFO: 111.203.200.206:20335 - "POST /analysis/time HTTP/1.1" 200 OK
  3487. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  3488. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  3489. INFO: 111.203.200.206:32186 - "POST /analysis/frequency HTTP/1.1" 200 OK
  3490. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  3491. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  3492. INFO: 111.203.200.206:32841 - "POST /analysis/frequency HTTP/1.1" 200 OK
  3493. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  3494. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  3495. INFO: 111.203.200.206:23731 - "POST /analysis/time HTTP/1.1" 200 OK
  3496. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  3497. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  3498. INFO: 111.203.200.206:22861 - "POST /analysis/envelope HTTP/1.1" 200 OK
  3499. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  3500. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  3501. INFO: 111.203.200.206:14082 - "POST /analysis/envelope HTTP/1.1" 200 OK
  3502. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  3503. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  3504. INFO: 111.203.200.206:1614 - "POST /analysis/envelope HTTP/1.1" 200 OK
  3505. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  3506. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  3507. /data/source_code/CMS/cms_class_20241201.py:321: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  3508. fs=int(data['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  3509. 2024-07-01 00:00:14
  3510. 2024-07-01 00:00:27
  3511. 2024-07-01 02:00:12
  3512. 2024-07-01 02:00:24
  3513. 2024-07-01 07:14:15
  3514. 2024-07-01 07:14:28
  3515. 2024-07-01 08:01:29
  3516. 2024-07-01 08:03:27
  3517. 2024-07-01 10:48:04
  3518. 2024-07-01 10:48:16
  3519. 2024-07-01 12:00:24
  3520. 2024-07-01 12:01:40
  3521. 2024-07-01 14:00:04
  3522. 2024-07-01 14:01:06
  3523. 2024-07-01 14:59:38
  3524. 2024-07-01 15:31:49
  3525. 2024-07-01 16:02:33
  3526. 2024-07-01 16:05:14
  3527. 2024-07-01 18:47:32
  3528. 2024-07-01 18:47:45
  3529. 2024-07-01 20:00:10
  3530. 2024-07-01 20:01:11
  3531. 2024-07-01 22:03:33
  3532. 2024-07-01 22:04:59
  3533. INFO: 111.203.200.206:21360 - "POST /analysis/trend HTTP/1.1" 200 OK
  3534. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  3535. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  3536. INFO: 111.203.200.206:3449 - "POST /analysis/time HTTP/1.1" 200 OK
  3537. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  3538. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  3539. INFO: 111.203.200.206:20810 - "POST /analysis/frequency HTTP/1.1" 200 OK
  3540. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  3541. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  3542. INFO: 111.203.200.206:46449 - "POST /analysis/envelope HTTP/1.1" 200 OK
  3543. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  3544. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  3545. INFO: 111.203.200.206:3452 - "POST /analysis/time HTTP/1.1" 200 OK
  3546. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  3547. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  3548. /data/source_code/CMS/cms_class_20241201.py:321: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  3549. fs=int(data['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  3550. 2024-07-01 00:00:14
  3551. 2024-07-01 00:00:27
  3552. 2024-07-01 02:00:12
  3553. 2024-07-01 02:00:24
  3554. 2024-07-01 07:14:15
  3555. 2024-07-01 07:14:28
  3556. 2024-07-01 08:01:29
  3557. 2024-07-01 08:03:27
  3558. 2024-07-01 10:48:04
  3559. 2024-07-01 10:48:16
  3560. 2024-07-01 12:00:24
  3561. 2024-07-01 12:01:40
  3562. 2024-07-01 14:00:04
  3563. 2024-07-01 14:01:06
  3564. 2024-07-01 14:59:38
  3565. 2024-07-01 15:31:49
  3566. 2024-07-01 16:02:33
  3567. 2024-07-01 16:05:14
  3568. 2024-07-01 18:47:32
  3569. 2024-07-01 18:47:45
  3570. 2024-07-01 20:00:10
  3571. 2024-07-01 20:01:11
  3572. 2024-07-01 22:03:33
  3573. 2024-07-01 22:04:59
  3574. INFO: 111.203.200.206:16727 - "POST /analysis/trend HTTP/1.1" 200 OK
  3575. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  3576. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  3577. INFO: 111.203.200.206:44213 - "POST /analysis/frequency HTTP/1.1" 200 OK
  3578. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  3579. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  3580. INFO: 111.203.200.206:34842 - "POST /analysis/envelope HTTP/1.1" 200 OK
  3581. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  3582. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  3583. INFO: 111.203.200.206:9025 - "POST /analysis/envelope HTTP/1.1" 200 OK
  3584. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  3585. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  3586. INFO: 111.203.200.206:4094 - "POST /analysis/time HTTP/1.1" 200 OK
  3587. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  3588. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  3589. INFO: 111.203.200.206:51460 - "POST /analysis/frequency HTTP/1.1" 200 OK
  3590. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  3591. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  3592. INFO: 111.203.200.206:51060 - "POST /analysis/frequency HTTP/1.1" 200 OK
  3593. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  3594. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  3595. INFO: 111.203.200.206:51113 - "POST /analysis/frequency HTTP/1.1" 200 OK
  3596. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  3597. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  3598. INFO: 111.203.200.206:42953 - "POST /analysis/time HTTP/1.1" 200 OK
  3599. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  3600. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  3601. INFO: 111.203.200.206:39330 - "POST /analysis/frequency HTTP/1.1" 200 OK
  3602. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  3603. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  3604. /data/source_code/CMS/cms_class_20241201.py:321: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  3605. fs=int(data['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  3606. 2024-07-01 00:00:14
  3607. 2024-07-01 00:00:27
  3608. 2024-07-01 02:00:12
  3609. 2024-07-01 02:00:24
  3610. 2024-07-01 07:14:15
  3611. 2024-07-01 07:14:28
  3612. 2024-07-01 08:01:29
  3613. 2024-07-01 08:03:27
  3614. 2024-07-01 10:48:04
  3615. 2024-07-01 10:48:16
  3616. 2024-07-01 12:00:24
  3617. 2024-07-01 12:01:40
  3618. 2024-07-01 14:00:04
  3619. 2024-07-01 14:01:06
  3620. 2024-07-01 14:59:38
  3621. 2024-07-01 15:31:49
  3622. 2024-07-01 16:02:33
  3623. 2024-07-01 16:05:14
  3624. 2024-07-01 18:47:32
  3625. 2024-07-01 18:47:45
  3626. 2024-07-01 20:00:10
  3627. 2024-07-01 20:01:11
  3628. 2024-07-01 22:03:33
  3629. 2024-07-01 22:04:59
  3630. INFO: 111.203.200.206:14666 - "POST /analysis/trend HTTP/1.1" 200 OK
  3631. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  3632. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  3633. INFO: 111.203.200.206:14697 - "POST /analysis/envelope HTTP/1.1" 200 OK
  3634. WARNING: Invalid HTTP request received.
  3635. WARNING: Invalid HTTP request received.
  3636. WARNING: Invalid HTTP request received.
  3637. INFO: 80.66.83.114:59414 - "CONNECT hotmail-com.olc.protection.outlook.com%3A25 HTTP/1.1" 404 Not Found
  3638. WARNING: Invalid HTTP request received.
  3639. WARNING: Invalid HTTP request received.
  3640. INFO: 80.66.83.114:36274 - "CONNECT hotmail-com.olc.protection.outlook.com%3A25 HTTP/1.1" 404 Not Found
  3641. WARNING: Invalid HTTP request received.
  3642. WARNING: Invalid HTTP request received.
  3643. INFO: 80.66.83.114:36734 - "CONNECT 85.206.160.115%3A80 HTTP/1.1" 404 Not Found
  3644. WARNING: Invalid HTTP request received.
  3645. WARNING: Invalid HTTP request received.
  3646. INFO: 101.36.106.135:44882 - "GET / HTTP/1.1" 404 Not Found
  3647. WARNING: Invalid HTTP request received.
  3648. WARNING: Invalid HTTP request received.
  3649. INFO: 106.75.65.166:50916 - "GET / HTTP/1.1" 404 Not Found
  3650. INFO: 106.75.65.166:50928 - "GET /favicon.ico HTTP/1.1" 404 Not Found
  3651. INFO: 106.75.65.166:50934 - "GET /sitemap.xml HTTP/1.1" 404 Not Found
  3652. INFO: 106.75.65.166:50932 - "GET /robots.txt HTTP/1.1" 404 Not Found
  3653. WARNING: Invalid HTTP request received.
  3654. WARNING: Invalid HTTP request received.
  3655. INFO: 106.75.190.150:48444 - "POST /token HTTP/1.1" 404 Not Found
  3656. WARNING: Invalid HTTP request received.
  3657. WARNING: Invalid HTTP request received.
  3658. WARNING: Invalid HTTP request received.
  3659. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  3660. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  3661. INFO: 111.203.200.206:10058 - "POST /analysis/time HTTP/1.1" 200 OK
  3662. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  3663. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  3664. INFO: 111.203.200.206:32849 - "POST /analysis/frequency HTTP/1.1" 200 OK
  3665. WARNING: Invalid HTTP request received.
  3666. INFO: 87.236.176.43:43253 - "GET / HTTP/1.1" 404 Not Found
  3667. WARNING: Invalid HTTP request received.
  3668. WARNING: Invalid HTTP request received.
  3669. WARNING: Invalid HTTP request received.
  3670. WARNING: Invalid HTTP request received.
  3671. WARNING: Invalid HTTP request received.
  3672. WARNING: Invalid HTTP request received.
  3673. WARNING: Invalid HTTP request received.
  3674. INFO: 87.236.176.184:38871 - "GET / HTTP/1.1" 404 Not Found
  3675. WARNING: Invalid HTTP request received.
  3676. WARNING: Invalid HTTP request received.
  3677. WARNING: Invalid HTTP request received.
  3678. WARNING: Invalid HTTP request received.
  3679. WARNING: Invalid HTTP request received.
  3680. WARNING: Invalid HTTP request received.
  3681. WARNING: Invalid HTTP request received.
  3682. WARNING: Invalid HTTP request received.
  3683. WARNING: Invalid HTTP request received.
  3684. INFO: 101.36.97.187:60348 - "GET / HTTP/1.1" 404 Not Found
  3685. INFO: 101.36.97.187:36562 - "GET /favicon.ico HTTP/1.1" 404 Not Found
  3686. INFO: 101.36.97.187:36570 - "GET /robots.txt HTTP/1.1" 404 Not Found
  3687. INFO: 101.36.97.187:36586 - "GET /sitemap.xml HTTP/1.1" 404 Not Found
  3688. INFO: 113.141.85.182:47958 - "GET / HTTP/1.1" 404 Not Found
  3689. WARNING: Invalid HTTP request received.
  3690. INFO: 185.247.137.60:46887 - "GET / HTTP/1.1" 404 Not Found
  3691. WARNING: Invalid HTTP request received.
  3692. WARNING: Invalid HTTP request received.
  3693. INFO: 192.168.50.201:54782 - "GET /home/performance/assetssMag?id=195 HTTP/1.1" 404 Not Found
  3694. INFO: 192.168.50.201:52580 - "GET /favicon.ico HTTP/1.1" 404 Not Found
  3695. INFO: 192.168.50.201:52245 - "GET /login HTTP/1.1" 404 Not Found
  3696. INFO: 192.168.50.201:4451 - "GET /login HTTP/1.1" 404 Not Found
  3697. WARNING: Invalid HTTP request received.
  3698. INFO: 192.168.50.201:56055 - "GET /login HTTP/1.1" 404 Not Found
  3699. INFO: 192.168.50.201:56058 - "GET /login HTTP/1.1" 404 Not Found
  3700. INFO: 192.168.50.201:56521 - "GET /login HTTP/1.1" 404 Not Found
  3701. INFO: 192.168.50.201:65374 - "GET /home/cockpitManage HTTP/1.1" 404 Not Found
  3702. INFO: 192.168.50.201:65374 - "GET /favicon.ico HTTP/1.1" 404 Not Found
  3703. INFO: 192.168.50.201:64869 - "GET /login HTTP/1.1" 404 Not Found
  3704. INFO: 192.168.50.201:3643 - "GET /login HTTP/1.1" 404 Not Found
  3705. INFO: 192.168.50.201:3643 - "GET /login HTTP/1.1" 404 Not Found
  3706. INFO: 192.168.50.201:64874 - "GET /login HTTP/1.1" 404 Not Found
  3707. INFO: 192.168.50.201:3303 - "GET /login HTTP/1.1" 404 Not Found
  3708. INFO: 192.168.50.201:64900 - "GET / HTTP/1.1" 404 Not Found
  3709. INFO: 192.168.50.201:65088 - "GET /login HTTP/1.1" 404 Not Found
  3710. INFO: 192.168.50.201:5111 - "GET /login HTTP/1.1" 404 Not Found
  3711. INFO: 192.168.50.201:5111 - "GET /login HTTP/1.1" 404 Not Found
  3712. INFO: 192.168.50.201:65113 - "GET /login HTTP/1.1" 404 Not Found
  3713. INFO: 192.168.50.201:65113 - "GET /login HTTP/1.1" 404 Not Found
  3714. INFO: 192.168.50.201:65120 - "GET /login HTTP/1.1" 404 Not Found
  3715. INFO: 192.168.50.201:65122 - "GET /login HTTP/1.1" 404 Not Found
  3716. INFO: 192.168.50.201:65122 - "GET /login HTTP/1.1" 404 Not Found
  3717. INFO: 192.168.50.201:5716 - "GET /login HTTP/1.1" 404 Not Found
  3718. INFO: 192.168.50.201:5716 - "GET /login HTTP/1.1" 404 Not Found
  3719. INFO: 192.168.50.201:65157 - "GET /login HTTP/1.1" 404 Not Found
  3720. INFO: 192.168.50.201:9291 - "GET /login HTTP/1.1" 404 Not Found
  3721. INFO: 192.168.50.201:65347 - "GET /login HTTP/1.1" 404 Not Found
  3722. INFO: 192.168.50.201:65347 - "GET /login HTTP/1.1" 404 Not Found
  3723. INFO: 192.168.50.201:65427 - "GET /login HTTP/1.1" 404 Not Found
  3724. INFO: 192.168.50.201:10507 - "GET /login HTTP/1.1" 404 Not Found
  3725. WARNING: Invalid HTTP request received.
  3726. INFO: 87.236.176.170:54439 - "GET / HTTP/1.1" 404 Not Found
  3727. WARNING: Invalid HTTP request received.
  3728. WARNING: Invalid HTTP request received.
  3729. WARNING: Invalid HTTP request received.
  3730. WARNING: Invalid HTTP request received.
  3731. WARNING: Invalid HTTP request received.
  3732. WARNING: Invalid HTTP request received.
  3733. WARNING: Invalid HTTP request received.
  3734. WARNING: Invalid HTTP request received.
  3735. INFO: 185.247.137.218:56495 - "GET / HTTP/1.1" 404 Not Found
  3736. WARNING: Invalid HTTP request received.
  3737. WARNING: Invalid HTTP request received.
  3738. WARNING: Invalid HTTP request received.
  3739. INFO: 80.66.83.114:40114 - "CONNECT hotmail-com.olc.protection.outlook.com%3A25 HTTP/1.1" 404 Not Found
  3740. WARNING: Invalid HTTP request received.
  3741. WARNING: Invalid HTTP request received.
  3742. INFO: 80.66.83.114:45622 - "CONNECT hotmail-com.olc.protection.outlook.com%3A25 HTTP/1.1" 404 Not Found
  3743. WARNING: Invalid HTTP request received.
  3744. WARNING: Invalid HTTP request received.
  3745. INFO: 80.66.83.114:58112 - "CONNECT 85.206.160.115%3A80 HTTP/1.1" 404 Not Found
  3746. INFO: 111.203.200.198:25880 - "POST /analysis/time HTTP/1.1" 200 OK
  3747. INFO: 111.203.200.198:37690 - "POST /analysis/frequency HTTP/1.1" 200 OK
  3748. INFO: 111.203.200.198:41393 - "POST /analysis/time HTTP/1.1" 200 OK
  3749. INFO: 111.203.200.198:45347 - "POST /analysis/time HTTP/1.1" 200 OK
  3750. INFO: 111.203.200.198:50957 - "POST /analysis/time HTTP/1.1" 200 OK
  3751. INFO: 111.203.200.198:30823 - "POST /analysis/frequency HTTP/1.1" 200 OK
  3752. INFO: 111.203.200.198:42127 - "POST /analysis/time HTTP/1.1" 200 OK
  3753. INFO: 111.203.200.198:14868 - "POST /analysis/time HTTP/1.1" 200 OK
  3754. INFO: 111.203.200.198:8639 - "POST /analysis/time HTTP/1.1" 200 OK
  3755. INFO: 111.203.200.198:19267 - "POST /analysis/frequency HTTP/1.1" 200 OK
  3756. INFO: 111.203.200.198:41006 - "POST /analysis/time HTTP/1.1" 200 OK
  3757. INFO: 111.203.200.198:35682 - "POST /analysis/time HTTP/1.1" 200 OK
  3758. INFO: 111.203.200.198:38506 - "POST /analysis/time HTTP/1.1" 200 OK
  3759. INFO: 111.203.200.198:25898 - "POST /analysis/frequency HTTP/1.1" 200 OK
  3760. INFO: 111.203.200.198:13691 - "POST /analysis/frequency HTTP/1.1" 200 OK
  3761. INFO: 111.203.200.198:32525 - "POST /analysis/time HTTP/1.1" 200 OK
  3762. INFO: 111.203.200.198:40221 - "POST /analysis/time HTTP/1.1" 200 OK
  3763. INFO: 111.203.200.198:23427 - "POST /analysis/time HTTP/1.1" 200 OK
  3764. INFO: 111.203.200.198:54099 - "POST /analysis/frequency HTTP/1.1" 200 OK
  3765. INFO: 111.203.200.198:5032 - "POST /analysis/frequency HTTP/1.1" 200 OK
  3766. INFO: 111.203.200.198:37463 - "POST /analysis/envelope HTTP/1.1" 200 OK
  3767. INFO: 111.203.200.198:37498 - "POST /analysis/frequency HTTP/1.1" 200 OK
  3768. INFO: 111.203.200.198:22746 - "POST /analysis/time HTTP/1.1" 200 OK
  3769. INFO: 111.203.200.198:22695 - "POST /analysis/frequency HTTP/1.1" 200 OK
  3770. INFO: 111.203.200.198:17841 - "POST /analysis/time HTTP/1.1" 200 OK
  3771. INFO: 111.203.200.198:2680 - "POST /analysis/frequency HTTP/1.1" 200 OK
  3772. INFO: 111.203.200.198:21944 - "POST /analysis/frequency HTTP/1.1" 200 OK
  3773. INFO: 111.203.200.198:22136 - "POST /analysis/envelope HTTP/1.1" 200 OK
  3774. INFO: 111.203.200.198:11194 - "POST /analysis/trend HTTP/1.1" 200 OK
  3775. INFO: 192.168.50.201:15975 - "GET /analysis/time HTTP/1.1" 405 Method Not Allowed
  3776. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  3777. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  3778. INFO: 192.168.50.235:51038 - "POST /analysis/time HTTP/1.0" 200 OK
  3779. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  3780. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  3781. INFO: 192.168.50.235:51062 - "POST /analysis/frequency HTTP/1.0" 200 OK
  3782. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  3783. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  3784. /data/source_code/CMS/cms_class_20241201.py:321: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  3785. fs=int(data['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  3786. 2024-07-01 00:00:14
  3787. 2024-07-01 00:00:27
  3788. 2024-07-01 02:00:12
  3789. 2024-07-01 02:00:24
  3790. 2024-07-01 07:14:15
  3791. 2024-07-01 07:14:28
  3792. 2024-07-01 08:01:29
  3793. 2024-07-01 08:03:27
  3794. 2024-07-01 10:48:04
  3795. 2024-07-01 10:48:16
  3796. 2024-07-01 12:00:24
  3797. 2024-07-01 12:01:40
  3798. 2024-07-01 14:00:04
  3799. 2024-07-01 14:01:06
  3800. 2024-07-01 14:59:38
  3801. 2024-07-01 15:31:49
  3802. 2024-07-01 16:02:33
  3803. 2024-07-01 16:05:14
  3804. 2024-07-01 18:47:32
  3805. 2024-07-01 18:47:45
  3806. 2024-07-01 20:00:10
  3807. 2024-07-01 20:01:11
  3808. 2024-07-01 22:03:33
  3809. 2024-07-01 22:04:59
  3810. INFO: 192.168.50.235:51066 - "POST /analysis/trend HTTP/1.0" 200 OK
  3811. /data/source_code/CMS/cms_class_20241201.py:75: FutureWarning: Calling int on a single element Series is deprecated and will raise a TypeError in the future. Use int(ser.iloc[0]) instead
  3812. self.fs = int(self.data_filter['sampling_frequency'].apply(lambda x: x.split('_')[2]))*2.56
  3813. INFO: 192.168.50.235:51070 - "POST /analysis/envelope HTTP/1.0" 200 OK