in reply to regex help

my @out = /,(\d+)/g;
works for the case you said, or if you require to match against "Total request":
my @out = grep { defined } /(?:Total requests:|,(\d+))/g;