-
Notifications
You must be signed in to change notification settings - Fork 3
/
ChangeLog
14254 lines (9551 loc) · 384 KB
/
ChangeLog
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
commit 684873782238d962b0ba2d933d949df4c3c2cd53
Author: Thomas Dreibholz <[email protected]>
Date: Fri Dec 20 12:18:58 2024 +0100
Minor README update.
commit ea4683238051de19944a56960158168ca864fe9f
Author: Thomas Dreibholz <[email protected]>
Date: Fri Dec 20 11:08:44 2024 +0100
Updated FreeBSD package description as well.
commit fa9b2553177ca217104c85f567fccd9a36bdfdfc
Author: Thomas Dreibholz <[email protected]>
Date: Fri Dec 20 11:08:02 2024 +0100
Improved package descriptions.
commit 5242e375d78514b699d18568e14cda61525dfe5f
Author: Thomas Dreibholz <[email protected]>
Date: Fri Dec 20 11:00:46 2024 +0100
Improved RPM spec file.
commit 1b372d58132da1939ef86507783d89aef04059c8
Author: Thomas Dreibholz <[email protected]>
Date: Fri Dec 20 10:52:56 2024 +0100
Debian packaging update.
commit 5062ae0cc6e7aa9dc52c2acc669198e851dc5640
Author: Thomas Dreibholz <[email protected]>
Date: Fri Dec 20 10:25:32 2024 +0100
Improved documentation.
commit 62629ce2f134cb36edd636a40fd623a669bd66a7
Author: Thomas Dreibholz <[email protected]>
Date: Fri Dec 20 10:11:33 2024 +0100
Another README.md update.
commit 4455b3fa713df660fe561798451f4a94dce79d31
Author: Thomas Dreibholz <[email protected]>
Date: Fri Dec 20 09:47:54 2024 +0100
Updated README.md.
commit 1b4e417bdbcdb02ab57b2ba4fb464a9d04a3c390
Author: Thomas Dreibholz <[email protected]>
Date: Fri Dec 20 09:47:39 2024 +0100
Updated figures for documentation.
commit 626f9d5d651b43856746895b019137f2b3988553
Author: Thomas Dreibholz <[email protected]>
Date: Fri Dec 20 09:39:28 2024 +0100
Improved CMakeLists.txt.
commit f2910dd3779b0a3170a11c42d8bfe89c3ac0d4ca
Author: Thomas Dreibholz <[email protected]>
Date: Thu Dec 19 17:13:01 2024 +0100
Minor update.
commit a0c04d3fade6ba30e10b6c8b5e84f3822f57c593
Author: Thomas Dreibholz <[email protected]>
Date: Thu Dec 19 17:12:29 2024 +0100
Yet another README update.
commit 645280611a240a185cff442c02f9ea86b5dd3279
Author: Thomas Dreibholz <[email protected]>
Date: Thu Dec 19 16:43:35 2024 +0100
Another README update.
commit 56ab40cc33077ac205b550cdd8609c1c38288a57
Author: Thomas Dreibholz <[email protected]>
Date: Thu Dec 19 16:32:32 2024 +0100
Version bump.
commit 263f0d855a4a09def91ac2bdea70d192d4147cbd
Author: Thomas Dreibholz <[email protected]>
Date: Thu Dec 19 16:31:33 2024 +0100
Minor manpage update.
commit 8faa528d1ad2a0407914ee84c59a286ca5767d00
Author: Thomas Dreibholz <[email protected]>
Date: Thu Dec 19 16:31:05 2024 +0100
Minor README update.
commit 963c001f62cf58e118e93ec198f0d181ae2d2349
Author: Thomas Dreibholz <[email protected]>
Date: Thu Dec 19 16:21:59 2024 +0100
FreeBSD pkg-descr update.
commit 907d58c4ac55c5449b6516c9936aa47fabd59210
Author: Thomas Dreibholz <[email protected]>
Date: Thu Dec 19 16:03:38 2024 +0100
Indentation fix.
commit c9f859ba81fd2f620437d4259292833f01664cf3
Author: Thomas Dreibholz <[email protected]>
Date: Thu Dec 19 16:02:16 2024 +0100
Minor clean-up.
commit 7adb33cbd300d90a20265b41c7b851e73a22e06b
Author: Thomas Dreibholz <[email protected]>
Date: Thu Dec 19 16:02:05 2024 +0100
Updated descriptions.
commit a62b27e7bad340d954ddcf3a461b1da61e302edc
Author: Thomas Dreibholz <[email protected]>
Date: Thu Dec 19 16:01:52 2024 +0100
Minor clean-ups.
commit 9f28f6802b0de08eb79fcc82f97a3e2177cf50ae
Author: Thomas Dreibholz <[email protected]>
Date: Thu Dec 19 16:01:41 2024 +0100
RPM spec description updates.
commit b7f8c5ef78ff64e8b9c0f553dabff6e6330218fb
Author: Thomas Dreibholz <[email protected]>
Date: Thu Dec 19 15:57:31 2024 +0100
Updated RPM spec.
commit aeff81b0432f0ecfe8822e51a3a52a745f5a0eb9
Author: Thomas Dreibholz <[email protected]>
Date: Thu Dec 19 15:44:41 2024 +0100
Minor update.
commit bfd9634ba15b5e8de2c343a0dcfbb73865dbbb6a
Author: Thomas Dreibholz <[email protected]>
Date: Thu Dec 19 15:23:13 2024 +0100
Improved README.
commit c3a0e1d49857c8cee5026ab6333ec9e518e376cb
Author: Thomas Dreibholz <[email protected]>
Date: Thu Dec 19 14:54:28 2024 +0100
Further README improvements.
commit 03f34af29b6db750b6404605f351c41f56b6ce0d
Author: Thomas Dreibholz <[email protected]>
Date: Thu Dec 19 14:40:54 2024 +0100
Improved README.
commit b8469383ea23fd682509be445546aa482c2daf5c
Author: Thomas Dreibholz <[email protected]>
Date: Thu Dec 19 14:40:44 2024 +0100
Manpage clarification.
commit cd995133df26b4ba24b4c08e73853ee5f46d5729
Author: Thomas Dreibholz <[email protected]>
Date: Thu Dec 19 13:00:38 2024 +0100
Improved README.
commit 7592016dd4d084c780c868dfcec13eb20d24934f
Author: Thomas Dreibholz <[email protected]>
Date: Thu Dec 19 12:22:47 2024 +0100
Improved README.
commit 684db6f2900caf36b6a65ae6463e60427597ccb2
Author: Thomas Dreibholz <[email protected]>
Date: Thu Dec 19 11:50:18 2024 +0100
Yet another README update.
commit 77569d96111cd23c231d4dc7c86b317a98a1fa55
Author: Thomas Dreibholz <[email protected]>
Date: Thu Dec 19 11:44:35 2024 +0100
Added figure for documentation.
commit 415946344994085ce052df57ac46f04ea7199c69
Author: Thomas Dreibholz <[email protected]>
Date: Thu Dec 19 11:24:26 2024 +0100
Another README update.
commit 73c2ce83c930206be8130de16f33ee3b8f098b86
Author: Thomas Dreibholz <[email protected]>
Date: Thu Dec 19 11:02:04 2024 +0100
Improved README file.
commit 226e5afe2df91e9137fcc0066a51bc89d4fa2317
Author: Thomas Dreibholz <[email protected]>
Date: Thu Dec 19 10:10:13 2024 +0100
Updated README file.
commit 5f3fc44614a1f1a48e4af1e58cca62c613c5d441
Author: Thomas Dreibholz <[email protected]>
Date: Thu Dec 19 10:09:35 2024 +0100
Added simple, uncompressed examples for the documentation.
commit da919964fa93858ba7d73225f9bbacab9184e88f
Author: Thomas Dreibholz <[email protected]>
Date: Wed Dec 18 21:19:37 2024 +0100
Yet another test update.
commit 87663324e61da0711bc2b1fd9baceea54cf08f7f
Author: Thomas Dreibholz <[email protected]>
Date: Wed Dec 18 20:43:57 2024 +0100
Improved test.
commit 93c33cfcf7acf4e8f6f1c8c31595610662fccfed
Author: Thomas Dreibholz <[email protected]>
Date: Wed Dec 18 19:51:39 2024 +0100
Improved tests.
commit 7bbf6a7f9182ab76bc7b97f06f3016816364e58a
Author: Thomas Dreibholz <[email protected]>
Date: Fri Dec 13 22:45:31 2024 +0100
Version bump.
commit c7e94d078c8059c99fa8c7a0277d64b5f6abb9fb
Merge: c9827e6 42088ec
Author: Thomas Dreibholz <[email protected]>
Date: Fri Dec 13 20:47:21 2024 +0100
Merge branch 'master' of github.com:dreibh/hipercontracer
commit c9827e6ed8ea7509579c03deecd3b4ef8ab288d0
Author: Thomas Dreibholz <[email protected]>
Date: Fri Dec 13 20:38:49 2024 +0100
Packaging update.
commit 680e74c3171b98102eba67fdad79e15038715dfb
Author: Thomas Dreibholz <[email protected]>
Date: Fri Dec 13 20:38:27 2024 +0100
CMakeLists.txt update.
commit 42088ecb57fc801d3c06fbd4e82ed748d45786cc
Author: Thomas Dreibholz <[email protected]>
Date: Fri Dec 13 18:04:04 2024 +0100
Updated tests.
commit fc38d3b847f7912596e3177737bde44dce2acc72
Author: Thomas Dreibholz <[email protected]>
Date: Fri Dec 13 17:42:06 2024 +0100
Workflow update.
commit 4fa7cce19a034bb0ec3629da2ac9f085aee191af
Author: Thomas Dreibholz <[email protected]>
Date: Wed Dec 11 11:40:20 2024 +0100
Improved test script.
commit fc7c784bf84a42fa3fcd67b16f9376be754bd589
Author: Thomas Dreibholz <[email protected]>
Date: Tue Dec 10 11:06:20 2024 +0100
Further version 1 MongoDB export fixes.
commit f675050a63debdefc53ca3f2ef69f965bec7fc1b
Author: Thomas Dreibholz <[email protected]>
Date: Mon Dec 9 16:05:37 2024 +0100
Added missing version 1 export support for MonogDB.
commit a0c688744c59c76b2eb1365a5c65af2eb24d0028
Author: Thomas Dreibholz <[email protected]>
Date: Thu Dec 5 16:00:54 2024 +0100
Updated CI scripts
commit c8cf4999979e848f5cd3b53421ce71329d35ee16
Author: Thomas Dreibholz <[email protected]>
Date: Thu Dec 5 15:58:32 2024 +0100
Updated CI configuration
commit 59450f05abfb805bb8dc11a0ffa97067a623e520
Author: Thomas Dreibholz <[email protected]>
Date: Thu Dec 5 15:58:31 2024 +0100
Updated CI scripts
commit 7d380036ae28cba432b8a3527b1f6fe49d58591d
Author: Thomas Dreibholz <[email protected]>
Date: Thu Dec 5 15:58:29 2024 +0100
Updated build scripts
commit 32a86b1934d23e9180866ed2c6384f7db2ca3e6d
Author: Thomas Dreibholz <[email protected]>
Date: Thu Dec 5 15:46:57 2024 +0100
Yet another RPM spec fix.
commit 48f622c7770a149f6332439bb00e7fc73578c22c
Author: Thomas Dreibholz <[email protected]>
Date: Thu Dec 5 15:31:39 2024 +0100
RPM spec dependency fix.
commit 21b9a6541e861b60d9cc43ec15e35e5bc6b19873
Author: Thomas Dreibholz <[email protected]>
Date: Thu Dec 5 15:09:46 2024 +0100
RPM spec fix.
commit 47b507a8b74237b7ae3e45ef313fb77dbda138ba
Author: NorNet Praesum Presum <[email protected]>
Date: Thu Dec 5 12:36:20 2024 +0100
Improved MariaDB configuration.
commit 581212cf5df6a97e300c9d2f7d0c8f9e035257f8
Author: NorNet Praesum Presum <[email protected]>
Date: Thu Dec 5 12:16:52 2024 +0100
Configuration update.
commit d4f13b1b8b5d068870fee0319d9573ea45e92c01
Author: Thomas Dreibholz <[email protected]>
Date: Wed Dec 4 12:04:29 2024 +0100
Minor update.
commit c785059b90de2860ec673ef58ba2828172f08474
Author: Thomas Dreibholz <[email protected]>
Date: Tue Dec 3 22:04:45 2024 +0100
Workflow updates.
commit 84b404804aff5cd5284bc02ef178dc2bcc620320
Author: Thomas Dreibholz <[email protected]>
Date: Mon Dec 2 18:20:22 2024 +0100
Fixed cast for version 1 timestamp export.
commit 82f965f2d567058e94b9be17776ea9cdf855f9b8
Merge: a8144e2 75170c3
Author: Thomas Dreibholz <[email protected]>
Date: Mon Dec 2 11:32:27 2024 +0100
Merge branch 'dreibh/node-and-collector'
commit 75170c3f078b24b60d96d127c348ac36634bd9b3
Author: Thomas Dreibholz <[email protected]>
Date: Mon Dec 2 11:31:55 2024 +0100
MariaDB settings improvement.
commit a8144e2064bdcddd74da48efa4aa2e64844257b6
Author: Thomas Dreibholz <[email protected]>
Date: Mon Dec 2 11:26:06 2024 +0100
Version bump.
commit 2c156492e3e286fc3824e9ef2395abc16aeff42f
Merge: d0cee36 0adb40a
Author: Thomas Dreibholz <[email protected]>
Date: Mon Dec 2 11:25:20 2024 +0100
Merge branch 'dreibh/node-and-collector'
commit 0adb40acf7412f006c4de00aad2e3d34abb9c923
Author: Thomas Dreibholz <[email protected]>
Date: Mon Dec 2 11:24:34 2024 +0100
Some clean-ups.
commit c7130643755ba73b70c31b7da5b615774a9851f5
Author: Thomas Dreibholz <[email protected]>
Date: Mon Dec 2 11:20:46 2024 +0100
Work-around for empty XZ files.
commit f67fb9ded4b2f45a33a64ca80090a44243b60c2e
Author: Thomas Dreibholz <[email protected]>
Date: Fri Nov 29 15:14:29 2024 +0100
A fix.
commit 8674e9f81a3c3830c36ffd2fa6e95db397ac3c5b
Author: Thomas Dreibholz <[email protected]>
Date: Fri Nov 29 15:02:01 2024 +0100
PostgreSQL results handling improvement.
commit eb4f68304eb14871e5e561a50f72f4f0818a39ce
Author: Thomas Dreibholz <[email protected]>
Date: Fri Nov 29 11:28:08 2024 +0100
Manpage updates.
commit 2575fb4ae3d1f8154bead39980e23bb3f42d8e8d
Author: Thomas Dreibholz <[email protected]>
Date: Fri Nov 29 10:27:28 2024 +0100
Updated workflow.
commit e58406d7b5f7688d560e06875c35eedbe4fe7839
Author: Thomas Dreibholz <[email protected]>
Date: Fri Nov 29 10:27:06 2024 +0100
Updated CI script.
commit 32ff937a735f11ef8f1b536cd4ec65983930fa58
Author: Thomas Dreibholz <[email protected]>
Date: Thu Nov 28 17:32:19 2024 +0100
Improved HPCT Query error output.
commit d0cee36f4c854009ee03ab6951ff41086892b786
Author: Thomas Dreibholz <[email protected]>
Date: Thu Nov 21 09:13:02 2024 +0100
Updated workflow.
commit 385f47a4334fb20f8af93bce8d15284608d7e8ed
Author: Thomas Dreibholz <[email protected]>
Date: Thu Nov 21 09:05:17 2024 +0100
Updated CI scripts.
commit e752d1e4ac98c9846ab2570714c13c467fb08570
Author: Thomas Dreibholz <[email protected]>
Date: Thu Nov 21 09:04:02 2024 +0100
Updated script.
commit 804572295c5ae38598a0676f2c65ada1dee78a40
Merge: ece83e9 71cdf97
Author: Thomas Dreibholz <[email protected]>
Date: Wed Nov 20 16:52:08 2024 +0100
Merge branch 'dreibh/node-and-collector' of https://github.com/dreibh/hipercontracer into dreibh/node-and-collector
commit ece83e99950bba7a1f17db7af17e23fb00aa495c
Author: Thomas Dreibholz <[email protected]>
Date: Wed Nov 20 16:51:37 2024 +0100
Options handling fix.
commit 71cdf9739638d1c1ad3a7b7029cb5f5c7d5370b4
Author: Thomas Dreibholz <[email protected]>
Date: Wed Nov 20 16:20:39 2024 +0100
Updated manpages and Bash completions.
commit 1910ceabaab5bb1514138edbc1c2f9ac0dbc156f
Author: Thomas Dreibholz <[email protected]>
Date: Wed Nov 20 16:12:38 2024 +0100
Minor clean-ups.
commit 5c359ca164bd9a0f2b520e55e3099f4a75d7ebcf
Merge: ff3a8e2 b7593cc
Author: Thomas Dreibholz <[email protected]>
Date: Wed Nov 20 16:11:18 2024 +0100
Merge branch 'dreibh/node-and-collector' of https://github.com/dreibh/hipercontracer into dreibh/node-and-collector
commit ff3a8e252da2e0d31961a5a1511a38e1f89055b6
Author: Thomas Dreibholz <[email protected]>
Date: Wed Nov 20 16:10:27 2024 +0100
Improved scripts.
commit b7593cc011d874f7ab4541f1acfc5e54edd21031
Merge: d2a20c4 010e0d5
Author: Thomas Dreibholz <[email protected]>
Date: Wed Nov 20 16:09:47 2024 +0100
Merge branch 'dreibh/node-and-collector' of https://github.com/dreibh/hipercontracer into dreibh/node-and-collector
commit d2a20c4ad689c954fcfedfc4ae235a04e84c9a08
Author: Thomas Dreibholz <[email protected]>
Date: Wed Nov 20 16:09:07 2024 +0100
Another set of clean-ups.
commit 5ff00f767ce3695222b942857a464535d17eb231
Author: Thomas Dreibholz <[email protected]>
Date: Wed Nov 20 16:05:36 2024 +0100
Further clean-ups.
commit 59df3debc99eee0d64946919c15c053b477e9a5d
Author: Thomas Dreibholz <[email protected]>
Date: Wed Nov 20 16:03:13 2024 +0100
ShellCheck clean-ups.
commit 8c6825ee7b6a68ab3544c1fba975971c7c2e2029
Author: Thomas Dreibholz <[email protected]>
Date: Wed Nov 20 16:02:25 2024 +0100
Improved script.
commit 010e0d5e56ca247299cc3f955ab4b7371c7400dd
Merge: d90a2f8 9036b7f
Author: Thomas Dreibholz <[email protected]>
Date: Wed Nov 20 14:54:23 2024 +0100
Merge branch 'dreibh/node-and-collector' of https://github.com/dreibh/hipercontracer into dreibh/node-and-collector
commit d90a2f83774675ff5515476d4698ea5930c899c7
Author: Thomas Dreibholz <[email protected]>
Date: Wed Nov 20 14:54:07 2024 +0100
Minor clean-ups.
commit 9036b7f514187305ac41a37f419702a0c23d4bd6
Merge: 82b408f 091795a
Author: Thomas Dreibholz <[email protected]>
Date: Wed Nov 20 14:33:27 2024 +0100
Merge branch 'dreibh/node-and-collector' of github.com:dreibh/hipercontracer into dreibh/node-and-collector
commit 091795a0bda233b20032f8ff15b44d35e61e54c7
Author: Thomas Dreibholz <[email protected]>
Date: Wed Nov 20 14:32:52 2024 +0100
Permissions refinement.
commit 82b408fe40797280de1bc5e812eee244755e009e
Author: Thomas Dreibholz <[email protected]>
Date: Wed Nov 20 14:19:31 2024 +0100
Updated RPM spec file.
commit 7d2b97f77fa6e740073c29cf38a2b9e380126f0e
Author: Thomas Dreibholz <[email protected]>
Date: Wed Nov 20 14:19:08 2024 +0100
Configuration improvements.
commit 777e0c555ae9f28f9a571aafb0454ede2b884baa
Author: Thomas Dreibholz <[email protected]>
Date: Wed Nov 20 14:10:58 2024 +0100
Further improvements.
commit e1656c99c249a0d2fcf9613fee920dcdc69a6283
Author: Thomas Dreibholz <[email protected]>
Date: Wed Nov 20 13:40:04 2024 +0100
Improved scripts.
commit e071aeb1521223f434bd658515d1506cdddff38e
Author: NorNet Praesum Presum <[email protected]>
Date: Wed Nov 20 12:50:38 2024 +0100
Improved script.
commit 5250b5b34a4faa9a5ad25779385a30eb06b2a7f4
Author: Thomas Dreibholz <[email protected]>
Date: Wed Nov 20 12:41:22 2024 +0100
Some improvements.
commit c49ddee1987288ee0fd90f9caaaf960fb5edbb81
Author: Thomas Dreibholz <[email protected]>
Date: Wed Nov 20 12:34:22 2024 +0100
FreeBSD Makefile updates.
commit f23c16c81ade98b929326075053b23b35d9014a6
Merge: c25ceee 94fee74
Author: Thomas Dreibholz <[email protected]>
Date: Wed Nov 20 12:05:40 2024 +0100
Merge branch 'dreibh/node-and-collector' of https://github.com/dreibh/hipercontracer into dreibh/node-and-collector
commit c25ceee6b16c588f24dd5b2a2dc22034406b4866
Author: Thomas Dreibholz <[email protected]>
Date: Wed Nov 20 12:05:24 2024 +0100
A fix.
commit 94fee7435a8baae22acc07994771030d199d7c8b
Author: Thomas Dreibholz <[email protected]>
Date: Mon Nov 18 15:13:02 2024 +0100
Dependency fix for Debian/Ubuntu packaging.
commit 911509027a28009cec8121ef1d70965ecfe5744c
Author: Thomas Dreibholz <[email protected]>
Date: Mon Nov 18 13:27:09 2024 +0100
Packaging updates.
commit 4381d683f844f4b51212391deed19d049aa87447
Author: Thomas Dreibholz <[email protected]>
Date: Thu Nov 14 18:01:33 2024 +0100
RPM spec update.
commit 7afdaac3c415e45a75842cfbaeb47ab6547aafab
Author: Thomas Dreibholz <[email protected]>
Date: Thu Nov 14 17:56:11 2024 +0100
Further improvements.
commit 69a46ca749e830db78d94c84bcff5c0c275162f3
Author: Thomas Dreibholz <[email protected]>
Date: Thu Nov 14 17:33:22 2024 +0100
Improved scripts.
commit 4c131d4b2c9c2c6839880e7cb0e782f990d57a6a
Author: Thomas Dreibholz <[email protected]>
Date: Thu Nov 14 16:04:36 2024 +0100
RPM spec update.
commit c62e12a418aeec1bced016462d45fee3a4b0572b
Author: Thomas Dreibholz <[email protected]>
Date: Thu Nov 14 16:02:37 2024 +0100
Packaging update.
commit e169e9535b78ceb9336e85ec84bcaeea0779237b
Author: Thomas Dreibholz <[email protected]>
Date: Thu Nov 14 15:48:32 2024 +0100
Packaging update.
commit 47fe23bfd5da485df459a4c58c1510fe8d118a59
Author: Thomas Dreibholz <[email protected]>
Date: Thu Nov 14 15:48:16 2024 +0100
Updated CMakeLists.txt.
commit a2b120d8dfe3f33d29be0993d428a1f51f0a2925
Author: Thomas Dreibholz <[email protected]>
Date: Thu Nov 14 13:04:10 2024 +0100
Updated manpages.
commit 031368a750dab44f9bb69cb72bf264f6609a6694
Author: Thomas Dreibholz <[email protected]>
Date: Thu Nov 14 13:03:37 2024 +0100
Added further Node and Collector management scripts.
commit 152614848bd57bcce16db69ca0f56aec3c053246
Author: Thomas Dreibholz <[email protected]>
Date: Thu Nov 14 12:39:07 2024 +0100
Improved scripts.
commit 954c603a09fd0296858febafef6adec9c7c88dae
Author: Thomas Dreibholz <[email protected]>
Date: Thu Nov 14 12:11:01 2024 +0100
Minor updates.
commit 048d8b8ee393168917c86ae5a579e6ffc9e03638
Author: Thomas Dreibholz <[email protected]>
Date: Thu Nov 14 12:07:50 2024 +0100
Added node management scripts.
commit 0a2eda564dbbd2b3f3b0ad376fdd0452903f2e61
Author: Thomas Dreibholz <[email protected]>
Date: Wed Nov 13 08:55:01 2024 +0100
Updated build script.
commit 04bd6035b80668a1c047cf13bf7e1fd8064c3092
Author: Thomas Dreibholz <[email protected]>
Date: Tue Nov 12 20:56:29 2024 +0100
Improved Bash completions.
commit 25aca06a7abd39f21718bef2da7ebae4ec38dba4
Author: Thomas Dreibholz <[email protected]>
Date: Tue Nov 12 11:19:56 2024 +0100
Minor output update for checkEnvironment().
commit cf791720bd4717349fe9795058f2b88a94bfad73
Author: Thomas Dreibholz <[email protected]>
Date: Mon Nov 11 17:14:45 2024 +0100
Another update.
commit 4c2f80e20b253780defcf7bdc1d54a8ee9c3bffe
Author: NorNet Praesum Presum <[email protected]>
Date: Mon Nov 11 16:31:05 2024 +0100
Terminal output improvement.
commit 3d49ee9c40e1a13a4a4d60bf9a74a6c85c55cca9
Author: NorNet Praesum Presum <[email protected]>
Date: Mon Nov 11 10:47:16 2024 +0100
Terminal output improvement for Ping status.
commit 062c39a832a3794ec99ce18b18a7c3ced89144d3
Author: NorNet Praesum Presum <[email protected]>
Date: Mon Nov 11 10:46:19 2024 +0100
Bugfix: fixed rounding in time point to string conversion.
commit ed0cbfa19b888c46dacb24e99331ba95d873d007
Merge: b2b7da2 55b78b7
Author: Thomas Dreibholz <[email protected]>
Date: Fri Nov 8 12:34:05 2024 +0100
Merge branch 'master' of github.com:dreibh/hipercontracer
commit b2b7da20680fd7b194f183e75678826fe0290bc1
Author: Thomas Dreibholz <[email protected]>
Date: Fri Nov 8 12:33:58 2024 +0100
Updated script.
commit 55b78b7cff8594a65b89601a35bdc2390aa98b3b
Author: Thomas Dreibholz <[email protected]>
Date: Thu Nov 7 21:35:13 2024 +0100
Updated manpage.
commit c778fed442d643b7688b01192042b7c6516f9bf6
Author: Thomas Dreibholz <[email protected]>
Date: Thu Nov 7 21:31:20 2024 +0100
Provide readable console output, if no output file is written.
commit ae2fe554f24910ab9db21a2c3b6b50f16683913e
Author: Thomas Dreibholz <[email protected]>
Date: Thu Nov 7 21:30:31 2024 +0100
Automatically set source 0.0.0.0/:: if no other sources are given explicitly.
commit ab62b2f964b8ea176ffa4cb47a03e421cb9af287
Author: Thomas Dreibholz <[email protected]>
Date: Wed Nov 6 13:26:10 2024 +0100
Dependency fixes.
commit eaa8bf97160ee79d83f9df546d10260ffea91952
Merge: a5b968e 016bef3
Author: NorNet Praesum Presum <[email protected]>
Date: Tue Nov 5 16:55:55 2024 +0100
Merge branch 'master' of https://github.com/dreibh/hipercontracer
commit a5b968ebfd4ea69df2e5e3877c36a5fa64384dfb
Author: NorNet Praesum Presum <[email protected]>
Date: Tue Nov 5 16:55:31 2024 +0100
Improved DBeaver configuration export.
commit d7ff2d1c72439f37192928e488b0e37931863a1f
Author: NorNet Praesum Presum <[email protected]>
Date: Tue Nov 5 16:49:11 2024 +0100
Error code handling fix.
commit 016bef3f21590a60b0f144dd2692fce2aa473601
Author: Thomas Dreibholz <[email protected]>
Date: Tue Nov 5 11:45:31 2024 +0100
Some clean-ups.
commit 51ff99dbd54a4bc39b62cdccb7b856e3884178c8
Author: Thomas Dreibholz <[email protected]>
Date: Tue Nov 5 11:45:04 2024 +0100
Improved MariaDB client handling.
commit ede6872faa93247adc1d069f2c865733175f1fe0
Author: Thomas Dreibholz <[email protected]>
Date: Tue Nov 5 10:15:02 2024 +0100
Minor update.
commit b7edcaf96a22dace334376f742c112fcffc442af
Author: Thomas Dreibholz <[email protected]>
Date: Tue Nov 5 08:55:42 2024 +0100
Added BibTeX references.
commit 8939f9ff208cceeb27d792ab0655def5dc2738d5
Author: Thomas Dreibholz <[email protected]>
Date: Mon Nov 4 12:42:45 2024 +0100
Updated build script.
commit 91bb02ed2bac55fda0bd6fd2050c3e5ee6cc48a1
Author: Thomas Dreibholz <[email protected]>
Date: Mon Nov 4 09:48:04 2024 +0100
Updated CI scripts.
commit af7a28bb724bbc73a20ef4354f75ef87127255ee
Author: Thomas Dreibholz <[email protected]>
Date: Fri Nov 1 12:32:36 2024 +0100
ShellCheck clean-ups for Bash completions.
commit 1764cc605e3446c72a730017cca01631ebebd79c
Author: Thomas Dreibholz <[email protected]>
Date: Fri Nov 1 12:22:04 2024 +0100
Minor clean-ups.
commit 780a34e62108d3bab4cb47d8abd1916f676c46da
Author: Thomas Dreibholz <[email protected]>
Date: Fri Nov 1 12:21:28 2024 +0100
Improved HPCT Query manpage and Bash completion.
commit 6dda2d86ad0cb5ccea6895f67d21272950e3c865
Author: Thomas Dreibholz <[email protected]>
Date: Fri Nov 1 12:05:49 2024 +0100
Improved HPCT Viewer manpage.
commit 3e2ac72a97fac3441078cb4c40d8cabe02006ac0
Author: Thomas Dreibholz <[email protected]>
Date: Fri Nov 1 12:03:06 2024 +0100
Improved HPCT Query bash completion and manpage.
commit ffd036055d504896c88034384aec955385d453a8
Author: Thomas Dreibholz <[email protected]>
Date: Fri Nov 1 11:08:46 2024 +0100
Configuration improvements.
commit f72354c862963d6ea4ec3e7a84fa3b04ea9336b3
Author: Thomas Dreibholz <[email protected]>
Date: Fri Nov 1 09:21:45 2024 +0100
Configuration update.
commit a41757d5c86157eb1b3b25ca575f9777936ad6bf
Author: Thomas Dreibholz <[email protected]>
Date: Thu Oct 31 23:08:53 2024 +0100
Further clean-ups.
commit 445f4b75a37bc02f0ad3bb3622f5321298134c80
Author: Thomas Dreibholz <[email protected]>
Date: Thu Oct 31 22:33:02 2024 +0100
Fixed memory leak in destructor of MariaDBClient.
commit fcc2e87e3b5713e01566efc49ca1c6d35dfa6bcd
Author: Thomas Dreibholz <[email protected]>
Date: Thu Oct 31 22:21:01 2024 +0100
Some clean-ups.
commit efc81b92ce8058f3d830cedb42309d659ee8f723
Author: Thomas Dreibholz <[email protected]>
Date: Thu Oct 31 22:20:51 2024 +0100
Updated test.
commit 99df58b12a3295d9e522d26e3ad7dd54284bc3cc
Author: Thomas Dreibholz <[email protected]>
Date: Thu Oct 31 21:43:56 2024 +0100
Improved directory garbage collection.
commit ff797196bdf58aca66ff890a8b8d79ab3854cbe5
Author: Thomas Dreibholz <[email protected]>
Date: Thu Oct 31 17:33:23 2024 +0100
Further improvements.
commit 39a8e06344b9967235f211204e8a6aa5b4dc5420
Author: Thomas Dreibholz <[email protected]>
Date: Thu Oct 31 16:50:04 2024 +0100
Added garbage directory collection, for delayed removal of empty directories.
commit 8c17e2e9589da566a5e2663598c2aeaf6569770e
Merge: 3b78e47 010dbaa
Author: Thomas Dreibholz <[email protected]>
Date: Thu Oct 31 16:30:05 2024 +0100
Merge remote-tracking branch 'origin/master' into dreibh/importer-improvements
commit 3b78e4763cd51b8e47f1085c4bd1e8933218e476
Author: Thomas Dreibholz <[email protected]>
Date: Thu Oct 31 16:20:14 2024 +0100
Some testing.
commit 010dbaaa4c27a26d221bd04242d3c49ccc1a20ef
Author: Thomas Dreibholz <[email protected]>
Date: Thu Oct 31 14:56:29 2024 +0100
File name RegEx fix. It must not match .tmp files!
commit 9582ebba737a01f93a4b94a4fe03cb832df34170
Author: Thomas Dreibholz <[email protected]>
Date: Thu Oct 31 12:36:49 2024 +0100
HPCT Trigger improvements.
commit 30922a092f275fd7abb1a4b3e9f3572fc54b3806
Author: Thomas Dreibholz <[email protected]>
Date: Thu Oct 31 12:26:09 2024 +0100
Options improvements.
commit 7c1a45f6fff68bcc08c533227ff6e4812517321a
Author: Thomas Dreibholz <[email protected]>
Date: Thu Oct 31 12:15:27 2024 +0100
HPCT Trigger IPv4/IPv6 parameter inconsistency fix.
commit c7039b264e0ddafa2d0daccd13005ddd70fdd899
Author: Thomas Dreibholz <[email protected]>
Date: Thu Oct 31 12:14:12 2024 +0100
Manpage improvements.
commit c4753497a6e26a8a7fd4be934315982348c6005a
Author: Thomas Dreibholz <[email protected]>
Date: Thu Oct 31 11:48:21 2024 +0100
File name consistency for HPCT Trigger.
commit b19fa56e26ce5686b2abdf96e74f0a5a9d0bbfee
Author: Thomas Dreibholz <[email protected]>
Date: Thu Oct 31 11:47:18 2024 +0100
Configuration file name fix.
commit a7c565c07bbf13721021088e6d8ecb1f645620b4
Author: Thomas Dreibholz <[email protected]>
Date: Thu Oct 31 11:24:11 2024 +0100
Another CMakeLists.txt clean-up for the shared/static build options.
commit 6231b6f7086a5e862bcced38fd058512e6b1eed8
Author: Thomas Dreibholz <[email protected]>
Date: Thu Oct 31 11:10:01 2024 +0100
Dependency improvement.
commit fd2b5cd40e5b3c40ba8ad0f21138d80a032bd529
Author: Thomas Dreibholz <[email protected]>
Date: Thu Oct 31 11:09:55 2024 +0100
Updated CI script.
commit 9c6fc0a429197cc3c4f625d155f5fe122ce16281
Author: Thomas Dreibholz <[email protected]>
Date: Wed Oct 30 14:43:22 2024 +0100
Dependency improvements.
commit 02a62a763a448c643437d6e993b98b2d8f9745ca
Author: Thomas Dreibholz <[email protected]>
Date: Wed Oct 30 14:42:44 2024 +0100
"ip" is in /sbin/ip on Fedora systems. For Ubuntu/Debian, it is there as well as a symlink.
commit 8fe66c17ac064776cf2675fe70ced9707461a0d9
Author: Thomas Dreibholz <[email protected]>
Date: Wed Oct 30 14:26:04 2024 +0100
Improved dependencies.
commit bd136e434606b719fec88cb34807a381dccae78e
Author: Thomas Dreibholz <[email protected]>
Date: Wed Oct 30 13:49:25 2024 +0100