File: lvm

package info (click to toggle)
logwatch 7.14-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,572 kB
  • sloc: perl: 8,290; sh: 354; makefile: 38
file content (177 lines) | stat: -rw-r--r-- 6,262 bytes parent folder | download | duplicates (2)
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

########################################################
# Please file all bug reports, patches, and feature
# requests under:
#      https://sourceforge.net/p/logwatch/_list/tickets
# Help requests and discusion can be filed under:
#      https://sourceforge.net/p/logwatch/discussion/
########################################################

########################################################
## Copyright (c) 2014-2019 Orion Poplawski
## Covered under the included MIT/X-Consortium License:
##    http://www.opensource.org/licenses/mit-license.php
## All modifications and contributions by other persons to
## this script are assumed to have been donated to the
## Logwatch project and thus assume the above copyright
## and licensing terms.  If you want to make contributions
## under your own copyright or a different license this
## must be explicitly stated in the contribution an the
## Logwatch project reserves the right to not accept such
## contributions.  If you have made significant
## contributions to this script and want to claim
## copyright please contact logwatch-devel@lists.sourceforge.net.
#########################################################

use strict;
use warnings;
my $Detail = $ENV{'LOGWATCH_DETAIL_LEVEL'} || 0;
my $PoolThreshold = $ENV{'pool_threshold'} || 0;
my $PoolMetadataThreshold = $ENV{'pool_metadata_threshold'} || 0;
my %Active;
my %PoolUsed;
my %PoolMetadataUsed;
my $SnapshotThreshold = $ENV{'snapshot_threshold'} || 0;
my %SnapshotUsed;
my %MonitoringOn;
my %MonitoringOff;
my %MonitoringSnapshot;
my %MonitoringSnapshotOff;
my %Resize;
my %OtherList;

while (defined(my $ThisLine = <STDIN>)) {
   chomp($ThisLine);
   # Seeing leading space on Fedora 26
   $ThisLine =~ s/^ *//;
   if ($ThisLine =~ /^(pvscan\[\d+\] )?PV .* online(?:|, VG .* is complete)\.$/
       or $ThisLine =~ /(pvscan\[\d+\] )?activating all complete VGs for init/
       or $ThisLine =~ /(pvscan\[\d+\] )?PVID .* read from .* last written to/
       or $ThisLine =~ /(pvscan\[\d+\] )?VG .* not using quick activation/
       or $ThisLine =~ /(pvscan\[\d+\] )?VG .* run autoactivation/
       # This happens often at startup
       or $ThisLine =~ /WARNING: lvmetad is being updated, retrying/
       # This happens on shutdown
       or $ThisLine =~ /dmeventd detected break while being idle for 0 second\(s\), exiting/
       # This happens when dmeventd autostarted
       or $ThisLine =~ /dmeventd ready for processing\.$/
       or $ThisLine =~ /dmeventd shutting down\.$/
       or $ThisLine =~ /dmeventd was idle for .*, exiting\.$/
       # Misc cleanups
       or $ThisLine =~ /Logical volume .* successfully resized/
      ) {
      # Ignore
   } elsif ($ThisLine =~ /^(?:WARNING: )?Thin (\S+) is now (\d+(\.\d+)?)% full/) {
      $PoolUsed{$1} = $2 if $2 >= $PoolThreshold;
   } elsif ($ThisLine =~ /^(?:WARNING: )?Thin metadata (\S+) is now (\d+(\.\d+)?)% full/) {
      $PoolMetadataUsed{$1} = $2 if $2 >= $PoolMetadataThreshold;
   } elsif ($ThisLine =~ /^Monitoring thin pool (\S+)\./) {
      $MonitoringOn{$1}++;
   } elsif ($ThisLine =~ /^Monitoring snapshot (\S+)\./) {
      $MonitoringSnapshot{$1}++;
   } elsif ($ThisLine =~ /^No longer monitoring thin pool (\S+)\./) {
      $MonitoringOff{$1}++;
   } elsif ($ThisLine =~ /^No longer monitoring snapshot (\S+)\./) {
      $MonitoringSnapshotOff{$1}++;
   } elsif ($ThisLine =~ /^(?:WARNING: )?Snapshot (\S+) is now (\d+(\.\d+)?)% full/) {
      $SnapshotUsed{$1} = $2 if $2 >= $SnapshotThreshold;
   } elsif ($ThisLine =~ /^(\d+) logical volume\(s\) in volume group "(\S+)" monitored/) {
      $MonitoringOn{$2}++;
   } elsif ($ThisLine =~ /^(\d+) logical volume\(s\) in volume group "(\S+)" unmonitored/) {
      $MonitoringOff{$2}++;
   } elsif ($ThisLine =~ /^(\d+) logical volume\(s\) in volume group "(\S+)" now active/) {
      $Active{$2}=$1;
   } elsif ($ThisLine =~ /^Size of logical volume (\S+) changed from (.*) to (.*)\.$/) {
      $Resize{$1}="$3"
   } else {
      $OtherList{$ThisLine}++;
   }
}

if (keys %PoolUsed) {
   print "Thin Pool Usage:\n";
   foreach my $Pool (sort {$a cmp $b} keys %PoolUsed) {
      print "    $Pool: $PoolUsed{$Pool}% full\n";
   }
   print "\n";
}

if (keys %PoolMetadataUsed) {
   print "Thin Pool Metadata Usage:\n";
   foreach my $Pool (sort {$a cmp $b} keys %PoolMetadataUsed) {
      print "    $Pool: $PoolMetadataUsed{$Pool}% full\n";
   }
   print "\n";
}

if (keys %SnapshotUsed) {
   print "Snapshot Usage:\n";
   foreach my $Snapshot (sort {$a cmp $b} keys %SnapshotUsed) {
      print "    $Snapshot: $SnapshotUsed{$Snapshot}% full\n";
   }
   print "\n";
}

if (keys %Resize) {
   print "Resize snapshot:\n";
   foreach my $Snapshot (sort {$a cmp $b} keys %Resize) {
      print "    $Snapshot: $Resize{$Snapshot}\n";
   }
   print "\n";
}

if (keys %Active and $Detail) {
   print "LVM active:\n";
   foreach my $VG (sort {$a cmp $b} keys %MonitoringOn) {
      print "    $VG: $Active{$VG} logical volume(s)\n";
   }
   print "\n";
}

if (keys %MonitoringOn and $Detail) {
   print "Monitoring started for:\n";
   foreach my $Pool (sort {$a cmp $b} keys %MonitoringOn) {
      print "    $Pool: $MonitoringOn{$Pool} Time(s)\n";
   }
   print "\n";
}

if (keys %MonitoringOff and $Detail) {
   print "Monitoring stopped for:\n";
   foreach my $Pool (sort {$a cmp $b} keys %MonitoringOff) {
      print "    $Pool: $MonitoringOff{$Pool} Time(s)\n";
   }
   print "\n";
}

if (keys %MonitoringSnapshot and $Detail) {
   print "Monitoring snapshot:\n";
   foreach my $Snapshot (sort {$a cmp $b} keys %MonitoringSnapshot) {
      print "    $Snapshot: $MonitoringSnapshot{$Snapshot} Time(s)\n";
   }
   print "\n";
}

if (keys %MonitoringSnapshotOff and $Detail) {
   print "Monitoring stopped for snapshot:\n";
   foreach my $Snapshot (sort {$a cmp $b} keys %MonitoringSnapshotOff) {
      print "    $Snapshot: $MonitoringSnapshotOff{$Snapshot} Time(s)\n";
   }
   print "\n";
}

if (keys %OtherList) {
   print "\n**Unmatched Entries**\n";
   foreach my $line (sort {$a cmp $b} keys %OtherList) {
      print "   $line: $OtherList{$line} Time(s)\n";
   }
}

exit(0);

# vi: shiftwidth=3 tabstop=3 syntax=perl et
# Local Variables:
# mode: perl
# perl-indent-level: 3
# indent-tabs-mode: nil
# End: