Skip to content

Instantly share code, notes, and snippets.

@eabrouwer3
Created July 6, 2015 20:48
Show Gist options
  • Save eabrouwer3/f166dc47119004d8afd7 to your computer and use it in GitHub Desktop.
Save eabrouwer3/f166dc47119004d8afd7 to your computer and use it in GitHub Desktop.
strace from puppet agent run
# ... Lots of other stat( calls
[pid 9226] stat("/usr/lib/ruby/vendor_ruby/1.9.1/puppet/type/completed_concat::fragment.rb", 0x7fff7296ba90) = -1 ENOENT (No such file or directory)
[pid 9226] stat("/usr/lib/ruby/vendor_ruby/1.9.1/x86_64-linux/puppet/type/completed_concat::fragment.rb", 0x7fff7296ba90) = -1 ENOENT (No such file or directory)
[pid 9226] stat("/usr/lib/ruby/vendor_ruby/puppet/type/completed_concat::fragment.rb", 0x7fff7296ba90) = -1 ENOENT (No such file or directory)
[pid 9226] stat("/usr/lib/ruby/1.9.1/puppet/type/completed_concat::fragment.rb", 0x7fff7296ba90) = -1 ENOENT (No such file or directory)
[pid 9226] stat("/usr/lib/ruby/1.9.1/x86_64-linux/puppet/type/completed_concat::fragment.rb", 0x7fff7296ba90) = -1 ENOENT (No such file or directory)
[pid 9226] stat("/usr/lib/ruby/vendor_ruby/puppet/vendor/safe_yaml/lib/puppet/type/completed_concat::fragment.rb", 0x7fff7296ba90) = -1 ENOENT (No such file or directory)
[pid 9226] stat("/var/lib/puppet/lib/puppet/type/completed_concat::fragment.rb", 0x7fff7296ba90) = -1 ENOENT (No such file or directory)
[pid 9226] clock_gettime(CLOCK_REALTIME, {1436215292, 528342328}) = 0
[pid 9226] write(1, "\33[0;32mInfo: Applying configurat"..., 60Info: Applying configuration version '1436214384') = 60
[pid 9226] write(1, "\n", 1
) = 1
[pid 9226] sendto(5, "<30>Jul 6 14:41:32 puppet-agent"..., 83, MSG_NOSIGNAL, NULL, 0) = 83
[pid 9226] brk(0x5ff9000) = 0x5ff9000
[pid 9226] brk(0x604e000) = 0x604e000
[pid 9226] brk(0x60b7000) = 0x60b7000
[pid 9226] brk(0x60dc000) = 0x60dc000
[pid 9226] brk(0x6151000) = 0x6151000
[pid 9226] brk(0x6177000) = 0x6177000
[pid 9226] brk(0x61fb000) = 0x61fb000
# ... Tons of brk( calls that are basically neverending. All for the same process.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment