This repository has been archived by the owner on Sep 28, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathChangeLog
4917 lines (3019 loc) · 141 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
2010-02-21 Sunday 10:05 tdb
* NEWS (1.48, LIBSTATGRAB_0_17):
Add FreeBSD memory fix and correctly attribute other changes.
2010-02-21 Sunday 10:04 tdb
* src/libstatgrab/memory_stats.c (1.36, LIBSTATGRAB_0_17):
Support larger amounts of memory on FreeBSD.
2010-02-20 Saturday 18:17 tdb
* NEWS (1.47), src/libstatgrab/Makefile.am (1.35,
LIBSTATGRAB_0_17):
Bump library version and NEWS for next release.
2010-02-20 Saturday 18:15 tdb
* configure.in (1.100, LIBSTATGRAB_0_17):
Support FreeBSD 9.
2010-02-20 Saturday 17:55 tdb
* configure.in (1.99), src/libstatgrab/user_stats.c (1.29,
LIBSTATGRAB_0_17):
Support utmpx in user_stats as well as utmp.
2009-12-04 Friday 22:09 tdb
* src/libstatgrab/disk_stats.c (1.88, LIBSTATGRAB_0_17):
Make list of valid filesystem types dynamic on FreeBSD. Based on patch
by Baptiste Daroussin.
2009-05-16 Saturday 02:01 tdb
* src/libstatgrab/disk_stats.c (1.87):
FreeBSD has zfs these days.
2008-08-03 Sunday 18:43 tdb
* src/libstatgrab/disk_stats.c (1.86):
Add zfs to allowed FSs on Solaris.
2008-06-17 Tuesday 16:52 tdb
* src/libstatgrab/cpu_stats.c (1.28, LIBSTATGRAB_0_17):
Linux version 2.5.41 or later provides iowait data in /proc/stat. Use
it if it's available.
2008-05-24 Saturday 23:30 ats
* docs/: libstatgrab/Makefile.am (1.2), saidar/Makefile.am (1.3),
statgrab/Makefile.am (1.3) (utags: LIBSTATGRAB_0_17):
Avoid a GNU-make-ism in the docs.
2008-05-24 Saturday 22:05 ats
* configure.in (1.98):
Disable autoconf maintainer mode -- it's less broken in modern autoconf,
so it's useful now.
2008-03-17 Monday 08:50 tdb
* configure.in (1.97):
Post release version increment.
2008-03-13 Thursday 11:23 tdb
* NEWS (1.46, LIBSTATGRAB_0_16):
Add NEWS entry for 0.16 release.
2008-03-13 Thursday 10:29 tdb
* src/statgrab/statgrab-make-mrtg-config.in (1.10,
LIBSTATGRAB_0_17, LIBSTATGRAB_0_16):
Fix mrtg config generation on machines with no swap.
Patch by: Tom Carlson
2008-02-16 Saturday 16:11 tdb
* configure.in (1.96, LIBSTATGRAB_0_16):
saidar uses fabs which requires libm.
2007-11-06 Tuesday 22:35 tdb
* configure.in (1.95):
Some GNU/Linux builds have a slightly different name, like
linux-gnueabi. See Debian bug Bug#449586 for details.
2007-10-21 Sunday 19:43 tdb
* configure.in (1.94):
FreeBSD's main development line is now at 8.
2007-07-13 Friday 21:40 tdb
* configure.in (1.93):
Post-release version increment.
2007-07-13 Friday 21:40 tdb
* src/libstatgrab/Makefile.am (1.34, LIBSTATGRAB_0_16,
LIBSTATGRAB_0_15):
Bump library revision for 0.15 release.
2007-07-13 Friday 21:36 tdb
* NEWS (1.45, LIBSTATGRAB_0_15):
Update for 0.15 release.
2007-07-05 Thursday 17:46 tdb
* src/libstatgrab/swap_stats.c (1.25, LIBSTATGRAB_0_17,
LIBSTATGRAB_0_16, LIBSTATGRAB_0_15):
Last argument to sysctl is an integer not a pointer. It should be set
to 0 if the preceding argument is NULL.
2007-06-18 Monday 21:58 tdb
* src/libstatgrab/tools.c (1.65, LIBSTATGRAB_0_17,
LIBSTATGRAB_0_16, LIBSTATGRAB_0_15):
Update strlcat and strlcpy to latest OpenBSD versions.
Remove last references to strcat and strcpy.
Patch submitted by: David Love <[email protected]>
2007-06-18 Monday 21:56 tdb
* src/libstatgrab/memory_stats.c (1.35, LIBSTATGRAB_0_16,
LIBSTATGRAB_0_15):
Fix memory stats on OpenBSD - they were returning results in the wrong
units.
Patch submitted by: David Love <[email protected]>
2007-01-06 Saturday 01:01 tdb
* acinclude.m4 (1.3, LIBSTATGRAB_0_17, LIBSTATGRAB_0_16,
LIBSTATGRAB_0_15, LIBSTATGRAB_0_14):
Fix bug in curses detection - LIBS was not properly reset.
Also remove to redundant variable declarations.
2007-01-05 Friday 13:35 tdb
* configure.in (1.92, LIBSTATGRAB_0_15):
Post-release version increment.
2007-01-05 Friday 13:34 tdb
* NEWS (1.44, LIBSTATGRAB_0_14):
Add note about saidar bugfix, and set a release date.
2007-01-05 Friday 13:30 tdb
* src/saidar/saidar.c (1.41, LIBSTATGRAB_0_17, LIBSTATGRAB_0_16,
LIBSTATGRAB_0_15, LIBSTATGRAB_0_14):
Fix problem with saidar crashing when window is rapidly resized. Done by
moving the code out of the signal handler and in to the main loop, and
just having a global flag set by the signal handler.
2006-12-17 Sunday 01:06 tdb
* src/saidar/saidar.c (1.40):
Hide cursor when possible.
2006-12-01 Friday 14:21 tdb
* NEWS (1.43), acinclude.m4 (1.2), configure.in (1.91,
LIBSTATGRAB_0_14), src/saidar/saidar.c (1.39):
Sort out curses detection. It'll now detect ncurses before curses, and
cope with the header files being in include or include/ncurses. I think
this will work in every case.
2006-12-01 Friday 01:03 tdb
* src/saidar/saidar.c (1.38):
Colour is only supported if ncurses is being used.
2006-12-01 Friday 00:38 tdb
* src/saidar/saidar.c (1.37):
Standout doesn't work on all displays, so use bold too.
2006-12-01 Friday 00:26 tdb
* src/libstatgrab/Makefile.am (1.33, LIBSTATGRAB_0_14):
Bump library version for 0.14.
2006-12-01 Friday 00:06 tdb
* NEWS (1.42):
Provisional NEWS entry.
2006-11-30 Thursday 23:42 tdb
* docs/saidar/saidar.xml (1.3, LIBSTATGRAB_0_17, LIBSTATGRAB_0_16,
LIBSTATGRAB_0_15, LIBSTATGRAB_0_14), src/saidar/saidar.c (1.36):
Add support for coloured fields in saidar. Optionally enabled by using the
new -c flag. Manpage updated with details.
Mostly taken from a patch supplied by Angelina Carlton <[email protected]>,
but I made minor changes to layout and function.
2006-11-30 Thursday 23:03 tdb
* src/saidar/saidar.c (1.35):
Whitespace cleanup.
2006-10-30 Monday 08:20 tdb
* src/libstatgrab/memory_stats.c (1.34, LIBSTATGRAB_0_14):
Fix compile problem in last commit.
2006-10-29 Sunday 23:01 tdb
* src/libstatgrab/memory_stats.c (1.33):
Fix memory stats on OpenBSD. Currently untested.
Submitted by: [email protected]
2006-10-09 Monday 18:25 tdb
* src/libstatgrab/network_stats.c (1.80, LIBSTATGRAB_0_17,
LIBSTATGRAB_0_16, LIBSTATGRAB_0_15, LIBSTATGRAB_0_14):
When checking the interface up status check the link status as well.
Suggested by: "Vassallo, Michelangelo (Michelangelo)" <[email protected]>
2006-10-09 Monday 18:23 tdb
* src/libstatgrab/network_stats.c (1.79):
Move reading the interface name to earlier in the function. This fixes
problems for us on a host with slightly peculiar interfaces.
2006-10-09 Monday 15:47 tdb
* src/libstatgrab/process_stats.c (1.82, LIBSTATGRAB_0_17,
LIBSTATGRAB_0_16, LIBSTATGRAB_0_15, LIBSTATGRAB_0_14):
Fix process time_spent on Linux.
Spotted by: Fred Barnes
2006-10-09 Monday 15:09 tdb
* src/libstatgrab/: disk_stats.c (1.85, LIBSTATGRAB_0_16,
LIBSTATGRAB_0_15, LIBSTATGRAB_0_14), load_stats.c (1.19,
LIBSTATGRAB_0_17, LIBSTATGRAB_0_16, LIBSTATGRAB_0_15,
LIBSTATGRAB_0_14), network_stats.c (1.78), os_info.c (1.24,
LIBSTATGRAB_0_17, LIBSTATGRAB_0_16, LIBSTATGRAB_0_15,
LIBSTATGRAB_0_14), tools.c (1.64, LIBSTATGRAB_0_14):
Make sure we always close kstat.
Spotted by: "Javier Donaire" <[email protected]> (in load_stats.c)
2006-10-09 Monday 14:52 tdb
* src/libstatgrab/cpu_stats.c (1.27, LIBSTATGRAB_0_16,
LIBSTATGRAB_0_15, LIBSTATGRAB_0_14):
Attempt to fix cpu stats on solaris. It seems iowait covers all the
various types of wait, including IO and swap. So instead we do:
iowait = cs.cpu_sysinfo.wait[W_IO] + cs.cpu_sysinfo.wait[W_PIO]
swap = cs.cpu_sysinfo.wait[W_SWAP]
I'm also not sure if cs.cpu_sysinfo.cpu[CPU_STATES] means anything.
2006-04-24 Monday 14:31 tdb
* configure.in (1.90):
Allow to build on NetBSD 3.
Submitted by: Wijnand Wiersma <[email protected]>
2006-03-18 Saturday 10:19 tdb
* configure.in (1.89):
Post-release version increment.
2006-03-18 Saturday 10:17 tdb
* src/libstatgrab/Makefile.am (1.32, LIBSTATGRAB_0_13):
Modify shared library version appropriately, I think.
2006-03-17 Friday 19:35 tdb
* NEWS (1.41, LIBSTATGRAB_0_13):
Add latest changes to NEWS file.
2006-03-17 Friday 13:29 ats
* src/libstatgrab/disk_stats.c (1.84, LIBSTATGRAB_0_13):
Have nfs be a legal filesystem type on all platforms.
2006-03-17 Friday 13:23 ats
* src/statgrab/statgrab.c (1.37, LIBSTATGRAB_0_17,
LIBSTATGRAB_0_16, LIBSTATGRAB_0_15, LIBSTATGRAB_0_14,
LIBSTATGRAB_0_13):
Replace both spaces and dots with underscores in name components, so
that filesystem paths containing dots work correctly.
2006-03-11 Saturday 13:41 tdb
* NEWS (1.40):
Provisional NEWS entry.
2006-03-11 Saturday 13:11 tdb
* src/libstatgrab/statgrab.h (1.58, LIBSTATGRAB_0_17,
LIBSTATGRAB_0_16, LIBSTATGRAB_0_15, LIBSTATGRAB_0_14,
LIBSTATGRAB_0_13):
Nasty hack to make inclusion in C++ code easier. We seem to be getting
regular reports of problems with C++, and this should fix them.
2006-03-02 Thursday 09:41 tdb
* configure.in (1.88, LIBSTATGRAB_0_13):
Add AM_MAINTAINER_MODE.
2006-02-18 Saturday 15:24 tdb
* src/libstatgrab/win32.c (1.2, LIBSTATGRAB_0_17, LIBSTATGRAB_0_16,
LIBSTATGRAB_0_15, LIBSTATGRAB_0_14, LIBSTATGRAB_0_13):
Apply fix to Win32 code.
Patch by: "Tim Teulings" <[email protected]>
2006-01-22 Sunday 18:10 tdb
* src/libstatgrab/network_stats.c (1.77, LIBSTATGRAB_0_13):
Fix bug on Solaris; network interfaces always seem to be up.
Reported by: [email protected]
2005-11-11 Friday 23:37 tdb
* docs/: saidar/Makefile.am (1.2), statgrab/Makefile.am (1.2)
(utags: LIBSTATGRAB_0_13, LIBSTATGRAB_0_14, LIBSTATGRAB_0_15,
LIBSTATGRAB_0_16):
If configure options used not to install tools then don't install
manpages for them either. Noticed by looking at NetBSD pkg :-)
2005-09-24 Saturday 14:29 tdb
* configure.in (1.87), examples/cpu_usage.c (1.11,
LIBSTATGRAB_0_17, LIBSTATGRAB_0_16, LIBSTATGRAB_0_15,
LIBSTATGRAB_0_14, LIBSTATGRAB_0_13), src/libstatgrab/Makefile.am
(1.31), src/libstatgrab/cpu_stats.c (1.26, LIBSTATGRAB_0_13),
src/libstatgrab/disk_stats.c (1.83), src/libstatgrab/error.c (1.17,
LIBSTATGRAB_0_17, LIBSTATGRAB_0_16, LIBSTATGRAB_0_15,
LIBSTATGRAB_0_14, LIBSTATGRAB_0_13), src/libstatgrab/load_stats.c
(1.18, LIBSTATGRAB_0_13), src/libstatgrab/memory_stats.c (1.32,
LIBSTATGRAB_0_13), src/libstatgrab/network_stats.c (1.76),
src/libstatgrab/os_info.c (1.23, LIBSTATGRAB_0_13),
src/libstatgrab/page_stats.c (1.23, LIBSTATGRAB_0_17,
LIBSTATGRAB_0_16, LIBSTATGRAB_0_15, LIBSTATGRAB_0_14,
LIBSTATGRAB_0_13), src/libstatgrab/process_stats.c (1.81,
LIBSTATGRAB_0_13), src/libstatgrab/statgrab.h (1.57),
src/libstatgrab/swap_stats.c (1.24, LIBSTATGRAB_0_14,
LIBSTATGRAB_0_13), src/libstatgrab/tools.c (1.63,
LIBSTATGRAB_0_13), src/libstatgrab/tools.h (1.26, LIBSTATGRAB_0_17,
LIBSTATGRAB_0_16, LIBSTATGRAB_0_15, LIBSTATGRAB_0_14,
LIBSTATGRAB_0_13), src/libstatgrab/user_stats.c (1.28,
LIBSTATGRAB_0_16, LIBSTATGRAB_0_15, LIBSTATGRAB_0_14,
LIBSTATGRAB_0_13), src/libstatgrab/win32.c (1.1),
src/libstatgrab/win32.h (1.1, LIBSTATGRAB_0_17, LIBSTATGRAB_0_16,
LIBSTATGRAB_0_15, LIBSTATGRAB_0_14, LIBSTATGRAB_0_13),
src/statgrab/statgrab.c (1.36):
Add WIN32 support via MINGW. We'll need to add stuff to the README file
about what this requires to build.
All the hard work done by: skel
2005-09-07 Wednesday 15:15 tdb
* src/saidar/saidar.c (1.34, LIBSTATGRAB_0_13):
Simple hack to truncate disk/interface/mount names to fit in to the
field. Before this they just overwrote stuff and it got messy.
Hardly an elegant fix, btw ;)
2005-07-30 Saturday 14:23 ats
* src/libstatgrab/network_stats.c (1.75, LIBSTATGRAB_0_12):
Use <asm/types.h> to define __u32 etc., and always define u32 etc. because
the Debian 2.6.0-test9 headers still use them in ethtool.h.
2005-07-30 Saturday 11:42 tdb
* configure.in (1.86):
Post-release version increment.
2005-07-30 Saturday 11:39 tdb
* NEWS (1.39, LIBSTATGRAB_0_12):
Put in the date for the 0.12 release.
2005-07-18 Monday 15:45 ats
* NEWS (1.38):
Fix a typo.
2005-07-18 Monday 15:08 tdb
* NEWS (1.37), src/libstatgrab/Makefile.am (1.30,
LIBSTATGRAB_0_12):
Prepare for 0.12 release.
2005-07-13 Wednesday 21:52 tdb
* configure.in (1.85, LIBSTATGRAB_0_12):
Add support for FreeBSD 7 (which is exactly like 6 at the moment, so
it's bound to work :)
2005-07-13 Wednesday 14:01 tdb
* docs/libstatgrab/sg_get_fs_stats.xml (1.5, LIBSTATGRAB_0_17,
LIBSTATGRAB_0_16, LIBSTATGRAB_0_15, LIBSTATGRAB_0_14,
LIBSTATGRAB_0_13), src/libstatgrab/disk_stats.c (1.82),
src/libstatgrab/statgrab.h (1.56), src/statgrab/statgrab.c (1.35)
(utags: LIBSTATGRAB_0_12):
Add more fs stats.
Patches provided by: Roman Neuhauser
2005-07-13 Wednesday 10:31 tdb
* docs/libstatgrab/sg_get_network_iface_stats.xml (1.7,
LIBSTATGRAB_0_17, LIBSTATGRAB_0_16, LIBSTATGRAB_0_15,
LIBSTATGRAB_0_14, LIBSTATGRAB_0_13, LIBSTATGRAB_0_12),
examples/network_iface_stats.c (1.7, LIBSTATGRAB_0_17,
LIBSTATGRAB_0_16, LIBSTATGRAB_0_15, LIBSTATGRAB_0_14,
LIBSTATGRAB_0_13, LIBSTATGRAB_0_12),
src/libstatgrab/network_stats.c (1.74), src/libstatgrab/statgrab.h
(1.55), src/statgrab/statgrab.c (1.34):
Change the name of the duplex value from "dup" to "duplex". This will
break the ABI, but we're changing the fs stats anyway. The API change
is minimal, so hopefully won't affect too many people.
2005-04-26 Tuesday 11:31 tdb
* docs/saidar/saidar.xml (1.2, LIBSTATGRAB_0_13, LIBSTATGRAB_0_12):
Bit more detail about saidar.
2005-04-25 Monday 15:12 tdb
* src/libstatgrab/network_stats.c (1.73):
Apply patch from Scott Lampert to make the network ethtool bits compile
on Linux 2.6.
2005-04-25 Monday 13:37 tdb
* configure.in (1.84), docs/Makefile.am (1.28, LIBSTATGRAB_0_17,
LIBSTATGRAB_0_16, LIBSTATGRAB_0_15, LIBSTATGRAB_0_14,
LIBSTATGRAB_0_13, LIBSTATGRAB_0_12), docs/libstatgrab/Makefile.am
(1.1, LIBSTATGRAB_0_16, LIBSTATGRAB_0_15, LIBSTATGRAB_0_14,
LIBSTATGRAB_0_13, LIBSTATGRAB_0_12), docs/saidar/Makefile.am (1.1,
LIBSTATGRAB_0_12), docs/saidar/saidar.xml (1.1),
docs/statgrab/Makefile.am (1.1, LIBSTATGRAB_0_12),
docs/statgrab/statgrab-make-mrtg-config.xml (1.1, LIBSTATGRAB_0_17,
LIBSTATGRAB_0_16, LIBSTATGRAB_0_15, LIBSTATGRAB_0_14,
LIBSTATGRAB_0_13, LIBSTATGRAB_0_12),
docs/statgrab/statgrab-make-mrtg-index.xml (1.1, LIBSTATGRAB_0_17,
LIBSTATGRAB_0_16, LIBSTATGRAB_0_15, LIBSTATGRAB_0_14,
LIBSTATGRAB_0_13, LIBSTATGRAB_0_12), docs/statgrab/statgrab.xml
(1.1, LIBSTATGRAB_0_17, LIBSTATGRAB_0_16, LIBSTATGRAB_0_15,
LIBSTATGRAB_0_14, LIBSTATGRAB_0_13, LIBSTATGRAB_0_12):
Add manpages for the various tools.
2005-04-25 Monday 13:04 tdb
* src/statgrab/statgrab.c (1.33):
Fix consistency problem in usage output.
2005-04-25 Monday 12:25 tdb
* docs/libstatgrab/: sg_get_cpu_stats.xml (1.7, LIBSTATGRAB_0_17,
LIBSTATGRAB_0_16, LIBSTATGRAB_0_15, LIBSTATGRAB_0_14,
LIBSTATGRAB_0_13, LIBSTATGRAB_0_12), sg_get_disk_io_stats.xml (1.9,
LIBSTATGRAB_0_17, LIBSTATGRAB_0_16, LIBSTATGRAB_0_15,
LIBSTATGRAB_0_14, LIBSTATGRAB_0_13, LIBSTATGRAB_0_12),
sg_get_fs_stats.xml (1.4), sg_get_host_info.xml (1.6,
LIBSTATGRAB_0_17, LIBSTATGRAB_0_16, LIBSTATGRAB_0_15,
LIBSTATGRAB_0_14, LIBSTATGRAB_0_13, LIBSTATGRAB_0_12),
sg_get_load_stats.xml (1.6, LIBSTATGRAB_0_17, LIBSTATGRAB_0_16,
LIBSTATGRAB_0_15, LIBSTATGRAB_0_14, LIBSTATGRAB_0_13,
LIBSTATGRAB_0_12), sg_get_mem_stats.xml (1.6, LIBSTATGRAB_0_17,
LIBSTATGRAB_0_16, LIBSTATGRAB_0_15, LIBSTATGRAB_0_14,
LIBSTATGRAB_0_13, LIBSTATGRAB_0_12), sg_get_network_iface_stats.xml
(1.6), sg_get_network_io_stats.xml (1.8, LIBSTATGRAB_0_17,
LIBSTATGRAB_0_16, LIBSTATGRAB_0_15, LIBSTATGRAB_0_14,
LIBSTATGRAB_0_13, LIBSTATGRAB_0_12), sg_get_page_stats.xml (1.6,
LIBSTATGRAB_0_17, LIBSTATGRAB_0_16, LIBSTATGRAB_0_15,
LIBSTATGRAB_0_14, LIBSTATGRAB_0_13, LIBSTATGRAB_0_12),
sg_get_process_stats.xml (1.10, LIBSTATGRAB_0_17, LIBSTATGRAB_0_16,
LIBSTATGRAB_0_15, LIBSTATGRAB_0_14, LIBSTATGRAB_0_13,
LIBSTATGRAB_0_12), sg_get_user_stats.xml (1.6, LIBSTATGRAB_0_17,
LIBSTATGRAB_0_16, LIBSTATGRAB_0_15, LIBSTATGRAB_0_14,
LIBSTATGRAB_0_13, LIBSTATGRAB_0_12), statgrab.xml (1.14,
LIBSTATGRAB_0_17, LIBSTATGRAB_0_16, LIBSTATGRAB_0_15,
LIBSTATGRAB_0_14, LIBSTATGRAB_0_13, LIBSTATGRAB_0_12):
Move by repocopy the libstatgrab docs in to a subdirectory. This is so
I can create separate directories for statgrab/saidar docs.
2005-04-25 Monday 12:01 tdb
* configure.in (1.83), src/Makefile.am (1.5, LIBSTATGRAB_0_17,
LIBSTATGRAB_0_16, LIBSTATGRAB_0_15, LIBSTATGRAB_0_14,
LIBSTATGRAB_0_13, LIBSTATGRAB_0_12):
Nuke sgps - Pete's decided it's actually rather pointless as it doesn't
offer anything that other ps programs don't.
2005-04-25 Monday 11:59 tdb
* PLATFORMS (1.10, LIBSTATGRAB_0_17, LIBSTATGRAB_0_16,
LIBSTATGRAB_0_15, LIBSTATGRAB_0_14, LIBSTATGRAB_0_13,
LIBSTATGRAB_0_12):
Update list of platforms - we've tested on Solaris 10.
2005-04-13 Wednesday 12:50 ats
* src/libstatgrab/disk_stats.c (1.81):
Rework Linux partition detection to detect devices called "c0d0" (etc.)
and not assume they're partitions -- the DAC* and Compaq RAID devices do
this.
2005-04-04 Monday 15:27 tdb
* configure.in (1.82), src/Makefile.am (1.4):
Add build bits for sgps.
2005-03-01 Tuesday 18:14 tdb
* configure.in (1.81):
Post release version increment.
2005-03-01 Tuesday 18:13 tdb
* src/libstatgrab/Makefile.am (1.29, LIBSTATGRAB_0_11_1):
Update for new release.
2005-03-01 Tuesday 18:12 tdb
* NEWS (1.36, LIBSTATGRAB_0_11_1):
Prepare NEWS for new release.
2005-02-24 Thursday 18:35 tdb
* src/libstatgrab/network_stats.c (1.72, LIBSTATGRAB_0_11_1):
The labels in this case statement were the wrong way round, so the duplex
settings were being reported incorrectly on linux. Use the defines instead
of the values so we can be sure they're right.
Spotted by Pete.
2005-02-24 Thursday 12:34 tdb
* src/libstatgrab/disk_stats.c (1.80, LIBSTATGRAB_0_11_1):
Add NFS to list of file systems that we return information for.
2005-01-17 Monday 16:34 tdb
* src/saidar/saidar.c (1.33, LIBSTATGRAB_0_12, LIBSTATGRAB_0_11_1):
Make size_conv deal with negative numbers too (it does happen :-).
2004-11-08 Monday 18:47 tdb
* NEWS (1.35, LIBSTATGRAB_0_11):
Give Roy credit for the work on HP-UX.
2004-11-08 Monday 18:46 tdb
* configure.in (1.80, LIBSTATGRAB_0_11_1):
Post-release version increment.
2004-11-08 Monday 18:45 tdb
* NEWS (1.34):
Reword NEWS slightly.
2004-11-08 Monday 18:42 tdb
* NEWS (1.33):
Update NEWS for new release.
2004-11-08 Monday 08:07 ats
* src/libstatgrab/network_stats.c (1.71, LIBSTATGRAB_0_11):
Raise SG_ERROR_UNSUPPORTED for interface stats on Cygwin and HP-UX.
2004-11-07 Sunday 15:06 ats
* src/libstatgrab/disk_stats.c (1.79, LIBSTATGRAB_0_11):
HP-UX disk IO calculation, version 3.
2004-11-07 Sunday 12:36 ats
* src/saidar/saidar.c (1.32, LIBSTATGRAB_0_11):
Put back the dummy argument -- I know it's not used, but signal handlers
have to have it.
2004-11-07 Sunday 12:34 ats
* src/libstatgrab/tools.c (1.62, LIBSTATGRAB_0_12,
LIBSTATGRAB_0_11_1, LIBSTATGRAB_0_11):
Linux always has atoll, but Cygwin doesn't.
2004-11-07 Sunday 12:32 ats
* src/libstatgrab/process_stats.c (1.80, LIBSTATGRAB_0_12,
LIBSTATGRAB_0_11_1, LIBSTATGRAB_0_11):
Always include string.h (for strcmp).
2004-11-07 Sunday 12:31 ats
* src/libstatgrab/os_info.c (1.22, LIBSTATGRAB_0_12,
LIBSTATGRAB_0_11_1, LIBSTATGRAB_0_11):
Add tools.h include.
2004-11-07 Sunday 12:30 ats
* src/libstatgrab/network_stats.c (1.70):
HP-UX can't do network stats.
2004-11-07 Sunday 12:29 ats
* src/libstatgrab/load_stats.c (1.17, LIBSTATGRAB_0_12,
LIBSTATGRAB_0_11_1, LIBSTATGRAB_0_11):
loadav is only needed on non-HP-UX.
2004-11-06 Saturday 23:54 tdb
* src/libstatgrab/: disk_stats.c (1.78), process_stats.c (1.79),
tools.c (1.61):
Cast numbers to be the same type when doing a comparison.
2004-11-06 Saturday 19:09 tdb
* src/libstatgrab/tools.c (1.60):
atoll is only used in one place in libstatgrab, so move it's definition to
before that one use. Given this hasn't caused us problems I'm guessing that
atoll is actually available on Linux and Cygwin, which would make having
the function here void.
If so, it can simply be removed instead.
2004-11-06 Saturday 19:02 tdb
* src/saidar/saidar.c (1.31):
Remove another unused parameter.
2004-11-06 Saturday 18:58 tdb
* examples/: os_info.c (1.9), vm_stats.c (1.12) (utags:
LIBSTATGRAB_0_11, LIBSTATGRAB_0_11_1, LIBSTATGRAB_0_12,
LIBSTATGRAB_0_13, LIBSTATGRAB_0_14, LIBSTATGRAB_0_15,
LIBSTATGRAB_0_16, LIBSTATGRAB_0_17):
Remove a couple of unused parameters.
2004-11-06 Saturday 15:41 ats
* src/libstatgrab/swap_stats.c (1.23, LIBSTATGRAB_0_12,
LIBSTATGRAB_0_11_1, LIBSTATGRAB_0_11):
Rework the HP-UX swap stats code to fetch batches of swap devices.
(Untested.)
2004-11-06 Saturday 15:36 ats
* src/libstatgrab/disk_stats.c (1.77):
Add a FIXME (it'd be preferable to avoid the /dev/dsk search when
possible).
2004-11-06 Saturday 15:33 ats
* src/libstatgrab/disk_stats.c (1.76):
Fix IO bytes calculation -- the value returned is in 16-bit words, so
divide by two to get bytes.
2004-11-06 Saturday 15:32 ats
* src/libstatgrab/disk_stats.c (1.75):
Rework the HP-UX disk stats code to fetch batches of disks. (Untested.)
2004-11-06 Saturday 15:31 ats
* src/libstatgrab/process_stats.c (1.78):
Oops -- make the loop work. (Untested.)
2004-11-06 Saturday 15:10 ats
* src/libstatgrab/process_stats.c (1.77):
Rework the HP-UX process stats code to fetch batches of processes in
fewer system calls. (Untested.)
2004-11-06 Saturday 14:55 ats
* src/libstatgrab/: memory_stats.c (1.31, LIBSTATGRAB_0_12,
LIBSTATGRAB_0_11_1, LIBSTATGRAB_0_11), os_info.c (1.21), tools.c
(1.59), tools.h (1.25, LIBSTATGRAB_0_12, LIBSTATGRAB_0_11_1,
LIBSTATGRAB_0_11):
Add sg_get_pstat_static for HP-UX. (Untested.)
2004-11-01 Monday 20:36 ats
* src/libstatgrab/disk_stats.c (1.74):
Correct comment.
2004-11-01 Monday 20:34 ats
* configure.in (1.79, LIBSTATGRAB_0_11), src/libstatgrab/tools.c
(1.58):
We don't need the realloc workaround -- we don't rely on the GNU
behaviour.
2004-11-01 Monday 18:43 tdb
* docs/libstatgrab/statgrab.xml (1.13, LIBSTATGRAB_0_11_1,
LIBSTATGRAB_0_11):
Lets not forget the documentation.
2004-11-01 Monday 18:33 tdb
* configure.in (1.78), src/libstatgrab/Makefile.am (1.28,
LIBSTATGRAB_0_11):
Next release will be 0.11.
2004-11-01 Monday 18:30 tdb
* PLATFORMS (1.9, LIBSTATGRAB_0_11_1, LIBSTATGRAB_0_11),
configure.in (1.77), src/libstatgrab/cpu_stats.c (1.25,
LIBSTATGRAB_0_12, LIBSTATGRAB_0_11_1, LIBSTATGRAB_0_11),
src/libstatgrab/disk_stats.c (1.73), src/libstatgrab/error.c (1.16,
LIBSTATGRAB_0_12, LIBSTATGRAB_0_11_1, LIBSTATGRAB_0_11),
src/libstatgrab/load_stats.c (1.16), src/libstatgrab/memory_stats.c
(1.30), src/libstatgrab/os_info.c (1.20),
src/libstatgrab/process_stats.c (1.76), src/libstatgrab/statgrab.h
(1.54, LIBSTATGRAB_0_11_1, LIBSTATGRAB_0_11),
src/libstatgrab/swap_stats.c (1.22), src/libstatgrab/tools.c
(1.57), src/libstatgrab/user_stats.c (1.27, LIBSTATGRAB_0_12,
LIBSTATGRAB_0_11_1, LIBSTATGRAB_0_11):
Merge in patch to provide support for HP-UX 11.11.
Contributed by Roy Keene - thanks Roy!
2004-10-23 Saturday 15:36 ats
* src/statgrab/statgrab-make-mrtg-config.in (1.9, LIBSTATGRAB_0_15,
LIBSTATGRAB_0_14, LIBSTATGRAB_0_13, LIBSTATGRAB_0_12,
LIBSTATGRAB_0_11_1, LIBSTATGRAB_0_11):
The maximum value must be an integer.
2004-10-11 Monday 12:53 tdb
* src/saidar/saidar.c (1.30):
Fix when used percentage hits 100%.
2004-09-10 Friday 16:15 ats
* src/libstatgrab/process_stats.c (1.75):
Fix some nasty repeated if()s (reported by Fred Barnes).
2004-08-24 Tuesday 21:45 tdb
* configure.in (1.76):
Post release version increment.
2004-08-24 Tuesday 20:02 tdb
* NEWS (1.32, LIBSTATGRAB_0_10_3):
Add mention of FreeBSD 6.0 -CURRENT support.
2004-08-24 Tuesday 20:00 tdb
* configure.in (1.75, LIBSTATGRAB_0_10_3):
Add support for FreeBSD 6.0.
Drop version back to get this into the new release.
2004-08-23 Monday 17:09 tdb
* configure.in (1.74):
Post release version increment.
2004-08-23 Monday 16:04 ats
* src/statgrab/statgrab-make-mrtg-config.in (1.8,
LIBSTATGRAB_0_10_3):
Fix logic error: maximum network speeds should be KiB, not Mbit.
2004-08-23 Monday 15:56 ats
* NEWS (1.31):
Update NEWS for statgrab changes.
2004-08-10 Tuesday 22:10 ats
* src/statgrab/statgrab.c (1.32, LIBSTATGRAB_0_11_1,
LIBSTATGRAB_0_11, LIBSTATGRAB_0_10_3):
Repair whitespace damage in help message. (It's still there in the
other code.)
2004-08-10 Tuesday 22:08 ats
* src/statgrab/statgrab.c (1.31):
"Mebibyte", not "mibibyte".
2004-08-10 Tuesday 20:13 ats
* src/statgrab/statgrab-make-mrtg-config.in (1.7):
We do know the interface speed these days, so we don't (always) have to
guess.
2004-08-10 Tuesday 20:07 ats
* src/statgrab/statgrab-make-mrtg-config.in (1.6):
Use -K and -f to produce better MRTG output.
2004-08-10 Tuesday 19:58 ats
* src/statgrab/statgrab.c (1.30):
Add -K, -M and -G to display byte counts in kibibytes, mibibytes and
gibibytes (mostly for MRTG use, since it can't deal with numbers bigger
than 32 bits).
2004-08-10 Tuesday 19:50 ats
* src/statgrab/statgrab.c (1.29):
Add -f option to scale floating-point values to integers for MRTG
output.
2004-07-27 Tuesday 21:25 tdb
* configure.in (1.73):
Post release version increment.
2004-07-27 Tuesday 21:24 tdb
* NEWS (1.30), src/libstatgrab/Makefile.am (1.27,
LIBSTATGRAB_0_10_3) (utags: LIBSTATGRAB_0_10_2):
Fix the shared library version.
2004-07-26 Monday 00:39 tdb
* NEWS (1.29, LIBSTATGRAB_0_10_1):
Fix release date.
2004-07-18 Sunday 22:31 ats
* src/libstatgrab/memory_stats.c (1.29, LIBSTATGRAB_0_10_3,
LIBSTATGRAB_0_10_2, LIBSTATGRAB_0_10_1):
getpagesize() cannot fail.
2004-07-18 Sunday 22:30 ats
* src/libstatgrab/: cpu_stats.c (1.24, LIBSTATGRAB_0_10_3,
LIBSTATGRAB_0_10_2, LIBSTATGRAB_0_10_1), disk_stats.c (1.72,
LIBSTATGRAB_0_10_3, LIBSTATGRAB_0_10_2, LIBSTATGRAB_0_10_1),
memory_stats.c (1.28), network_stats.c (1.69, LIBSTATGRAB_0_10_3,
LIBSTATGRAB_0_10_2, LIBSTATGRAB_0_10_1), os_info.c (1.19,
LIBSTATGRAB_0_10_3, LIBSTATGRAB_0_10_2, LIBSTATGRAB_0_10_1),
page_stats.c (1.22, LIBSTATGRAB_0_12, LIBSTATGRAB_0_11_1,
LIBSTATGRAB_0_11, LIBSTATGRAB_0_10_3, LIBSTATGRAB_0_10_2,
LIBSTATGRAB_0_10_1), process_stats.c (1.74, LIBSTATGRAB_0_10_3,
LIBSTATGRAB_0_10_2, LIBSTATGRAB_0_10_1), swap_stats.c (1.21,
LIBSTATGRAB_0_10_3, LIBSTATGRAB_0_10_2, LIBSTATGRAB_0_10_1),
tools.c (1.56, LIBSTATGRAB_0_10_3, LIBSTATGRAB_0_10_2,
LIBSTATGRAB_0_10_1), user_stats.c (1.26, LIBSTATGRAB_0_10_3,
LIBSTATGRAB_0_10_2, LIBSTATGRAB_0_10_1):
Use sg_set_error_with_errno whenever errno's valid.
Change the one user of SG_ERROR_ENOENT to SG_ERROR_SYSCTL instead (since
that's what it should have been).
2004-07-18 Sunday 21:48 ats