forked from pgstef/check_pgbackrest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcheck_pgbackrest
executable file
·1250 lines (972 loc) · 42.6 KB
/
check_pgbackrest
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
#!/usr/bin/env perl
#-----------------------------------------------------------------------------
# This program is open source, licensed under the PostgreSQL license.
# For license terms, see the LICENSE file.
#
# Author: Stefan Fercot
# Copyright: (c) 2018-2020, Dalibo.
#-----------------------------------------------------------------------------
=head1 NAME
check_pgbackrest - pgBackRest backup check plugin for Nagios
=head1 SYNOPSIS
check_pgbackrest [-s|--service SERVICE] [-S|--stanza NAME]
check_pgbackrest [-l|--list]
check_pgbackrest [--help]
=head1 DESCRIPTION
check_pgbackrest is designed to monitor pgBackRest backups from Nagios.
=cut
use vars qw($VERSION $PROGRAM);
use strict;
use warnings;
use POSIX;
use Data::Dumper;
use File::Basename;
use File::Spec;
use File::Find;
use Getopt::Long qw(:config bundling no_ignore_case_always);
use Pod::Usage;
use Config;
use FindBin;
# Display error message if some specific modules are not loaded
BEGIN {
my(@DBs, @missingDBs, $mod);
@DBs = qw(JSON);
for $mod (@DBs) {
if (eval "require $mod") {
$mod->import();
} else {
push @missingDBs, $mod;
}
}
die "@missingDBs module(s) not loaded.\n" if @missingDBs;
}
# Messing with PATH so pod2usage always finds this script
my @path = split /$Config{'path_sep'}/ => $ENV{'PATH'};
push @path => $FindBin::Bin;
$ENV{'PATH'} = join $Config{'path_sep'} => @path;
undef @path;
# Reference to the output sub
my $output_fmt;
$VERSION = '1.9dev';
$PROGRAM = 'check_pgbackrest';
# Available services and descriptions.
#-----------------------------------------------------------------------------
my %services = (
'retention' => {
'sub' => \&check_retention,
'desc' => 'Check the retention policy.',
'stanza-arg' => 1
},
'archives' => {
'sub' => \&check_wal_archives,
'desc' => 'Check WAL archives.',
'stanza-arg' => 1
},
'check_pgb_version' => {
'sub' => \&check_pgb_version,
'desc' => 'Check the version of this check_pgbackrest script.',
'stanza-arg' => 0
}
);
=over
=item B<-s>, B<--service> SERVICE
The Nagios service to run. See section SERVICES for a description of
available services or use C<--list> for a short service and description
list.
=item B<-S>, B<--stanza> NAME
Name of the stanza to check.
=item B<-O>, B<--output> OUTPUT_FORMAT
The output format. Supported outputs are: C<human>, C<json> and C<nagios> (default).
=item B<-C>, B<--command> FILE
pgBackRest executable file (default: "pgbackrest").
=item B<-c>, B<--config> CONFIGURATION_FILE
pgBackRest configuration file.
=item B<-P>, B<--prefix> COMMAND
Some prefix command to execute the pgBackRest info command
(eg: "sudo -iu postgres").
=item B<-l>, B<--list>
List available services.
=item B<--debug>
Print some debug messages.
=item B<-V>, B<--version>
Print version and exit.
=item B<-?>, B<--help>
Show this help page.
=back
=cut
my %args = (
'command' => 'pgbackrest',
'output' => 'nagios',
'wal-segsize' => '16MB',
'default-pgbackrest-config-file' => '/etc/pgbackrest.conf',
);
# Set name of the program without path*
my $orig_name = $0;
$0 = $PROGRAM;
# Die on kill -1, -2, -3 or -15
$SIG{'HUP'} = $SIG{'INT'} = $SIG{'QUIT'} = $SIG{'TERM'} = \&terminate;
# Handle SIG
sub terminate {
my ($signal) = @_;
die ("SIG $signal caught.");
}
# Print the version and exit
sub version {
printf "%s version %s, Perl %vd\n",
$PROGRAM, $VERSION, $^V;
exit 0;
}
# List services that can be performed
sub list_services {
print "List of available services:\n\n";
foreach my $service ( sort keys %services ) {
printf "\t%-17s\t%s\n", $service, $services{$service}{'desc'};
}
exit 0;
}
# Handle output formats
#-----------------------------------------------------------------------------
sub dprint {
return unless $args{'debug'};
foreach (@_) {
print "DEBUG: $_";
}
}
sub unknown($;$$$) {
return $output_fmt->( 3, $_[0], $_[1], $_[2], $_[3] );
}
sub critical($;$$$) {
return $output_fmt->( 2, $_[0], $_[1], $_[2], $_[3] );
}
sub warning($;$$$) {
return $output_fmt->( 1, $_[0], $_[1], $_[2], $_[3] );
}
sub ok($;$$$) {
return $output_fmt->( 0, $_[0], $_[1], $_[2], $_[3] );
}
sub human_output ($$;$$$) {
my $rc = shift;
my $service = shift;
my $ret;
my @msg;
my @longmsg;
my @human_only_longmsg;
@msg = @{ $_[0] } if defined $_[0];
@longmsg = @{ $_[1] } if defined $_[1];
@human_only_longmsg = @{ $_[2] } if defined $_[2];
$ret = sprintf "%-15s: %s\n", 'Service', $service;
$ret .= sprintf "%-15s: 0 (%s)\n", "Returns", "OK" if $rc == 0;
$ret .= sprintf "%-15s: 1 (%s)\n", "Returns", "WARNING" if $rc == 1;
$ret .= sprintf "%-15s: 2 (%s)\n", "Returns", "CRITICAL" if $rc == 2;
$ret .= sprintf "%-15s: 3 (%s)\n", "Returns", "UNKNOWN" if $rc == 3;
$ret .= sprintf "%-15s: %s\n", "Message", $_ foreach @msg;
$ret .= sprintf "%-15s: %s\n", "Long message", $_ foreach @longmsg;
$ret .= sprintf "%-15s: %s\n", "Long message", $_ foreach @human_only_longmsg;
print $ret;
return $rc;
}
sub json_output ($$;$$$) {
my $rc = shift;
my $service = shift;
my @msg;
my @longmsg;
my @human_only_longmsg;
@msg = @{ $_[0] } if defined $_[0];
@longmsg = @{ $_[1] } if defined $_[1];
@human_only_longmsg = @{ $_[2] } if defined $_[2];
my %json_hash = ('service' => $service);
my @rc_long = ("OK", "WARNING", "CRITICAL", "UNKNOWN");
$json_hash{'status'}{'code'} = $rc;
$json_hash{'status'}{'message'} = $rc_long[$rc];
$json_hash{'message'} = join( ', ', @msg ) if @msg;
foreach my $msg_to_split (@longmsg, @human_only_longmsg) {
my ($key, $value) = split(/=/, $msg_to_split);
$json_hash{'long_message'}{$key} = $value;
}
my $json_text = encode_json \%json_hash;
print "[$json_text]";
return $rc;
}
sub nagios_output ($$;$$) {
my $rc = shift;
my $ret = shift;
my @msg;
my @longmsg;
$ret .= " OK" if $rc == 0;
$ret .= " WARNING" if $rc == 1;
$ret .= " CRITICAL" if $rc == 2;
$ret .= " UNKNOWN" if $rc == 3;
@msg = @{ $_[0] } if defined $_[0];
@longmsg = @{ $_[1] } if defined $_[1];
$ret .= " - ". join( ', ', @msg ) if @msg;
$ret .= " | ". join( ' ', @longmsg ) if @longmsg;
print $ret;
return $rc;
}
# Handle time intervals
#-----------------------------------------------------------------------------
sub is_time($){
my $str_time = lc( shift() );
return 1 if ( $str_time
=~ /^(\s*([0-9]\s*[smhd]?\s*))+$/
);
return 0;
}
# Return formatted time string with units.
# Parameter: duration in seconds
sub to_interval($) {
my $val = shift;
my $interval = '';
return $val if $val =~ /^-?inf/i;
$val = int($val);
if ( $val > 604800 ) {
$interval = int( $val / 604800 ) . "w ";
$val %= 604800;
}
if ( $val > 86400 ) {
$interval .= int( $val / 86400 ) . "d ";
$val %= 86400;
}
if ( $val > 3600 ) {
$interval .= int( $val / 3600 ) . "h";
$val %= 3600;
}
if ( $val > 60 ) {
$interval .= int( $val / 60 ) . "m";
$val %= 60;
}
$interval .= "${val}s" if $val > 0;
return "${val}s" unless $interval; # return a value if $val <= 0
return $interval;
}
sub to_interval_output_dependent($) {
my $val = shift;
my $interval = '';
return $val if $val =~ /^-?inf/i;
$val = int($val);
return to_interval($val) unless $args{'output'} =~ /^nagios$/;
return "${val}s";
}
# Return a duration in seconds from an interval (with units).
sub get_time($) {
my $str_time = lc( shift() );
my $ts = 0;
my @date;
die( "Malformed interval: «$str_time»!\n"
. "Authorized unit are: dD, hH, mM, sS.\n" )
unless is_time($str_time);
# no bad units should exist after this line!
@date = split( /([smhd])/, $str_time );
LOOP_TS: while ( my $val = shift @date ) {
$val = int($val);
die("Wrong value for an interval: «$val»!") unless defined $val;
my $unit = shift(@date) || '';
if ( $unit eq 'm' ) {
$ts += $val * 60;
next LOOP_TS;
}
if ( $unit eq 'h' ) {
$ts += $val * 3600;
next LOOP_TS;
}
if ( $unit eq 'd' ) {
$ts += $val * 86400;
next LOOP_TS;
}
$ts += $val;
}
return $ts;
}
# Handle size units
#-----------------------------------------------------------------------------
# Return a size in bytes from a size with unit.
# If unit is '%', use the second parameter to compute the size in bytes.
sub get_size($;$) {
my $str_size = shift;
my $size = 0;
my $unit = '';
die "Only integers are accepted as size. Adjust the unit to your need.\n"
if $str_size =~ /[.,]/;
$str_size =~ /^([0-9]+)(.*)$/;
$size = int($1);
$unit = lc($2);
return $size unless $unit ne '';
if ( $unit eq '%' ) {
my $ratio = shift;
die("Can't compute a ratio without the factor!\n")
unless defined $unit;
return int( $size * $ratio / 100 );
}
return $size if $unit eq 'b';
return $size * 1024 if $unit =~ '^k[bo]?$';
return $size * 1024**2 if $unit =~ '^m[bo]?$';
return $size * 1024**3 if $unit =~ '^g[bo]?$';
return $size * 1024**4 if $unit =~ '^t[bo]?$';
return $size * 1024**5 if $unit =~ '^p[bo]?$';
return $size * 1024**6 if $unit =~ '^e[bo]?$';
return $size * 1024**7 if $unit =~ '^z[bo]?$';
die("Unknown size unit: $unit\n");
}
# Interact with pgBackRest
#-----------------------------------------------------------------------------
sub pgbackrest_info {
my $infocmd = $args{'command'}." info";
$infocmd .= " --stanza=".$args{'stanza'};
$infocmd .= " --output=json";
if(defined $args{'config'}) {
$infocmd .= " --config=".$args{'config'};
}
if(defined $args{'prefix'}) {
$infocmd = $args{'prefix'}." $infocmd";
}
dprint("pgBackRest info command was : '$infocmd'\n");
my $json_output = `$infocmd 2>&1 |grep -v WARN |grep -v ERROR`;
die("Can't get pgBackRest info.\nCommand was '$infocmd'.\n") unless ($? eq 0);
my $decoded_json = decode_json($json_output);
foreach my $line (@{$decoded_json}) {
return $line if($line->{'name'} eq $args{'stanza'});
}
return;
}
sub pgbackrest_ls {
my $args_ref = shift;
my %args = %{ $args_ref };
my $lscmd = $args{'command'}." ls";
$lscmd .= " ".$args{'archives_dir'};
$lscmd .= " --recurse --output=json";
if(defined $args{'config'}) {
$lscmd .= " --config=".$args{'config'};
}
if(defined $args{'prefix'}) {
$lscmd = $args{'prefix'}." $lscmd";
}
dprint("pgBackRest ls command was : '$lscmd'\n");
my $json_output = `$lscmd 2>&1 |grep -v WARN |grep -v ERROR`;
die("Can't get pgBackRest list.\nCommand was '$lscmd'.\n") unless ($? eq 0);
return decode_json($json_output);
}
sub pgbackrest_version {
my $args_ref = shift;
my %args = %{ $args_ref };
my $version_cmd = $args{'command'}." version";
if(defined $args{'config'}) {
$version_cmd .= " --config=".$args{'config'};
}
if(defined $args{'prefix'}) {
$version_cmd = $args{'prefix'}." $version_cmd";
}
dprint("pgBackRest version command was : '$version_cmd'\n");
my $pgbackrest_version = `$version_cmd | sed -e s/pgBackRest\\ // | sed -e s/dev//`;
die("Can't get pgBackRest version.\nCommand was '$version_cmd'.\n") unless ($? eq 0);
return $pgbackrest_version;
}
# Services
#-----------------------------------------------------------------------------
=head2 SERVICES
Descriptions and parameters of available services.
=over
=item B<retention>
Fail when the number of full backups is less than the
C<--retention-full> argument.
Fail when the newest backup is older than the C<--retention-age>
argument.
Fail when the newest full backup is older than the
C<--retention-age-to-full> argument.
The following units are accepted (not case sensitive): s (second), m
(minute), h (hour), d (day). You can use more than one unit per
given value.
Arguments are not mandatory to only show some information.
=cut
sub check_retention {
my $me = 'BACKUPS_RETENTION';
my %args = %{ $_[0] };
my @msg;
my @warn_msg;
my @crit_msg;
my @longmsg;
my $backups_info = pgbackrest_info();
die("Can't get pgBackRest info.\n") unless (defined $backups_info);
if($backups_info->{'status'}->{'code'} == 0) {
my @full_bck;
my @diff_bck;
my @incr_bck;
foreach my $line (@{$backups_info->{'backup'}}){
push @full_bck, $line if($line->{'type'} eq "full");
push @diff_bck, $line if($line->{'type'} eq "diff");
push @incr_bck, $line if($line->{'type'} eq "incr");
}
push @longmsg, "full=".scalar(@full_bck);
push @longmsg, "diff=".scalar(@diff_bck);
push @longmsg, "incr=".scalar(@incr_bck);
# check retention
if(defined $args{'retention-full'} and scalar(@full_bck) < $args{'retention-full'}){
push @crit_msg, "not enough full backups, ".$args{'retention-full'}." required";
}
# check latest age
# backup age considered at pg_stop_backup
my $latest_bck = @{$backups_info->{'backup'}}[-1];
my $latest_bck_age = time() - $latest_bck->{'timestamp'}->{'stop'};
push @longmsg, "latest=".$latest_bck->{'type'}.",".$latest_bck->{'label'};
push @longmsg, "latest_age=".to_interval_output_dependent($latest_bck_age);
if(defined $args{'retention-age'}){
my $bck_age_limit = get_time($args{'retention-age'} );
push @crit_msg, "backups are too old" if $latest_bck_age >= $bck_age_limit;
}
# check latest full backup age
if(defined $args{'retention-age-to-full'}){
my $latest_full_bck = $full_bck[-1];
my $latest_full_bck_age = time() - $latest_full_bck->{'timestamp'}->{'stop'};
push @longmsg, "latest_full=".$latest_full_bck->{'label'};
push @longmsg, "latest_full_age=".to_interval_output_dependent($latest_full_bck_age);
my $bck_age_limit = get_time($args{'retention-age-to-full'} );
push @crit_msg, "full backups are too old" if $latest_full_bck_age >= $bck_age_limit;
}
}else{
push @crit_msg, $backups_info->{'status'}->{'message'};
}
return critical($me, \@crit_msg, \@longmsg) if @crit_msg;
return warning($me, \@warn_msg, \@longmsg) if @warn_msg;
push @msg, "backups policy checks ok";
return ok( $me, \@msg, \@longmsg );
}
=item B<archives>
Check if all archived WALs exist between the oldest and the latest
WAL needed for the recovery.
This service requires the C<--repo-path> argument to specify where
the archived WALs are stored.
The C<--repo-host> and C<--repo-host-user> arguments allow to list
remote archived WALs using SFTP.
The C<--repo-s3> enables remote archived WALs stored in Amazon S3.
The C<--repo-s3-over-http> switch to HTTP connection instead of HTTPS.
Archives must be compressed (.gz). If needed, use "compress-level=0"
instead of "compress=n".
Use the C<--wal-segsize> argument to set the WAL segment size.
The following units are accepted (not case sensitive):
b (Byte), k (KB), m (MB), g (GB), t (TB), p (PB), e (EB) or Z (ZB). Only
integers are accepted. Eg. C<1.5MB> will be refused, use C<1500kB>.
The factor between units is 1024 bytes. Eg. C<1g = 1G = 1024*1024*1024.>
Use the C<--ignore-archived-before> argument to ignore the archived
WALs generated before the provided interval. Used to only check the
latest archives.
Use the C<--ignore-archived-after> argument to ignore the archived
WALs generated after the provided interval.
The C<--latest-archive-age-alert> argument defines the max age of
the latest archived WAL as an interval before raising a critical
alert.
The following units are accepted as interval (not case sensitive):
s (second), m (minute), h (hour), d (day). You can use more than
one unit per given value. If not set, the last unit is in seconds.
Eg. "1h 55m 6" = "1h55m6s".
All the missing archives are only shown in the `--debug` mode.
Use `--list-archives` in addition with `--debug` to print the list of all the
archived WAL segments.
=cut
sub get_archived_wal_list {
my $min_wal = shift;
my $max_wal = shift;
my $args_ref = shift;
my %args = %{ $args_ref };
my $suffix = ".gz";
my $archives_dir = $args{'archives_dir'};
my @filelist;
my @branch_wals;
my $filename_re = qr/^[0-9A-F]{24}.*$suffix$/;
my $filename_re_full = qr/[0-9A-F]{24}.*$suffix$/;
my $start_tl = substr($min_wal, 0, 8);
my $end_tl = substr($max_wal, 0, 8);
my $history_re = qr/$end_tl.history$/;
my $history_re_full = qr/$end_tl.history$/;
my $pgbackrest_version=pgbackrest_version(\%args);
my $activate_pgbackrest_ls_command=0;
if($pgbackrest_version >= '2.22' && $activate_pgbackrest_ls_command){
# pgBackRest ls command
my $list=pgbackrest_ls(\%args);
foreach my $key (keys $list) {
next unless $list->{$key}->{'type'} eq 'file';
my @split_tab = split('/', $key);
my $filename = $split_tab[-1];
if($filename =~ /$filename_re_full/){
# Get stats of the archived wals
if ( $args{'ignore-archived-after'} or $args{'ignore-archived-before'} ) {
my $diff_epoch = time() - $list->{$key}->{'time'};
if ( $args{'ignore-archived-after'} && $diff_epoch <= get_time($args{'ignore-archived-after'}) ){
dprint ("ignored file ".$filename." as interval since epoch : ".to_interval($diff_epoch)."\n");
return;
}
if ( $args{'ignore-archived-before'} && $diff_epoch >= get_time($args{'ignore-archived-before'}) ){
dprint ("ignored file ".$filename." as interval since epoch : ".to_interval($diff_epoch)."\n");
return;
}
}
push @filelist, [substr($filename, 0, 24), $filename, $list->{$key}->{'time'}, $list->{$key}->{'size'}, "$archives_dir/$key"];
}elsif($filename =~ /$history_re_full/ && $start_tl ne $end_tl){
# Look for the last history file if needed
dprint("history file to open : $filename\n");
#FIXME - missing "get_content" of history files
}
}
}elsif($args{'repo-host'}){
# SFTP connection
require Net::SFTP::Foreign;
my $sftp;
if($args{'repo-host-user'}){
$sftp = Net::SFTP::Foreign->new($args{'repo-host'}, user => $args{'repo-host-user'});
}else{
$sftp = Net::SFTP::Foreign->new($args{'repo-host'});
}
$sftp->die_on_error("Unable to establish SFTP connection");
$sftp->find($archives_dir,
wanted => sub {
my $file_fullpath = $_[1]->{filename};
my @split_tab = split('/', $file_fullpath);
my $filename = $split_tab[-1];
if($filename =~ /$filename_re/){
# Get stats of the archived wals
my $attributes = $sftp->stat($_[1]->{filename})
or die "remote stat command failed : ".$sftp->status;
if ( $args{'ignore-archived-after'} or $args{'ignore-archived-before'} ) {
my $diff_epoch = time() - $attributes->mtime;
if ( $args{'ignore-archived-after'} && $diff_epoch <= get_time($args{'ignore-archived-after'}) ){
dprint ("ignored file ".$filename." as interval since epoch : ".to_interval($diff_epoch)."\n");
return;
}
if ( $args{'ignore-archived-before'} && $diff_epoch >= get_time($args{'ignore-archived-before'}) ){
dprint ("ignored file ".$filename." as interval since epoch : ".to_interval($diff_epoch)."\n");
return;
}
}
push @filelist, [substr($filename, 0, 24), $filename, $attributes->mtime, $attributes->size, $file_fullpath];
}elsif($filename =~ /$history_re/ && $start_tl ne $end_tl){
# Look for the last history file if needed
dprint("history file to open : $filename\n");
my $history_content = $sftp->get_content($file_fullpath)
or die "remote get_content command failed : ".$sftp->status;
my @history_lines = split /\n/, $history_content;
foreach my $line ( @history_lines ){
my $line_re = qr/^\s*(\d)\t([0-9A-F]+)\/([0-9A-F]+)\t.*$/;
$line =~ /$line_re/ || next;
push @branch_wals =>
sprintf("%08d%08s%08X", $1, $2, hex($3)>>24);
}
}
}
);
}elsif($args{'repo-s3'}){
require Net::Amazon::S3;
require Config::IniFiles;
my $cfg_file=$args{'default-pgbackrest-config-file'};
if(defined $args{'config'}) {
$cfg_file=$args{'config'};
}
dprint("cfg_file: $cfg_file\n");
my $cfg = Config::IniFiles->new( -file => $cfg_file );
my $aws_key = $cfg->val( 'global', 'repo1-s3-key' );
my $aws_secret = $cfg->val( 'global', 'repo1-s3-key-secret' );
my $repo1_bucket = $cfg->val( 'global', 'repo1-s3-bucket' );
my $repo1_endpoint = $cfg->val( 'global', 'repo1-s3-endpoint' );
dprint("repo1-s3-bucket: $repo1_bucket\n");
dprint("repo1-s3-endpoint: $repo1_endpoint\n");
my $secure = defined $args{'repo-s3-over-http'} ? 0 : 1;
pod2usage(
-message => 'FATAL: be sure to set repo1-s3-endpoint, repo1-s3-key, repo1-s3-key-secret, and repo1-s3-bucket in the pgBackRest configuration file.',
-exitval => 127
) unless ( defined $aws_key and defined $aws_secret and defined $repo1_bucket and defined $repo1_endpoint );
my $s3 = Net::Amazon::S3->new(
aws_access_key_id => $aws_key,
aws_secret_access_key => $aws_secret,
host => $repo1_endpoint,
retry => 1,
secure => $secure,
);
my $client = Net::Amazon::S3::Client->new( s3 => $s3 );
my $bucket = $client->bucket( name => $repo1_bucket );
my $stream = $bucket->list({ prefix => $archives_dir, delimiter => '/' });
until ( $stream->is_done ) {
foreach my $object ( $stream->items ) {
my $file_fullpath = $object->key;
my @split_tab = split('/', $file_fullpath);
my $filename = $split_tab[-1];
if($filename =~ /$filename_re/){
# Get stats of the archived wals
my $dt = $object->last_modified;
if ( $args{'ignore-archived-after'} or $args{'ignore-archived-before'} ) {
my $diff_epoch = time() - $dt->epoch();
if ( $args{'ignore-archived-after'} && $diff_epoch <= get_time($args{'ignore-archived-after'}) ){
dprint ("ignored file ".$filename." as interval since epoch : ".to_interval($diff_epoch)."\n");
return;
}
if ( $args{'ignore-archived-before'} && $diff_epoch >= get_time($args{'ignore-archived-before'}) ){
dprint ("ignored file ".$filename." as interval since epoch : ".to_interval($diff_epoch)."\n");
return;
}
}
push @filelist, [substr($filename, 0, 24), $filename, $dt->epoch(), $object->size, $file_fullpath];
}elsif($filename =~ /$history_re/ && $start_tl ne $end_tl){
# Look for the last history file if needed
dprint("history file to open : $filename\n");
my $history_content = $object->get;
my @history_lines = split /\n/, $history_content;
foreach my $line ( @history_lines ){
my $line_re = qr/^\s*(\d)\t([0-9A-F]+)\/([0-9A-F]+)\t.*$/;
$line =~ /$line_re/ || next;
push @branch_wals =>
sprintf("%08d%08s%08X", $1, $2, hex($3)>>24);
}
}
}
}
}else{
find ({ wanted => sub {
return unless -f;
my $file_fullpath = $File::Find::name;
my @split_tab = split('/', $file_fullpath);
my $filename = $split_tab[-1];
if($filename =~ /$filename_re_full/){
# Get stats of the archived wals
if ( $args{'ignore-archived-after'} or $args{'ignore-archived-before'} ) {
my $diff_epoch = time() - (stat($file_fullpath))[9];
if ( $args{'ignore-archived-after'} && $diff_epoch <= get_time($args{'ignore-archived-after'}) ){
dprint ("ignored file ".$filename." as interval since epoch : ".to_interval($diff_epoch)."\n");
return;
}
if ( $args{'ignore-archived-before'} && $diff_epoch >= get_time($args{'ignore-archived-before'}) ){
dprint ("ignored file ".$filename." as interval since epoch : ".to_interval($diff_epoch)."\n");
return;
}
}
push @filelist, [substr($filename, 0, 24), $filename, (stat($File::Find::name))[9,7], $file_fullpath];
}elsif($filename =~ /$history_re_full/ && $start_tl ne $end_tl){
# Look for the last history file if needed
dprint("history file to open : $filename\n");
open my $fd, "<", "$file_fullpath"
or die "Can't open < $file_fullpath : $!";
while ( <$fd> ) {
next unless m{^\s*(\d)\t([0-9A-F]+)/([0-9A-F]+)\t.*$};
push @branch_wals =>
sprintf("%08d%08s%08X", $1, $2, hex($3)>>24);
}
close $fd;
}
}, no_chdir => 1, follow => 1
}, $archives_dir );
}
my @unique_branch_wals = do { my %seen; grep { !$seen{$_}++ } @branch_wals };
return(\@filelist, \@unique_branch_wals);
}
sub generate_needed_wal_archives_list {
my $min_wal = shift;
my $max_wal = shift;
my $branch_wals_ref = shift;
my @branch_wals = @{ $branch_wals_ref };
my $seg_per_wal = shift;
my $start_tl = substr($min_wal, 0, 8);
my $end_tl = substr($max_wal, 0, 8);
my $timeline = hex($start_tl);
my $wal = hex(substr($min_wal, 8, 8));
my $seg = hex(substr($min_wal, 16, 8));
# Generate list
my $curr = $min_wal;
my @needed_wal_archives_list;
# dprint("$min_wal WAL needed\n");
push @needed_wal_archives_list, $min_wal;
for ( my $i=0, my $j=1; $curr lt $max_wal ; $i++, $j++ ) {
$curr = sprintf('%08X%08X%08X',
$timeline,
$wal + int(($seg + $j)/$seg_per_wal),
($seg + $j)%$seg_per_wal
);
# dprint("$curr WAL needed\n");
push @needed_wal_archives_list, $curr;
if ( grep /$curr/, @branch_wals ) {
dprint("found a boundary @ '$curr' !\n");
$timeline++;
$j--;
next;
}
}
my @unique_needed_wal_archives_list = do { my %seen; grep { !$seen{$_}++ } @needed_wal_archives_list };
return sort @unique_needed_wal_archives_list;
}
sub check_wal_archives {
my $me = 'WAL_ARCHIVES';
my %args = %{ $_[0] };
my @msg;
my @warn_msg;
my @crit_msg;
my @longmsg;
my @human_only_longmsg;
pod2usage(
-message => 'FATAL: you must provide --repo-path.',
-exitval => 127
) if ( not defined $args{'repo-path'} );
my $start_time = time();
my $backups_info = pgbackrest_info();
die("Can't get pgBackRest info.\n") unless (defined $backups_info);
dprint("!> pgBackRest info took ".(time() - $start_time)."s\n");
if($backups_info->{'status'}->{'code'} == 0) {
my $archives_dir = $args{'repo-path'}."/".$args{'stanza'}."/".$backups_info->{'archive'}[0]->{'id'};
dprint("archives_dir: $archives_dir\n");
$args{'archives_dir'} = $archives_dir;
push @human_only_longmsg, "archives_dir=$archives_dir";
my $min_wal = $backups_info->{'archive'}[0]->{'min'};
my $max_wal = $backups_info->{'archive'}[0]->{'max'};
# Get all the WAL archives and history files
$start_time = time();
dprint("Get all the WAL archives and history files...\n");
my ($filelist_ref, $branch_wals_ref) = &get_archived_wal_list($min_wal, $max_wal, \%args);
my @filelist;
@filelist = @{ $filelist_ref } if $filelist_ref;
my @branch_wals;
@branch_wals = @{ $branch_wals_ref } if $branch_wals_ref;
return unknown $me, ['no archived WAL found'] unless @filelist;
dprint("!> Get all the WAL archives and history files took ".(time() - $start_time)."s\n");
# Sort by filename
my @filelist_sorted = sort { $a->[0] cmp $b->[0] }
grep{ (defined($_->[0]) and defined($_->[1]))
or die "Can't read WAL files."
} @filelist;
my @filelist_simplified;
my %filelist_simplified_hash;
foreach my $elem (@filelist_sorted) {
push @filelist_simplified, $elem->[0];
$filelist_simplified_hash{ $elem->[0] } = $elem;
}
# Refresh after archives scan, assume pgBackRest info cmd returns very fast
$start_time = time();
$backups_info = pgbackrest_info();
$max_wal = $backups_info->{'archive'}[0]->{'max'};
dprint("!> Refresh pgBackRest info took ".(time() - $start_time)."s\n");
# Change min_wal if some archived are ignored
if ( $args{'ignore-archived-before'} && $min_wal ) {
$min_wal = substr($filelist_sorted[0][0], 0, 24);
dprint ("min_wal changed to ".$min_wal."\n");
}
push @human_only_longmsg, "min_wal=$min_wal" if $min_wal;
# Change max_wal if some archived are ignored
if ( $args{'ignore-archived-after'} && $max_wal ) {
$max_wal = substr($filelist_sorted[-1][0], 0, 24);
dprint ("max_wal changed to ".$max_wal."\n");
}
push @human_only_longmsg, "max_wal=$max_wal" if $max_wal;
# Check min/max exists, start = min, last = max ?
return critical $me, ['min WAL not found: '.$min_wal] if($min_wal && ! grep( /^$min_wal$/, @filelist_simplified ));
return critical $me, ['max WAL not found: '.$max_wal] if($max_wal && ! grep( /^$max_wal$/, @filelist_simplified ));
push @warn_msg, "min WAL is not the oldest archive" if($min_wal && ! grep( /^$min_wal/, $filelist_sorted[0][0] ));
push @warn_msg, "max WAL is not the latest archive" if($max_wal && ! grep( /^$max_wal/, $filelist_sorted[-1][0] ));
push @human_only_longmsg, "oldest_archive=".$filelist_sorted[0][0];
push @human_only_longmsg, "latest_archive=".$filelist_sorted[-1][0];
my $latest_archive_age = time() - $filelist_sorted[-1][2];
my $num_archives = scalar(@filelist_sorted);
push @longmsg, "latest_archive_age=".to_interval_output_dependent($latest_archive_age);
push @longmsg, "num_archives=$num_archives";
# Is the latest archive too old ?
if ( $args{'latest-archive-age-alert'} && $latest_archive_age > get_time($args{'latest-archive-age-alert'})){
push @crit_msg => "latest_archive_age (".to_interval($latest_archive_age).") exceeded";
}
push @msg, "$num_archives WAL archived";
push @msg, "latest archived since ". to_interval($latest_archive_age);
# Get all the needed wal archives based on min/max pgBackRest info