{"id":194,"date":"2011-03-22T06:46:50","date_gmt":"2011-03-22T13:46:50","guid":{"rendered":"http:\/\/www.imaginarybillboards.com\/?p=194"},"modified":"2018-03-23T08:50:44","modified_gmt":"2018-03-23T15:50:44","slug":"perl-one-liner-to-see-who-is-hogging-all-the-open-filehandles","status":"publish","type":"post","link":"http:\/\/www.imaginarybillboards.com\/?p=194","title":{"rendered":"Perl one-liner to see who is hogging all the open filehandles"},"content":{"rendered":"

Helpful one-liner to help fix a problem we ran into the other day.<\/p>\n

perl -e 'map{$c{(split(\/\\s+\/))[2]}++} `lsof`;print \"$_ $c{$_}\\n\" for (keys %c);'<\/p>\n

The thinking is:<\/p>\n

Use lsof to get all the open filehandles which conveniently also shows who has it open.<\/p>\n

`lsof`<\/code><\/p>\n

Loop through them, using the `<\/code> as a cheat that it inputs an array<\/p>\n

map { \u00c2\u00a0 } `lsof`;<\/code><\/p>\n

Splitting on whitespace. \u00c2\u00a0The input to each iteration of the map{ }<\/code> defaults to $_, and if you don't put anything to split in a perl split, it uses $_. \u00c2\u00a0Neat.<\/p>\n

split(\/\\s+\/)<\/code><\/p>\n

Since we just care about the count, only use the 3rd column by forcing the output of the split into an array and using a slice.<\/p>\n

(split(\/\\s+\/))[2] <\/code><\/p>\n

Now, we just want the count for those users so we increment a hash with the user name as they key.<\/p>\n

$c{ }++ <\/code><\/p>\n

Of course, the split is returning the name so that gives us the user name and hash key.<\/p>\n

$c{(split(\/\\s+\/))[2]} <\/code><\/p>\n

And increment that. \u00c2\u00a0Unlike python, for example, you can just increment it.<\/p>\n

$c{(split(\/\\s+\/))[2]}++<\/code><\/p>\n

It will do that for every iteration of the map{ }<\/code>. \u00c2\u00a0i.e. every line in the output of the `lsof`<\/code>.<\/p>\n

After that, it's just a matter of printing out the key\/value pairs using a easy hash printing line blatently stolen from an answer on Stack Overflow<\/a>.<\/p>\n","protected":false},"excerpt":{"rendered":"

Helpful one-liner to help fix a problem we ran into the other day. perl -e ‘map{$c{(split(\/\\s+\/))[2]}++} `lsof`;print “$_ $c{$_}\\n” for (keys %c);’ The thinking is: Use lsof to get all the open filehandles which conveniently also shows who has it open. `lsof` Loop through them, using the ` as a cheat that it inputs an […]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":[],"categories":[15,6],"tags":[10,33],"_links":{"self":[{"href":"http:\/\/www.imaginarybillboards.com\/index.php?rest_route=\/wp\/v2\/posts\/194"}],"collection":[{"href":"http:\/\/www.imaginarybillboards.com\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"http:\/\/www.imaginarybillboards.com\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"http:\/\/www.imaginarybillboards.com\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"http:\/\/www.imaginarybillboards.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=194"}],"version-history":[{"count":8,"href":"http:\/\/www.imaginarybillboards.com\/index.php?rest_route=\/wp\/v2\/posts\/194\/revisions"}],"predecessor-version":[{"id":235,"href":"http:\/\/www.imaginarybillboards.com\/index.php?rest_route=\/wp\/v2\/posts\/194\/revisions\/235"}],"wp:attachment":[{"href":"http:\/\/www.imaginarybillboards.com\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=194"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"http:\/\/www.imaginarybillboards.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=194"},{"taxonomy":"post_tag","embeddable":true,"href":"http:\/\/www.imaginarybillboards.com\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=194"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}