-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome_das.log
executable file
·2452 lines (2452 loc) · 164 KB
/
home_das.log
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
20200709-13:35:44: Septic pump ran for 25.969881342 seconds with a max amperage of 21.594A and an average amperage of 11.180012540705327A
Parsing, Logging, Saving, and Graphing took 590.065536 ms
20200709-16:20:33: Septic pump ran for 184.842760706 seconds with a max amperage of 21.604A, an average amperage of 11.220911272169829A, and an average wattage of
Parsing, Logging, Saving, and Graphing took 2566.949411 ms
pi
Startup @ Mon Sep 7 21:33:46 2020. Current user is: pi
Startup @ Wed Sep 9 20:11:05 2020. Current user is: pi
20200909-20:11:05: Septic pump ran for 33.999284791 seconds with a max amperage of 11.248A, an average amperage of 11.033963937364899A, and an average wattage of 1324.075672483788W
Parsing, Logging, Saving, and Graphing took 1147.876839 ms
Startup @ Wed Sep 9 20:20:06 2020. Current user is: root
20201009-07:39:50: Septic pump ran for 185.188081353 seconds with a max amperage of 21.51A, an average amperage of 11.26A, and an average wattage of 1350.90W
Parsing, Logging, Saving, and Graphing took 4955.577741 ms
20201009-13:11:55: Septic pump ran for 183.383162532 seconds with a max amperage of 21.50A, an average amperage of 11.26A, and an average wattage of 1351.02W
Parsing, Logging, Saving, and Graphing took 4381.928107 ms
20201109-06:48:13: Septic pump ran for 175.831262119 seconds with a max amperage of 21.49A, an average amperage of 11.27A, and an average wattage of 1352.25W
Parsing, Logging, Saving, and Graphing took 4409.816391 ms
20201109-13:41:14: Septic pump ran for 182.617663158 seconds with a max amperage of 21.51A, an average amperage of 11.28A, and an average wattage of 1353.42W
Parsing, Logging, Saving, and Graphing took 4660.657945 ms
20201209-00:21:28: Septic pump ran for 186.618432687 seconds with a max amperage of 21.51A, an average amperage of 11.32A, and an average wattage of 1358.94W
Parsing, Logging, Saving, and Graphing took 4952.456461 ms
20201209-08:24:15: Septic pump ran for 183.98431439 seconds with a max amperage of 21.51A, an average amperage of 11.28A, and an average wattage of 1353.89W
Parsing, Logging, Saving, and Graphing took 5010.040293 ms
20201209-13:56:58: Septic pump ran for 181.347402208 seconds with a max amperage of 21.57A, an average amperage of 11.27A, and an average wattage of 1352.18W
Parsing, Logging, Saving, and Graphing took 5095.194078 ms
20201309-00:59:18: Septic pump ran for 189.450390995 seconds with a max amperage of 21.55A, an average amperage of 11.31A, and an average wattage of 1357.09W
Parsing, Logging, Saving, and Graphing took 5441.150548 ms
20201309-13:02:32: Septic pump ran for 181.436028042 seconds with a max amperage of 21.57A, an average amperage of 11.26A, and an average wattage of 1350.83W
Parsing, Logging, Saving, and Graphing took 5361.727784 ms
Startup @ Sun Sep 13 20:17:41 2020. Current user is: root
Startup @ Fri Sep 25 19:16:07 2020. Current user is: root
20202609-09:45:37: Septic pump ran for 189.318491422 seconds with a max amperage of 21.56A, an average amperage of 11.27A, and an average wattage of 1352.26W
Parsing, Logging, Saving, and Graphing took 4719.236797 ms
Startup @ Sat Sep 26 22:00:58 2020. Current user is: pi
Startup @ Sat Sep 26 22:04:35 2020. Current user is: pi
Startup @ Sat Sep 26 22:12:58 2020. Current user is: pi
20200926-22:24:19: Dosing pump ran for 22.99 seconds, pumped 16.67 gallons with a max amperage of 21.60A, an average amperage of 11.23A, and an average wattage of 1347.36W
Startup @ Sat Sep 26 22:28:51 2020. Current user is: pi
Startup @ Sun Sep 27 07:56:23 2020. Current user is: pi
20200927-07:57:54: Dosing pump ran for 27.95 seconds, pumped 20.26 gallons with a max amperage of 21.56A, an average amperage of 11.24A, and an average wattage of 1348.70W
The average time between samples is: 898085.8429475849ns, std dev is: 6381.632198779775ns, it should be 33333333ns
Parsing, Logging, Saving, and Graphing took 1871.069176 ms
20200927-09:35:00: Dosing pump ran for 180.54 seconds, pumped 130.89 gallons with a max amperage of 21.55A, an average amperage of 11.25A, and an average wattage of 1350.39W
The average time between samples is: 899067.2716946367ns, std dev is: 32945.125627999776ns, it should be 33333333ns
Parsing, Logging, Saving, and Graphing took 7464.159869 ms
Startup @ Sun Sep 27 15:04:11 2020. Current user is: pi
Startup @ Mon Sep 28 06:32:38 2020. Current user is: root
Startup @ Mon Sep 28 17:14:03 2020. Current user is: pi
Startup @ Mon Sep 28 17:19:44 2020. Current user is: root
Startup @ Mon Sep 28 17:26:25 2020. Current user is: root
Starting Data Monitoring...
Startup @ Mon Sep 28 21:19:31 2020. Current user is: pi
Startup @ Mon Sep 28 21:19:44 2020. Current user is: pi
Starting Data Monitoring...
Startup @ Mon Sep 28 21:22:30 2020. Current user is: pi
Starting Data Monitoring...
Startup @ Mon Sep 28 21:25:10 2020. Current user is: pi
Starting Data Monitoring...
Startup @ Mon Sep 28 21:26:10 2020. Current user is: pi
Starting Data Monitoring...
Startup @ Mon Sep 28 21:28:44 2020. Current user is: pi
Starting Data Monitoring...
Startup @ Mon Sep 28 21:30:37 2020. Current user is: pi
Starting Data Monitoring...
Startup @ Tue Sep 29 17:04:54 2020. Current user is: root
Starting Data Monitoring...
20200930-08:01:38: Dosing pump ran for 191.79 seconds, pumped 126.25 gallons with a max amperage of 21.53A, an average amperage of 11.26A, and an average wattage of 1350.84W
The average time between samples is: 9235676.03419215ns, std dev is: 5855.312088376351ns, it should be 8333333ns
Parsing, Logging, Saving, and Graphing took 1371.659617 ms
20201001-06:59:37: Dosing pump ran for 181.52 seconds, pumped 118.81 gallons with a max amperage of 21.52A, an average amperage of 11.25A, and an average wattage of 1350.44W
The average time between samples is: 9235032.868430424ns, std dev is: 6698.615738227826ns, it should be 8333333ns
Parsing, Logging, Saving, and Graphing took 1317.524741 ms
Startup @ Thu Oct 1 20:16:22 2020. Current user is: root
Starting Data Monitoring...
Startup @ Thu Oct 1 20:27:46 2020. Current user is: piku
Startup @ Thu Oct 1 20:27:48 2020. Current user is: piku
Startup @ Thu Oct 1 20:35:37 2020. Current user is: root
Starting Data Monitoring...
Startup @ Thu Oct 1 20:41:40 2020. Current user is: piku
Starting Data Monitoring...
20201002-08:43:59: Dosing pump ran for 187.66 seconds, pumped 123.25 gallons with a max amperage of 21.52A, an average amperage of 11.25A, and an average wattage of 1350.27W
The average time between samples is: 9231905.367804782ns, std dev is: 18069.5489218224ns, it should be 8333333ns
Parsing, Logging, Saving, and Graphing took 1858.108107 ms
20201003-01:41:03: Dosing pump ran for 168.78 seconds, pumped 109.56 gallons with a max amperage of 21.53A, an average amperage of 11.31A, and an average wattage of 1357.27W
The average time between samples is: 9234308.152330926ns, std dev is: 5775.816865990755ns, it should be 8333333ns
Parsing, Logging, Saving, and Graphing took 1672.053429 ms
Startup @ Sat Oct 3 10:10:35 2020. Current user is: piku
Starting Data Monitoring...
Startup @ Sat Oct 3 10:11:07 2020. Current user is: piku
Starting Data Monitoring...
Startup @ Sat Oct 3 10:11:24 2020. Current user is: pi
Maximum Data rate is: 1114.35 hz
'DAQ' object has no attribute 'data_rate_hz'
Startup @ Sat Oct 3 10:13:49 2020. Current user is: pi
Maximum Data rate is: 1101.93 hz
'DAQ' object has no attribute 'data_rate_hz'
Graceful Shutdown @ Sat Oct 3 10:13:49 2020
Startup @ Sat Oct 3 10:14:47 2020. Current user is: pi
Maximum Data rate is: 1123.72 hz
'DAQ' object has no attribute 'data_rate_hz'
Graceful Shutdown @ Sat Oct 3 10:14:47 2020
Startup @ Sat Oct 3 10:16:23 2020. Current user is: pi
Maximum Data rate is: 1120.55 hz
Monitoring data at 120 sample(s) per second
Amperage conversion factor is: 2.0
Starting Data Monitoring...
'DAQ' object has no attribute 'has_time_passed'
Graceful Shutdown @ Sat Oct 3 10:16:23 2020
Startup @ Sat Oct 3 10:16:41 2020. Current user is: piku
Starting Data Monitoring...
Startup @ Sat Oct 3 15:11:01 2020. Current user is: pi
Maximum Data rate is: 1129.44 hz
Monitoring data at 120 sample(s) per second
Amperage conversion factor is: 2.0
Starting Data Monitoring...
list index out of range
Graceful Shutdown @ Sat Oct 3 15:11:03 2020
Startup @ Sat Oct 3 15:11:06 2020. Current user is: piku
Startup @ Sat Oct 3 15:11:09 2020. Current user is: piku
Starting Data Monitoring...
Startup @ Sat Oct 3 15:22:26 2020. Current user is: piku
Startup @ Sat Oct 3 15:22:30 2020. Current user is: piku
Starting Data Monitoring...
Startup @ Sat Oct 3 15:23:40 2020. Current user is: pi
Maximum Data rate is: 1127.14 hz
Monitoring data at 120 sample(s) per second
Amperage conversion factor is: 2.0
Starting Data Monitoring...
Startup @ Sun Oct 4 08:34:06 2020. Current user is: pi
Maximum Data rate is: 1128.56 hz
Monitoring data at 120 sample(s) per second
Amperage conversion factor is: 2.0
Starting Data Monitoring...
Graceful Shutdown @ Sun Oct 4 08:34:14 2020
Startup @ Sun Oct 4 08:39:16 2020. Current user is: piku
Maximum Data rate is: 1125.30 hz
Monitoring data at 120 sample(s) per second
Amperage conversion factor is: 2.0
Starting Data Monitoring...
Startup @ Sun Oct 4 19:07:09 2020. Current user is: pi
module 'piplates.DAQC2plate' has no attribute 'fastGetADC'
Graceful Shutdown @ Sun Oct 4 19:07:09 2020
Startup @ Sun Oct 4 19:11:49 2020. Current user is: pi
module 'piplates.DAQC2plate' has no attribute 'fastGetADC'
Graceful Shutdown @ Sun Oct 4 19:11:49 2020
Startup @ Sun Oct 4 21:03:03 2020. Current user is: pi
Maximum Data rate is: 1139.76 hz
Monitoring data at 120 sample(s) per second
Amperage conversion factor is: 2.0
Starting Data Monitoring...
Graceful Shutdown @ Sun Oct 4 21:03:10 2020
Startup @ Sun Oct 4 21:03:52 2020. Current user is: pi
Maximum Data rate is: 1086.31 hz
Monitoring data at 120 sample(s) per second
Amperage conversion factor is: 2.0
Starting Data Monitoring...
Graceful Shutdown @ Sun Oct 4 21:04:10 2020
Startup @ Sun Oct 4 21:16:32 2020. Current user is: pi
Maximum Data rate is: 2481.43 hz
Monitoring data at 120 sample(s) per second
Amperage conversion factor is: 2.0
Starting Data Monitoring...
Graceful Shutdown @ Sun Oct 4 21:18:42 2020
Startup @ Sun Oct 4 21:24:24 2020. Current user is: pi
Maximum Data rate is: 2597.19 hz
Monitoring data at 120 sample(s) per second
Amperage conversion factor is: 2.0
Starting Data Monitoring...
Graceful Shutdown @ Sun Oct 4 21:24:45 2020
Startup @ Sun Oct 4 21:25:45 2020. Current user is: pi
Maximum Data rate is: 2647.28 hz
Monitoring data at 120 sample(s) per second
Amperage conversion factor is: 2.0
Starting Data Monitoring...
Graceful Shutdown @ Sun Oct 4 21:26:09 2020
Startup @ Sun Oct 4 21:27:26 2020. Current user is: piku
Maximum Data rate is: 2627.32 hz
Monitoring data at 120 sample(s) per second
Amperage conversion factor is: 2.0
Starting Data Monitoring...
20201005-08:24:12: Dosing pump ran for 184.90 seconds, pumped 121.25 gallons with a max amperage of 21.64A, an average amperage of 11.31A, and an average wattage of 1357.37W
The average time between samples is: 8731148.534614658ns, std dev is: 7876.667430557722ns, it should be 8333333ns
Parsing, Logging, Saving, and Graphing took 1776.337924 ms
20201006-08:47:01: Dosing pump ran for 191.49 seconds, pumped 126.03 gallons with a max amperage of 21.64A, an average amperage of 11.31A, and an average wattage of 1357.28W
The average time between samples is: 8729460.258490996ns, std dev is: 7493.671587276837ns, it should be 8333333ns
Parsing, Logging, Saving, and Graphing took 1935.596189 ms
20201007-09:27:05: Dosing pump ran for 182.60 seconds, pumped 119.59 gallons with a max amperage of 21.64A, an average amperage of 11.31A, and an average wattage of 1356.98W
The average time between samples is: 8729522.078261701ns, std dev is: 6040.085435838836ns, it should be 8333333ns
Parsing, Logging, Saving, and Graphing took 1693.577123 ms
20201008-11:34:20: Dosing pump ran for 180.72 seconds, pumped 118.22 gallons with a max amperage of 21.64A, an average amperage of 11.31A, and an average wattage of 1356.69W
The average time between samples is: 8728536.500941893ns, std dev is: 6737.906847657769ns, it should be 8333333ns
Parsing, Logging, Saving, and Graphing took 1758.78277 ms
20201009-09:21:41: Dosing pump ran for 181.42 seconds, pumped 118.73 gallons with a max amperage of 21.64A, an average amperage of 11.31A, and an average wattage of 1357.02W
The average time between samples is: 8730273.371992301ns, std dev is: 7913.862111957048ns, it should be 8333333ns
Parsing, Logging, Saving, and Graphing took 2170.563934 ms
20201010-20:32:32: Dosing pump ran for 182.09 seconds, pumped 119.22 gallons with a max amperage of 21.64A, an average amperage of 11.31A, and an average wattage of 1357.45W
The average time between samples is: 8728048.782954654ns, std dev is: 6574.500451043391ns, it should be 8333333ns
Parsing, Logging, Saving, and Graphing took 2152.779082 ms
20201011-14:59:37: Dosing pump ran for 187.08 seconds, pumped 122.84 gallons with a max amperage of 21.64A, an average amperage of 11.34A, and an average wattage of 1361.28W
The average time between samples is: 8727991.462722776ns, std dev is: 23992.093897430583ns, it should be 8333333ns
Parsing, Logging, Saving, and Graphing took 1977.903871 ms
20201011-21:37:23: Dosing pump ran for 183.65 seconds, pumped 120.35 gallons with a max amperage of 21.64A, an average amperage of 11.31A, and an average wattage of 1357.56W
The average time between samples is: 8729449.542282645ns, std dev is: 7053.608119523614ns, it should be 8333333ns
Parsing, Logging, Saving, and Graphing took 1791.900897 ms
20201012-06:33:36: Dosing pump ran for 188.69 seconds, pumped 124.00 gallons with a max amperage of 21.64A, an average amperage of 11.30A, and an average wattage of 1356.30W
The average time between samples is: 8729397.558850745ns, std dev is: 5310.953881004019ns, it should be 8333333ns
Parsing, Logging, Saving, and Graphing took 1979.627464 ms
20201013-07:01:32: Dosing pump ran for 182.02 seconds, pumped 119.17 gallons with a max amperage of 21.64A, an average amperage of 11.31A, and an average wattage of 1357.24W
The average time between samples is: 8729694.441103118ns, std dev is: 7135.1788328127695ns, it should be 8333333ns
Parsing, Logging, Saving, and Graphing took 1901.671357 ms
20201014-06:20:23: Dosing pump ran for 195.22 seconds, pumped 128.73 gallons with a max amperage of 21.64A, an average amperage of 11.31A, and an average wattage of 1357.08W
The average time between samples is: 8730673.521400778ns, std dev is: 5644.337121266625ns, it should be 8333333ns
Parsing, Logging, Saving, and Graphing took 1938.938981 ms
20201015-06:40:14: Dosing pump ran for 188.64 seconds, pumped 123.97 gallons with a max amperage of 21.64A, an average amperage of 11.31A, and an average wattage of 1357.46W
The average time between samples is: 8728547.908194901ns, std dev is: 6815.749548033957ns, it should be 8333333ns
Parsing, Logging, Saving, and Graphing took 1990.739733 ms
20201015-22:19:25: Dosing pump ran for 183.77 seconds, pumped 120.43 gallons with a max amperage of 21.64A, an average amperage of 11.32A, and an average wattage of 1357.86W
The average time between samples is: 8727165.037803952ns, std dev is: 8572.056145374698ns, it should be 8333333ns
Parsing, Logging, Saving, and Graphing took 1943.610212 ms
20201016-20:49:04: Dosing pump ran for 181.46 seconds, pumped 118.76 gallons with a max amperage of 21.64A, an average amperage of 11.31A, and an average wattage of 1357.64W
The average time between samples is: 8731103.805745356ns, std dev is: 4684.223558972991ns, it should be 8333333ns
Parsing, Logging, Saving, and Graphing took 1928.632232 ms
20201017-12:31:01: Dosing pump ran for 180.09 seconds, pumped 117.76 gallons with a max amperage of 21.64A, an average amperage of 11.31A, and an average wattage of 1357.77W
The average time between samples is: 8727338.98337695ns, std dev is: 7911.237200355441ns, it should be 8333333ns
Parsing, Logging, Saving, and Graphing took 1939.687811 ms
20201017-18:49:07: Dosing pump ran for 183.25 seconds, pumped 120.06 gallons with a max amperage of 21.64A, an average amperage of 11.31A, and an average wattage of 1356.94W
The average time between samples is: 8727413.654886644ns, std dev is: 8717.816635747648ns, it should be 8333333ns
Parsing, Logging, Saving, and Graphing took 2058.327821 ms
20201019-00:47:07: Dosing pump ran for 188.03 seconds, pumped 123.52 gallons with a max amperage of 21.64A, an average amperage of 11.36A, and an average wattage of 1362.90W
The average time between samples is: 8730697.48611627ns, std dev is: 5910.297095254352ns, it should be 8333333ns
Parsing, Logging, Saving, and Graphing took 2040.694808 ms
20201019-17:59:31: Dosing pump ran for 5.92 seconds, pumped -8.51 gallons with a max amperage of 21.64A, an average amperage of 11.81A, and an average wattage of 1417.02W
The average time between samples is: 8729781.46085672ns, std dev is: 11421.403458050578ns, it should be 8333333ns
Parsing, Logging, Saving, and Graphing took 1494.07535 ms
20201019-17:59:38: Dosing pump ran for 174.66 seconds, pumped 113.83 gallons with a max amperage of 11.49A, an average amperage of 11.29A, and an average wattage of 1355.20W
The average time between samples is: 8730391.183804048ns, std dev is: 60486.92111762414ns, it should be 8333333ns
Parsing, Logging, Saving, and Graphing took 2092.463565 ms
20201021-02:31:29: Dosing pump ran for 180.81 seconds, pumped 118.28 gallons with a max amperage of 21.64A, an average amperage of 11.33A, and an average wattage of 1359.92W
The average time between samples is: 8729130.50202781ns, std dev is: 7475.787946750081ns, it should be 8333333ns
Parsing, Logging, Saving, and Graphing took 2109.509945 ms
20201021-16:09:23: Dosing pump ran for 179.25 seconds, pumped 117.15 gallons with a max amperage of 21.64A, an average amperage of 11.31A, and an average wattage of 1357.13W
The average time between samples is: 8728341.646846848ns, std dev is: 9762.855535223925ns, it should be 8333333ns
Parsing, Logging, Saving, and Graphing took 2052.369709 ms
20201022-21:05:32: Dosing pump ran for 169.26 seconds, pumped 109.92 gallons with a max amperage of 21.64A, an average amperage of 11.31A, and an average wattage of 1356.98W
The average time between samples is: 8727551.03661115ns, std dev is: 7737.396903451514ns, it should be 8333333ns
Parsing, Logging, Saving, and Graphing took 2130.17304 ms
20201023-18:31:52: Dosing pump ran for 182.27 seconds, pumped 119.34 gallons with a max amperage of 21.45A, an average amperage of 11.31A, and an average wattage of 1357.42W
The average time between samples is: 8727941.336414136ns, std dev is: 8968.356432996288ns, it should be 8333333ns
Parsing, Logging, Saving, and Graphing took 2187.6518 ms
20201025-11:47:13: Dosing pump ran for 184.51 seconds, pumped 120.97 gallons with a max amperage of 21.45A, an average amperage of 11.33A, and an average wattage of 1359.12W
The average time between samples is: 8729226.43660106ns, std dev is: 13630.93851721512ns, it should be 8333333ns
Parsing, Logging, Saving, and Graphing took 2134.115503 ms
20201025-16:44:02: Dosing pump ran for 185.46 seconds, pumped 121.66 gallons with a max amperage of 21.45A, an average amperage of 11.32A, and an average wattage of 1358.19W
The average time between samples is: 8730203.631578946ns, std dev is: 7751.810594130699ns, it should be 8333333ns
Parsing, Logging, Saving, and Graphing took 2179.436837 ms
20201026-05:26:48: Dosing pump ran for 51.14 seconds, pumped 24.27 gallons with a max amperage of 21.45A, an average amperage of 11.53A, and an average wattage of 1383.28W
The average time between samples is: 8732014.402903501ns, std dev is: 3944.6460732624646ns, it should be 8333333ns
Parsing, Logging, Saving, and Graphing took 1801.97721 ms
20201026-05:27:41: Dosing pump ran for 131.04 seconds, pumped 82.20 gallons with a max amperage of 11.49A, an average amperage of 11.25A, and an average wattage of 1350.09W
The average time between samples is: 8730011.711439803ns, std dev is: 5003.882729600427ns, it should be 8333333ns
Parsing, Logging, Saving, and Graphing took 2212.96231 ms
20201026-18:59:07: Dosing pump ran for 174.69 seconds, pumped 113.85 gallons with a max amperage of 21.45A, an average amperage of 11.32A, and an average wattage of 1357.99W
The average time between samples is: 8729936.975361088ns, std dev is: 4674.568293181224ns, it should be 8333333ns
Parsing, Logging, Saving, and Graphing took 2295.996997 ms
20201028-03:13:32: Dosing pump ran for 180.51 seconds, pumped 118.07 gallons with a max amperage of 21.45A, an average amperage of 11.36A, and an average wattage of 1363.52W
The average time between samples is: 8728054.686363636ns, std dev is: 8067.865558744311ns, it should be 8333333ns
Parsing, Logging, Saving, and Graphing took 2324.41347 ms
20201029-03:31:24: Dosing pump ran for 181.37 seconds, pumped 118.70 gallons with a max amperage of 21.45A, an average amperage of 11.35A, and an average wattage of 1362.17W
The average time between samples is: 8726544.634220276ns, std dev is: 7751.009873460214ns, it should be 8333333ns
Parsing, Logging, Saving, and Graphing took 2274.569762 ms
20201030-08:35:55: Dosing pump ran for 177.22 seconds, pumped 115.69 gallons with a max amperage of 21.45A, an average amperage of 11.37A, and an average wattage of 1364.64W
The average time between samples is: 8729826.973004926ns, std dev is: 7167.266679201936ns, it should be 8333333ns
Parsing, Logging, Saving, and Graphing took 2460.034872 ms
20201031-00:54:51: Dosing pump ran for 183.27 seconds, pumped 120.07 gallons with a max amperage of 21.64A, an average amperage of 11.41A, and an average wattage of 1369.55W
The average time between samples is: 8726527.036476191ns, std dev is: 8395.428307307833ns, it should be 8333333ns
Parsing, Logging, Saving, and Graphing took 2310.963252 ms
20201031-20:05:01: Dosing pump ran for 185.77 seconds, pumped 121.88 gallons with a max amperage of 21.64A, an average amperage of 11.35A, and an average wattage of 1361.95W
The average time between samples is: 8731731.094058475ns, std dev is: 6235.471568330496ns, it should be 8333333ns
Parsing, Logging, Saving, and Graphing took 2388.056092 ms
20201101-17:52:01: Dosing pump ran for 182.41 seconds, pumped 119.45 gallons with a max amperage of 21.64A, an average amperage of 11.31A, and an average wattage of 1357.52W
The average time between samples is: 8728950.7231049ns, std dev is: 5074.60296330256ns, it should be 8333333ns
Parsing, Logging, Saving, and Graphing took 2508.363369 ms
20201101-23:43:04: Dosing pump ran for 187.66 seconds, pumped 123.25 gallons with a max amperage of 21.64A, an average amperage of 11.38A, and an average wattage of 1366.19W
The average time between samples is: 8726631.136864623ns, std dev is: 9022.20031951777ns, it should be 8333333ns
Parsing, Logging, Saving, and Graphing took 2503.202277 ms
20201102-06:42:26: Dosing pump ran for 0.03 seconds, pumped -12.78 gallons with a max amperage of 1.12A, an average amperage of 0.64A, and an average wattage of 76.80W
The average time between samples is: 8857829.5ns, std dev is: 1314.5ns, it should be 8333333ns
Parsing, Logging, Saving, and Graphing took 1882.811401 ms
20201102-06:42:28: Dosing pump ran for 0.01 seconds, pumped -12.79 gallons with a max amperage of 1.18A, an average amperage of 1.18A, and an average wattage of 141.55W
The average time between samples is: nanns, std dev is: nanns, it should be 8333333ns
Parsing, Logging, Saving, and Graphing took 2033.989564 ms
20201102-10:46:31: Dosing pump ran for 183.65 seconds, pumped 120.34 gallons with a max amperage of 21.64A, an average amperage of 11.32A, and an average wattage of 1358.51W
The average time between samples is: 8727217.625273263ns, std dev is: 7398.724415520664ns, it should be 8333333ns
Parsing, Logging, Saving, and Graphing took 2507.322114 ms
20201103-08:20:21: Dosing pump ran for 184.76 seconds, pumped 121.15 gallons with a max amperage of 21.64A, an average amperage of 11.33A, and an average wattage of 1359.54W
The average time between samples is: 8731625.774989367ns, std dev is: 15112.198157753559ns, it should be 8333333ns
Parsing, Logging, Saving, and Graphing took 2464.055595 ms
20201104-11:37:39: Dosing pump ran for 181.69 seconds, pumped 118.92 gallons with a max amperage of 21.64A, an average amperage of 11.34A, and an average wattage of 1360.48W
The average time between samples is: 8728644.349476313ns, std dev is: 5792.172864459418ns, it should be 8333333ns
Parsing, Logging, Saving, and Graphing took 3473.815274 ms
20201105-12:42:13: Dosing pump ran for 186.42 seconds, pumped 122.36 gallons with a max amperage of 21.64A, an average amperage of 11.34A, and an average wattage of 1361.21W
The average time between samples is: 8728961.036242742ns, std dev is: 7143.735817093296ns, it should be 8333333ns
Parsing, Logging, Saving, and Graphing took 2486.528314 ms
20201106-23:30:20: Dosing pump ran for 181.48 seconds, pumped 118.78 gallons with a max amperage of 21.64A, an average amperage of 11.37A, and an average wattage of 1364.95W
The average time between samples is: 8727635.826480065ns, std dev is: 7993.744253345668ns, it should be 8333333ns
Parsing, Logging, Saving, and Graphing took 2638.644448 ms
20201107-17:22:14: Dosing pump ran for 182.58 seconds, pumped 119.57 gallons with a max amperage of 21.64A, an average amperage of 11.31A, and an average wattage of 1357.31W
The average time between samples is: 8729892.520250563ns, std dev is: 9665.845010070203ns, it should be 8333333ns
Parsing, Logging, Saving, and Graphing took 2491.002062 ms
Startup @ Sun Nov 8 11:16:18 2020. Current user is: root
Starting Data Monitoring...
20201108-14:04:22: Dosing pump ran for 179.33 seconds, pumped 117.21 gallons with a max amperage of 15.69A, an average amperage of 4.55A, and an average wattage of 546.02W
The average time between samples is: 9236458.235448645ns, std dev is: 6404.868329976926ns, it should be 8333333ns
Parsing, Logging, Saving, and Graphing took 3130.447963 ms
Startup @ Sun Nov 8 14:51:59 2020. Current user is: piku
Maximum Data rate is: 2227.31 hz
Monitoring data at 120 sample(s) per second
Amperage conversion factor is: 2.0
Starting Data Monitoring...
20201108-14:51:59: Dosing pump ran for 0.01 seconds, pumped -12.79 gallons with a max amperage of 17.93A, an average amperage of 17.93A, and an average wattage of 2151.19W
The average time between samples is: nanns, std dev is: nanns, it should be 8333333ns
Parsing, Logging, Saving, and Graphing took 2528.534176 ms
Startup @ Sun Nov 8 15:35:50 2020. Current user is: piku
Maximum Data rate is: 2358.75 hz
Monitoring data at 120 sample(s) per second
Amperage conversion factor is: 2.0
Starting Data Monitoring...
Startup @ Sun Nov 8 15:44:02 2020. Current user is: piku
Maximum Data rate is: 2630.59 hz
Monitoring data at 120 sample(s) per second
Amperage conversion factor is: 2.0
Starting Data Monitoring...
Startup @ Sun Nov 8 15:48:02 2020. Current user is: piku
Maximum Data rate is: 2621.07 hz
Monitoring data at 120 sample(s) per second
Amperage conversion factor is: 2.0
Starting Data Monitoring...
Startup @ Sun Nov 8 15:49:39 2020. Current user is: piku
Maximum Data rate is: 2662.88 hz
Monitoring data at 120 sample(s) per second
Amperage conversion factor is: 2.0
Starting Data Monitoring...
Startup @ Sun Nov 8 16:01:15 2020. Current user is: piku
Maximum Data rate is: 2623.84 hz
Monitoring data at 120 sample(s) per second
Amperage conversion factor is: 2.0
Starting Data Monitoring...
Startup @ Sun Nov 8 16:04:34 2020. Current user is: piku
Maximum Data rate is: 2620.46 hz
Monitoring data at 120 sample(s) per second
Amperage conversion factor is: 2.0
Starting Data Monitoring...
Startup @ Sun Nov 8 16:08:53 2020. Current user is: piku
Maximum Data rate is: 2630.43 hz
Monitoring data at 120 sample(s) per second
Amperage conversion factor is: 2.0
Starting Data Monitoring...
Startup @ Sun Nov 8 16:31:03 2020. Current user is: piku
Maximum Data rate is: 2662.96 hz
Monitoring data at 120 sample(s) per second
Amperage conversion factor is: 2.0
Starting Data Monitoring...
Startup @ Sun Nov 8 16:33:57 2020. Current user is: piku
Maximum Data rate is: 2628.38 hz
Monitoring data at 120 sample(s) per second
Amperage conversion factor is: 2.0
Starting Data Monitoring...
Startup @ Sun Nov 8 16:44:22 2020. Current user is: piku
Maximum Data rate is: 2632.18 hz
Monitoring data at 120 sample(s) per second
Amperage conversion factor is: 2.0
Starting Data Monitoring...
Startup @ Sun Nov 8 16:49:46 2020. Current user is: piku
Maximum Data rate is: 2631.91 hz
Monitoring data at 120 sample(s) per second
Amperage conversion factor is: 2.0
Starting Data Monitoring...
Startup @ Sun Nov 8 16:50:37 2020. Current user is: piku
Maximum Data rate is: 2348.17 hz
Monitoring data at 120 sample(s) per second
Amperage conversion factor is: 2.0
Starting Data Monitoring...
Startup @ Sun Nov 8 16:51:34 2020. Current user is: piku
Maximum Data rate is: 2616.40 hz
Monitoring data at 120 sample(s) per second
Amperage conversion factor is: 2.0
Starting Data Monitoring...
Startup @ Sun Nov 8 17:04:26 2020. Current user is: piku
Maximum Data rate is: 2565.75 hz
Monitoring data at 120 sample(s) per second
Amperage conversion factor is: 2.0
Starting Data Monitoring...
Startup @ Sun Nov 8 17:05:26 2020. Current user is: piku
Maximum Data rate is: 2620.92 hz
Monitoring data at 120 sample(s) per second
Amperage conversion factor is: 2.0
Starting Data Monitoring...
20201109-06:07:48: Dosing pump ran for 164.49 seconds, pumped 106.45 gallons with a max amperage of 19.95A, an average amperage of 4.55A, and an average wattage of 546.34W
The average time between samples is: 8730324.34596603ns, std dev is: 24976.94117785582ns, it should be 8333333ns
Parsing, Logging, Saving, and Graphing took 2912.812827 ms
20201109-06:10:35: Dosing pump ran for 0.02 seconds, pumped -12.79 gallons with a max amperage of 4.54A, an average amperage of 4.48A, and an average wattage of 537.75W
The average time between samples is: 8837332.0ns, std dev is: 0.0ns, it should be 8333333ns
Parsing, Logging, Saving, and Graphing took 2079.736904 ms
20201109-06:10:37: Dosing pump ran for 21.44 seconds, pumped 2.74 gallons with a max amperage of 4.54A, an average amperage of 4.49A, and an average wattage of 539.16W
The average time between samples is: 8732478.765281174ns, std dev is: 5578.7283133025785ns, it should be 8333333ns
Parsing, Logging, Saving, and Graphing took 2185.952588 ms
Startup @ Mon Nov 9 21:02:46 2020. Current user is: piku
Maximum Data rate is: 2463.00 hz
Monitoring data at 120 sample(s) per second
Amperage conversion factor is: 5.0
Starting Data Monitoring...
Startup @ Mon Nov 9 21:50:20 2020. Current user is: piku
Maximum Data rate is: 2190.51 hz
Monitoring data at 120 sample(s) per second
Amperage conversion factor is: 5.0
Starting Data Monitoring...
Startup @ Mon Nov 9 21:57:09 2020. Current user is: piku
Maximum Data rate is: 2757.94 hz
Monitoring data at 120 sample(s) per second
Amperage conversion factor is: 5.0
Starting Data Monitoring...
Startup @ Mon Nov 9 21:58:18 2020. Current user is: piku
Maximum Data rate is: 2307.90 hz
Monitoring data at 120 sample(s) per second
Amperage conversion factor is: 5.0
Starting Data Monitoring...
Startup @ Mon Nov 9 21:59:09 2020. Current user is: piku
Maximum Data rate is: 2416.83 hz
Monitoring data at 120 sample(s) per second
Amperage conversion factor is: 5.0
Starting Data Monitoring...
Startup @ Mon Nov 9 22:00:45 2020. Current user is: piku
Maximum Data rate is: 2538.09 hz
Monitoring data at 120 sample(s) per second
Amperage conversion factor is: 5.0
Starting Data Monitoring...
Startup @ Mon Nov 9 22:09:28 2020. Current user is: piku
Maximum Data rate is: 2587.03 hz
Monitoring data at 120 sample(s) per second
Amperage conversion factor is: 5.0
Starting Data Monitoring...
Startup @ Mon Nov 9 22:11:10 2020. Current user is: piku
Maximum Data rate is: 2660.44 hz
Monitoring data at 120 sample(s) per second
Amperage conversion factor is: 5.0
Starting Data Monitoring...
20201110-06:55:31: Dosing pump ran for 181.80 seconds, pumped 119.01 gallons with a max amperage of 39.06A, an average amperage of 11.36A, and an average wattage of 1363.65W
The average time between samples is: 8731664.770893373ns, std dev is: 7200.439362665699ns, it should be 8333333ns
Parsing, Logging, Saving, and Graphing took 3060.386058 ms
20201111-11:53:11: Dosing pump ran for 181.26 seconds, pumped 118.61 gallons with a max amperage of 39.53A, an average amperage of 11.37A, and an average wattage of 1364.30W
The average time between samples is: 8731473.61282397ns, std dev is: 5787.180107791917ns, it should be 8333333ns
Parsing, Logging, Saving, and Graphing took 2985.773839 ms
20201112-07:32:10: Dosing pump ran for 182.29 seconds, pumped 119.36 gallons with a max amperage of 39.53A, an average amperage of 11.36A, and an average wattage of 1363.66W
The average time between samples is: 8730386.092102112ns, std dev is: 6852.638812736665ns, it should be 8333333ns
Parsing, Logging, Saving, and Graphing took 3033.462863 ms
Startup @ Thu Nov 12 17:32:06 2020. Current user is: piku
Maximum Data rate is: 2219.16 hz
Monitoring data at 120 sample(s) per second
Amperage conversion factor is: 5.0
Starting Data Monitoring...
Startup @ Thu Nov 12 17:36:54 2020. Current user is: piku
Maximum Data rate is: 1950.90 hz
Monitoring data at 120 sample(s) per second
Amperage conversion factor is: 5.0
Starting Data Monitoring...
Startup @ Thu Nov 12 17:38:00 2020. Current user is: piku
Maximum Data rate is: 2539.98 hz
Monitoring data at 120 sample(s) per second
Amperage conversion factor is: 5.0
Starting Data Monitoring...
Startup @ Thu Nov 12 17:39:18 2020. Current user is: piku
Maximum Data rate is: 2560.51 hz
Monitoring data at 120 sample(s) per second
Amperage conversion factor is: 5.0
Starting Data Monitoring...
Startup @ Thu Nov 12 17:41:51 2020. Current user is: piku
Maximum Data rate is: 2619.26 hz
Monitoring data at 120 sample(s) per second
Amperage conversion factor is: 5.0
Starting Data Monitoring...
Startup @ Thu Nov 12 17:42:51 2020. Current user is: piku
Maximum Data rate is: 2649.70 hz
Monitoring data at 120 sample(s) per second
Amperage conversion factor is: 5.0
Starting Data Monitoring...
Startup @ Thu Nov 12 17:43:03 2020. Current user is: piku
Maximum Data rate is: 1976.61 hz
Monitoring data at 120 sample(s) per second
Amperage conversion factor is: 5.0
Starting Data Monitoring...
Startup @ Thu Nov 12 17:44:06 2020. Current user is: piku
Maximum Data rate is: 2220.90 hz
Monitoring data at 120 sample(s) per second
Amperage conversion factor is: 5.0
Starting Data Monitoring...
Startup @ Thu Nov 12 17:46:00 2020. Current user is: piku
Maximum Data rate is: 2587.86 hz
Monitoring data at 120 sample(s) per second
Amperage conversion factor is: 5.0
Starting Data Monitoring...
Startup @ Thu Nov 12 17:46:34 2020. Current user is: piku
Maximum Data rate is: 2560.76 hz
Monitoring data at 120 sample(s) per second
Amperage conversion factor is: 5.0
Starting Data Monitoring...
Startup @ Thu Nov 12 20:31:41 2020. Current user is: piku
Maximum Data rate is: 2267.21 hz
Monitoring data at 120 sample(s) per second
Amperage conversion factor is: 5.0
Starting Data Monitoring...
Startup @ Thu Nov 12 20:36:32 2020. Current user is: piku
Maximum Data rate is: 1432.91 hz
Monitoring data at 120 sample(s) per second
Amperage conversion factor is: 5.0
Starting Data Monitoring...
Startup @ Thu Nov 12 20:41:56 2020. Current user is: piku
Maximum Data rate is: 2707.04 hz
Monitoring data at 120 sample(s) per second
Amperage conversion factor is: 5.0
Starting Data Monitoring...
Startup @ Thu Nov 12 20:51:12 2020. Current user is: piku
Maximum Data rate is: 2101.68 hz
Monitoring data at 120 sample(s) per second
Amperage conversion factor is: 5.0
Starting Data Monitoring...
Startup @ Thu Nov 12 21:05:25 2020. Current user is: piku
Maximum Data rate is: 2168.27 hz
Monitoring data at 120 sample(s) per second
Amperage conversion factor is: 5.0
Starting Data Monitoring...
Startup @ Thu Nov 12 21:09:52 2020. Current user is: piku
Maximum Data rate is: 2295.08 hz
Monitoring data at 120 sample(s) per second
Amperage conversion factor is: 5.0
Starting Data Monitoring...
Startup @ Thu Nov 12 21:13:37 2020. Current user is: piku
Maximum Data rate is: 2536.25 hz
Monitoring data at 120 sample(s) per second
Amperage conversion factor is: 5.0
Starting Data Monitoring...
Startup @ Thu Nov 12 21:17:22 2020. Current user is: piku
Maximum Data rate is: 2270.73 hz
Monitoring data at 120 sample(s) per second
Amperage conversion factor is: 5.0
Starting Data Monitoring...
Startup @ Thu Nov 12 21:29:20 2020. Current user is: piku
Maximum Data rate is: 1783.52 hz
Monitoring data at 120 sample(s) per second
Amperage conversion factor is: 5.0
Starting Data Monitoring...
20201113-08:32:06: Dosing pump ran for 19.44 seconds, pumped 1.29 gallons with a max amperage of 40.00A, an average amperage of 11.74A, and an average wattage of 1409.26W
The average time between samples is: 8732201.328089887ns, std dev is: 76132.08590104023ns, it should be 8333333ns
Parsing, Logging, Saving, and Graphing took 3310.049293 ms
20201113-08:32:29: Dosing pump ran for 83.34 seconds, pumped 47.62 gallons with a max amperage of 11.81A, an average amperage of 11.34A, and an average wattage of 1361.02W
The average time between samples is: 8729014.78671695ns, std dev is: 8012.711046405868ns, it should be 8333333ns
Parsing, Logging, Saving, and Graphing took 3551.19891 ms
20201113-08:33:56: Dosing pump ran for 73.95 seconds, pumped 40.81 gallons with a max amperage of 42.35A, an average amperage of 11.32A, and an average wattage of 1357.99W
The average time between samples is: 8730931.330027157ns, std dev is: 41004.95496284382ns, it should be 8333333ns
Parsing, Logging, Saving, and Graphing took 3538.501631 ms
Startup @ Fri Nov 13 15:07:06 2020. Current user is: piku
Maximum Data rate is: 2710.23 hz
Monitoring data at 120 sample(s) per second
Amperage conversion factor is: 5.0
Starting Data Monitoring...
Startup @ Fri Nov 13 15:10:45 2020. Current user is: piku
Maximum Data rate is: 2523.85 hz
Monitoring data at 120 sample(s) per second
Amperage conversion factor is: 5.0
Starting Data Monitoring...
Startup @ Fri Nov 13 15:13:45 2020. Current user is: piku
Maximum Data rate is: 2273.84 hz
Monitoring data at 120 sample(s) per second
Amperage conversion factor is: 5.0
Starting Data Monitoring...
Startup @ Fri Nov 13 15:18:55 2020. Current user is: piku
Maximum Data rate is: 2155.10 hz
Monitoring data at 120 sample(s) per second
Amperage conversion factor is: 5.0
Starting Data Monitoring...
Startup @ Fri Nov 13 15:27:40 2020. Current user is: piku
Maximum Data rate is: 2376.38 hz
Monitoring data at 120 sample(s) per second
Amperage conversion factor is: 5.0
Starting Data Monitoring...
Startup @ Fri Nov 13 15:31:14 2020. Current user is: piku
Maximum Data rate is: 2482.66 hz
Monitoring data at 120 sample(s) per second
Amperage conversion factor is: 5.0
Starting Data Monitoring...
Startup @ Fri Nov 13 15:33:04 2020. Current user is: piku
Maximum Data rate is: 2464.31 hz
Monitoring data at 120 sample(s) per second
Amperage conversion factor is: 5.0
Starting Data Monitoring...
Startup @ Fri Nov 13 18:00:01 2020. Current user is: piku
Maximum Data rate is: 2633.00 hz
Monitoring data at 120 sample(s) per second
Amperage conversion factor is: 5.0
Starting Data Monitoring...
Startup @ Fri Nov 13 18:02:59 2020. Current user is: piku
Maximum Data rate is: 2625.01 hz
Monitoring data at 120 sample(s) per second
Amperage conversion factor is: 5.0
Starting Data Monitoring...
Startup @ Fri Nov 13 18:03:50 2020. Current user is: piku
Maximum Data rate is: 2184.50 hz
Monitoring data at 120 sample(s) per second
Amperage conversion factor is: 5.0
Starting Data Monitoring...
Startup @ Fri Nov 13 18:09:26 2020. Current user is: piku
Maximum Data rate is: 2379.54 hz
Monitoring data at 120 sample(s) per second
Amperage conversion factor is: 5.0
Starting Data Monitoring...
Startup @ Fri Nov 13 18:14:32 2020. Current user is: piku
Maximum Data rate is: 2152.29 hz
Monitoring data at 120 sample(s) per second
Amperage conversion factor is: 5.0
Starting Data Monitoring...
Startup @ Fri Nov 13 18:14:38 2020. Current user is: piku
Maximum Data rate is: 2384.28 hz
Monitoring data at 120 sample(s) per second
Amperage conversion factor is: 5.0
Starting Data Monitoring...
Startup @ Fri Nov 13 18:15:41 2020. Current user is: piku
Maximum Data rate is: 2447.43 hz
Monitoring data at 120 sample(s) per second
Amperage conversion factor is: 5.0
Starting Data Monitoring...
Startup @ Fri Nov 13 18:18:57 2020. Current user is: piku
Maximum Data rate is: 2447.60 hz
Monitoring data at 120 sample(s) per second
Amperage conversion factor is: 5.0
Starting Data Monitoring...
Startup @ Fri Nov 13 18:19:06 2020. Current user is: piku
Maximum Data rate is: 2410.03 hz
Monitoring data at 120 sample(s) per second
Amperage conversion factor is: 5.0
Starting Data Monitoring...
Startup @ Fri Nov 13 18:21:21 2020. Current user is: piku
Maximum Data rate is: 2194.10 hz
Monitoring data at 120 sample(s) per second
Amperage conversion factor is: 5.0
Starting Data Monitoring...
Startup @ Fri Nov 13 18:22:33 2020. Current user is: piku
Maximum Data rate is: 2588.64 hz
Monitoring data at 120 sample(s) per second
Amperage conversion factor is: 5.0
Starting Data Monitoring...
Startup @ Fri Nov 13 19:36:56 2020. Current user is: piku
Maximum Data rate is: 2604.37 hz
Monitoring data at 120 sample(s) per second
Amperage conversion factor is: 5.0
Starting Data Monitoring...
Startup @ Fri Nov 13 21:13:40 2020. Current user is: piku
Maximum Data rate is: 1818.55 hz
Monitoring data at 120 sample(s) per second
Amperage conversion factor is: 5.0
Starting Data Monitoring...
Startup @ Fri Nov 13 21:17:41 2020. Current user is: piku
Maximum Data rate is: 2166.56 hz
Monitoring data at 120 sample(s) per second
Amperage conversion factor is: 5.0
Starting Data Monitoring...
Startup @ Fri Nov 13 21:18:53 2020. Current user is: piku
Maximum Data rate is: 2451.08 hz
Monitoring data at 120 sample(s) per second
Amperage conversion factor is: 5.0
Starting Data Monitoring...
Startup @ Fri Nov 13 21:20:26 2020. Current user is: piku
Maximum Data rate is: 2490.61 hz
Monitoring data at 120 sample(s) per second
Amperage conversion factor is: 5.0
Starting Data Monitoring...
Startup @ Fri Nov 13 21:21:14 2020. Current user is: piku
Maximum Data rate is: 2176.24 hz
Monitoring data at 120 sample(s) per second
Amperage conversion factor is: 5.0
Starting Data Monitoring...
Startup @ Fri Nov 13 21:24:11 2020. Current user is: piku
Maximum Data rate is: 2006.65 hz
Monitoring data at 120 sample(s) per second
Amperage conversion factor is: 5.0
Starting Data Monitoring...
Startup @ Fri Nov 13 21:33:39 2020. Current user is: piku
Maximum Data rate is: 2427.84 hz
Monitoring data at 120 sample(s) per second
Amperage conversion factor is: 5.0
Starting Data Monitoring...
Startup @ Fri Nov 13 21:35:36 2020. Current user is: piku
Maximum Data rate is: 2145.21 hz
Monitoring data at 120 sample(s) per second
Amperage conversion factor is: 5.0
Starting Data Monitoring...
Startup @ Fri Nov 13 21:37:18 2020. Current user is: piku
Maximum Data rate is: 2107.51 hz
Monitoring data at 120 sample(s) per second
Amperage conversion factor is: 5.0
Starting Data Monitoring...
Startup @ Fri Nov 13 21:37:42 2020. Current user is: piku
Maximum Data rate is: 2143.86 hz
Monitoring data at 120 sample(s) per second
Amperage conversion factor is: 5.0
Starting Data Monitoring...
20201114-09:06:42: Dosing pump ran for 187.11 seconds, pumped 122.85 gallons with a max amperage of 39.53A, an average amperage of 11.37A, and an average wattage of 1364.01W
The average time between samples is: 8737516.433288189ns, std dev is: 8476.094675399678ns, it should be 8333333ns
Parsing, Logging, Saving, and Graphing took 4042.300822 ms
20201114-23:22:23: Dosing pump ran for 183.58 seconds, pumped 120.30 gallons with a max amperage of 39.53A, an average amperage of 11.37A, and an average wattage of 1364.00W
The average time between samples is: 8738287.71920221ns, std dev is: 7752.520575941524ns, it should be 8333333ns
Parsing, Logging, Saving, and Graphing took 4038.570966 ms
Startup @ Sun Nov 15 09:01:28 2020. Current user is: piku
Maximum Data rate is: 2622.63 hz
Monitoring data at 120 sample(s) per second
Amperage conversion factor is: 5.0
Starting Data Monitoring...
Startup @ Sun Nov 15 09:06:26 2020. Current user is: piku
Maximum Data rate is: 2628.80 hz
Monitoring data at 120 sample(s) per second
Amperage conversion factor is: 5.0
Starting Data Monitoring...
Startup @ Sun Nov 15 09:09:47 2020. Current user is: piku
Maximum Data rate is: 2440.26 hz
Monitoring data at 120 sample(s) per second
Amperage conversion factor is: 5.0
Starting Data Monitoring...
Startup @ Sun Nov 15 15:03:00 2020. Current user is: piku
Maximum Data rate is: 1910.79 hz
Monitoring data at 120 sample(s) per second
Amperage conversion factor is: 5.0
Starting Data Monitoring...
20201115-16:01:36: Dosing pump ran for 0.01 seconds, pumped -12.79 gallons with a max amperage of 59.93A, an average amperage of 59.93A, and an average wattage of 7191.60W
The average time between samples is: nanns, std dev is: nanns, it should be 8333333ns
Parsing, Logging, Saving, and Graphing took 4379.564342 ms
20201115-16:01:41: Dosing pump ran for 0.01 seconds, pumped -12.79 gallons with a max amperage of 60.20A, an average amperage of 60.20A, and an average wattage of 7224.00W
The average time between samples is: nanns, std dev is: nanns, it should be 8333333ns
Parsing, Logging, Saving, and Graphing took 4120.497575 ms
20201115-16:12:29: Dosing pump ran for 23.20 seconds, pumped 4.02 gallons with a max amperage of 39.53A, an average amperage of 11.66A, and an average wattage of 1399.41W
The average time between samples is: 8815031.458760926ns, std dev is: 56935.071129706725ns, it should be 8333333ns
Parsing, Logging, Saving, and Graphing took 4306.794981 ms
20201115-16:12:56: Dosing pump ran for 2.25 seconds, pumped -11.17 gallons with a max amperage of 11.50A, an average amperage of 11.34A, and an average wattage of 1360.88W
The average time between samples is: 8872310.968379447ns, std dev is: 37400.64611010812ns, it should be 8333333ns
Parsing, Logging, Saving, and Graphing took 4451.36199 ms
20201115-16:13:03: Dosing pump ran for 1.61 seconds, pumped -11.64 gallons with a max amperage of 11.49A, an average amperage of 11.34A, and an average wattage of 1360.90W
The average time between samples is: 8832813.355555555ns, std dev is: 41346.467926753125ns, it should be 8333333ns
Parsing, Logging, Saving, and Graphing took 4556.023271 ms
20201115-16:13:09: Dosing pump ran for 99.10 seconds, pumped 59.05 gallons with a max amperage of 49.39A, an average amperage of 11.38A, and an average wattage of 1365.82W
The average time between samples is: 8843207.021954484ns, std dev is: 284962.14443213603ns, it should be 8333333ns
Parsing, Logging, Saving, and Graphing took 4786.924201 ms
20201115-16:14:53: Dosing pump ran for 39.15 seconds, pumped 15.59 gallons with a max amperage of 59.73A, an average amperage of 11.41A, and an average wattage of 1368.60W
The average time between samples is: 8876534.675963718ns, std dev is: 267968.86709564814ns, it should be 8333333ns
Parsing, Logging, Saving, and Graphing took 4636.439856 ms
20201115-18:33:40: Dosing pump ran for 0.01 seconds, pumped -12.79 gallons with a max amperage of 15.43A, an average amperage of 15.43A, and an average wattage of 1851.00W
The average time between samples is: nanns, std dev is: nanns, it should be 8333333ns
Parsing, Logging, Saving, and Graphing took 4542.438884 ms
Startup @ Sun Nov 15 18:51:48 2020. Current user is: piku
Maximum Data rate is: 2453.83 hz
Monitoring data at 120 sample(s) per second
Amperage conversion factor is: 5.0
Starting Data Monitoring...
Startup @ Sun Nov 15 19:10:12 2020. Current user is: piku
Maximum Data rate is: 1928.51 hz
Monitoring data at 120 sample(s) per second
Amperage conversion factor is: 5.0
Starting Data Monitoring...
Startup @ Sun Nov 15 19:10:12 2020. Current user is: root
Startup @ Sun Nov 15 19:56:38 2020. Current user is: piku
Maximum Data rate is: 2449.61 hz
Monitoring data at 120 sample(s) per second
Amperage conversion factor is: 5.0
Starting Data Monitoring...
Startup @ Sun Nov 15 20:52:40 2020. Current user is: piku
Maximum Data rate is: 308.45 hz
Monitoring data at 120 sample(s) per second
Amperage conversion factor is: 5.0
Starting Data Monitoring...
Startup @ Sun Nov 15 21:02:09 2020. Current user is: piku
Maximum Data rate is: 928.61 hz
Monitoring data at 120 sample(s) per second
Amperage conversion factor is: 5.0
Starting Data Monitoring...
Startup @ Sun Nov 15 21:11:31 2020. Current user is: piku
Maximum Data rate is: 1006.07 hz
Monitoring data at 120 sample(s) per second
Amperage conversion factor is: 5.0
Starting Data Monitoring...
Startup @ Mon Nov 16 18:42:43 2020. Current user is: piku
No DAQC2plate found at address 0
Graceful Shutdown @ Mon Nov 16 18:42:43 2020
Startup @ Mon Nov 16 18:42:46 2020. Current user is: piku
Maximum Data rate is: 1014.27 hz
Monitoring data at 120 sample(s) per second
Amperage conversion factor is: 5.0
Starting Data Monitoring...
20201116-19:36:50: Dosing pump ran for 182.55 seconds, pumped 119.55 gallons with a max amperage of 39.70A, an average amperage of 11.40A, and an average wattage of 1367.86W
The average time between samples is: 9233860.89305949ns, std dev is: 6950.0222449556795ns, it should be 8333333ns
Parsing, Logging, Saving, and Graphing took 1229.636843 ms
Startup @ Mon Nov 16 20:11:51 2020. Current user is: piku
Maximum Data rate is: 1084.91 hz
Monitoring data at 120 sample(s) per second
Amperage conversion factor is: 5.0
Starting Data Monitoring...
20201117-06:37:08: Dosing pump ran for 192.65 seconds, pumped 126.87 gallons with a max amperage of 39.62A, an average amperage of 11.38A, and an average wattage of 1365.27W
The average time between samples is: 9231147.514207676ns, std dev is: 7633.352165957112ns, it should be 8333333ns
Parsing, Logging, Saving, and Graphing took 1168.24637 ms
20201117-23:11:59: Dosing pump ran for 183.00 seconds, pumped 119.87 gallons with a max amperage of 39.73A, an average amperage of 11.43A, and an average wattage of 1371.74W
The average time between samples is: 9232845.987638125ns, std dev is: 6712.207813278935ns, it should be 8333333ns
Parsing, Logging, Saving, and Graphing took 1135.338898 ms
20201118-09:33:29: Dosing pump ran for 184.68 seconds, pumped 121.09 gallons with a max amperage of 39.32A, an average amperage of 11.35A, and an average wattage of 1362.25W
The average time between samples is: 9230771.346396081ns, std dev is: 7746.853874547246ns, it should be 8333333ns
Parsing, Logging, Saving, and Graphing took 1198.087746 ms
20201119-04:11:17: Dosing pump ran for 181.02 seconds, pumped 118.44 gallons with a max amperage of 39.57A, an average amperage of 11.40A, and an average wattage of 1368.11W
The average time between samples is: 9231201.321501428ns, std dev is: 7249.453172484365ns, it should be 8333333ns
Parsing, Logging, Saving, and Graphing took 1128.981068 ms
20201120-06:28:59: Dosing pump ran for 185.32 seconds, pumped 121.56 gallons with a max amperage of 39.41A, an average amperage of 11.35A, and an average wattage of 1362.15W
The average time between samples is: 9234025.112318119ns, std dev is: 8413.251007688958ns, it should be 8333333ns
Parsing, Logging, Saving, and Graphing took 1244.052751 ms
20201121-08:08:19: Dosing pump ran for 182.83 seconds, pumped 119.75 gallons with a max amperage of 39.20A, an average amperage of 11.40A, and an average wattage of 1367.77W
The average time between samples is: 9232815.21049442ns, std dev is: 6109.78778302746ns, it should be 8333333ns
Parsing, Logging, Saving, and Graphing took 1123.880253 ms
20201121-13:43:58: Dosing pump ran for 187.38 seconds, pumped 123.05 gallons with a max amperage of 39.65A, an average amperage of 11.40A, and an average wattage of 1368.46W
The average time between samples is: 9232645.871735489ns, std dev is: 6825.878950760479ns, it should be 8333333ns
Parsing, Logging, Saving, and Graphing took 1708.260721 ms
20201122-10:34:08: Dosing pump ran for 183.27 seconds, pumped 120.07 gallons with a max amperage of 39.72A, an average amperage of 11.42A, and an average wattage of 1369.99W
The average time between samples is: 9232469.00186398ns, std dev is: 6894.110354512614ns, it should be 8333333ns
Parsing, Logging, Saving, and Graphing took 1192.768757 ms
20201122-19:08:04: Dosing pump ran for 181.53 seconds, pumped 118.81 gallons with a max amperage of 39.45A, an average amperage of 11.40A, and an average wattage of 1368.09W
The average time between samples is: 9233453.27224172ns, std dev is: 5618.885710779612ns, it should be 8333333ns
Parsing, Logging, Saving, and Graphing took 1154.381822 ms
20201124-05:58:31: Dosing pump ran for 183.91 seconds, pumped 120.54 gallons with a max amperage of 39.73A, an average amperage of 11.38A, and an average wattage of 1365.11W
The average time between samples is: 9233077.166382167ns, std dev is: 26015.77847238633ns, it should be 8333333ns
Parsing, Logging, Saving, and Graphing took 1114.251341 ms
20201124-19:57:01: Dosing pump ran for 183.92 seconds, pumped 120.54 gallons with a max amperage of 39.34A, an average amperage of 11.37A, and an average wattage of 1364.93W
The average time between samples is: 9232476.57434739ns, std dev is: 7437.3212687778005ns, it should be 8333333ns
Parsing, Logging, Saving, and Graphing took 1139.723068 ms
20201125-12:57:28: Dosing pump ran for 184.19 seconds, pumped 120.74 gallons with a max amperage of 39.37A, an average amperage of 11.38A, and an average wattage of 1366.06W
The average time between samples is: 9232664.290490752ns, std dev is: 6589.281098993597ns, it should be 8333333ns
Parsing, Logging, Saving, and Graphing took 1150.914246 ms
20201126-14:18:42: Dosing pump ran for 184.75 seconds, pumped 121.14 gallons with a max amperage of 39.73A, an average amperage of 11.42A, and an average wattage of 1370.40W
The average time between samples is: 9233588.47308442ns, std dev is: 7090.975476240288ns, it should be 8333333ns
Parsing, Logging, Saving, and Graphing took 1193.580624 ms
20201127-12:13:57: Dosing pump ran for 184.66 seconds, pumped 121.08 gallons with a max amperage of 39.49A, an average amperage of 11.43A, and an average wattage of 1371.21W
The average time between samples is: 9235977.31722689ns, std dev is: 5327.373784547454ns, it should be 8333333ns
Parsing, Logging, Saving, and Graphing took 1200.915252 ms
20201128-19:45:19: Dosing pump ran for 182.38 seconds, pumped 119.43 gallons with a max amperage of 39.43A, an average amperage of 11.40A, and an average wattage of 1368.49W
The average time between samples is: 9231639.988003038ns, std dev is: 7099.893855068184ns, it should be 8333333ns
Parsing, Logging, Saving, and Graphing took 1168.95849 ms
20201129-15:00:26: Dosing pump ran for 190.67 seconds, pumped 125.43 gallons with a max amperage of 39.91A, an average amperage of 11.41A, and an average wattage of 1369.18W
The average time between samples is: 9232305.818991816ns, std dev is: 6137.3178051516115ns, it should be 8333333ns
Parsing, Logging, Saving, and Graphing took 1147.427685 ms
Startup @ Sun Nov 29 16:58:02 2020. Current user is: piku
Maximum Data rate is: 1099.93 hz
Monitoring data at 120 sample(s) per second
Amperage conversion factor is: 5.0
Starting Data Monitoring...
'int' object is not callable
Graceful Shutdown @ Sun Nov 29 16:58:02 2020
Startup @ Sun Nov 29 16:58:05 2020. Current user is: piku
Maximum Data rate is: 1111.26 hz
Monitoring data at 120 sample(s) per second
Amperage conversion factor is: 5.0
Starting Data Monitoring...
'int' object is not callable
Graceful Shutdown @ Sun Nov 29 16:58:05 2020
Startup @ Sun Nov 29 16:58:09 2020. Current user is: piku
Maximum Data rate is: 1061.55 hz
Monitoring data at 120 sample(s) per second
Amperage conversion factor is: 5.0
Starting Data Monitoring...
'int' object is not callable
Graceful Shutdown @ Sun Nov 29 16:58:09 2020
Startup @ Sun Nov 29 16:58:11 2020. Current user is: piku
Maximum Data rate is: 1092.51 hz
Monitoring data at 120 sample(s) per second
Amperage conversion factor is: 5.0
Starting Data Monitoring...
'int' object is not callable
Graceful Shutdown @ Sun Nov 29 16:58:11 2020
Startup @ Sun Nov 29 16:58:16 2020. Current user is: piku
Maximum Data rate is: 1061.75 hz
Monitoring data at 120 sample(s) per second
Amperage conversion factor is: 5.0
Starting Data Monitoring...
'int' object is not callable
Graceful Shutdown @ Sun Nov 29 16:58:16 2020
Startup @ Sun Nov 29 16:58:18 2020. Current user is: piku
Maximum Data rate is: 1100.11 hz
Monitoring data at 120 sample(s) per second
Amperage conversion factor is: 5.0
Starting Data Monitoring...
'int' object is not callable
Graceful Shutdown @ Sun Nov 29 16:58:18 2020
Startup @ Sun Nov 29 16:58:25 2020. Current user is: piku
Maximum Data rate is: 1089.38 hz
Monitoring data at 120 sample(s) per second
Amperage conversion factor is: 5.0
Starting Data Monitoring...
'int' object is not callable
Graceful Shutdown @ Sun Nov 29 16:58:25 2020
Startup @ Sun Nov 29 16:58:27 2020. Current user is: piku
Maximum Data rate is: 1096.63 hz
Monitoring data at 120 sample(s) per second
Amperage conversion factor is: 5.0
Starting Data Monitoring...
'int' object is not callable
Graceful Shutdown @ Sun Nov 29 16:58:27 2020
Startup @ Sun Nov 29 16:58:36 2020. Current user is: piku
Maximum Data rate is: 1065.69 hz
Monitoring data at 120 sample(s) per second
Amperage conversion factor is: 5.0
Starting Data Monitoring...
'int' object is not callable
Graceful Shutdown @ Sun Nov 29 16:58:36 2020
Startup @ Sun Nov 29 16:58:38 2020. Current user is: piku
Maximum Data rate is: 1067.65 hz
Monitoring data at 120 sample(s) per second
Amperage conversion factor is: 5.0
Starting Data Monitoring...
'int' object is not callable
Graceful Shutdown @ Sun Nov 29 16:58:38 2020
Startup @ Sun Nov 29 16:58:49 2020. Current user is: piku
Maximum Data rate is: 1097.29 hz
Monitoring data at 120 sample(s) per second
Amperage conversion factor is: 5.0
Starting Data Monitoring...
'int' object is not callable
Graceful Shutdown @ Sun Nov 29 16:58:49 2020
Startup @ Sun Nov 29 16:58:51 2020. Current user is: piku
Maximum Data rate is: 1022.66 hz
Monitoring data at 120 sample(s) per second
Amperage conversion factor is: 5.0
Starting Data Monitoring...
'int' object is not callable
Graceful Shutdown @ Sun Nov 29 16:58:51 2020
Startup @ Sun Nov 29 16:59:03 2020. Current user is: piku
Maximum Data rate is: 1043.36 hz
Monitoring data at 120 sample(s) per second
Amperage conversion factor is: 5.0
Starting Data Monitoring...
'int' object is not callable
Graceful Shutdown @ Sun Nov 29 16:59:03 2020
Startup @ Sun Nov 29 16:59:06 2020. Current user is: piku
Maximum Data rate is: 1058.96 hz
Monitoring data at 120 sample(s) per second
Amperage conversion factor is: 5.0
Starting Data Monitoring...
'int' object is not callable
Graceful Shutdown @ Sun Nov 29 16:59:06 2020
Startup @ Sun Nov 29 16:59:19 2020. Current user is: piku
Maximum Data rate is: 1101.20 hz
Monitoring data at 120 sample(s) per second
Amperage conversion factor is: 5.0
Starting Data Monitoring...
'int' object is not callable
Graceful Shutdown @ Sun Nov 29 16:59:19 2020
Startup @ Sun Nov 29 16:59:22 2020. Current user is: piku
Maximum Data rate is: 1020.94 hz
Monitoring data at 120 sample(s) per second
Amperage conversion factor is: 5.0
Starting Data Monitoring...
'int' object is not callable
Graceful Shutdown @ Sun Nov 29 16:59:22 2020
Startup @ Sun Nov 29 16:59:37 2020. Current user is: piku
Maximum Data rate is: 1098.97 hz
Monitoring data at 120 sample(s) per second
Amperage conversion factor is: 5.0
Starting Data Monitoring...
'int' object is not callable
Graceful Shutdown @ Sun Nov 29 16:59:37 2020
Startup @ Sun Nov 29 16:59:40 2020. Current user is: piku
Maximum Data rate is: 1101.46 hz
Monitoring data at 120 sample(s) per second
Amperage conversion factor is: 5.0
Starting Data Monitoring...
'int' object is not callable
Graceful Shutdown @ Sun Nov 29 16:59:40 2020
Startup @ Sun Nov 29 16:59:57 2020. Current user is: piku
Maximum Data rate is: 1099.35 hz
Monitoring data at 120 sample(s) per second
Amperage conversion factor is: 5.0
Starting Data Monitoring...
'int' object is not callable
Graceful Shutdown @ Sun Nov 29 16:59:57 2020
Startup @ Sun Nov 29 17:00:00 2020. Current user is: piku
Maximum Data rate is: 1103.43 hz
Monitoring data at 120 sample(s) per second
Amperage conversion factor is: 5.0
Starting Data Monitoring...
'int' object is not callable
Graceful Shutdown @ Sun Nov 29 17:00:00 2020
Startup @ Sun Nov 29 17:00:19 2020. Current user is: piku
Maximum Data rate is: 1098.73 hz
Monitoring data at 120 sample(s) per second
Amperage conversion factor is: 5.0
Starting Data Monitoring...
'int' object is not callable
Graceful Shutdown @ Sun Nov 29 17:00:19 2020
Startup @ Sun Nov 29 17:00:22 2020. Current user is: piku
Maximum Data rate is: 1104.69 hz
Monitoring data at 120 sample(s) per second
Amperage conversion factor is: 5.0
Starting Data Monitoring...