
Security News
New Website “Is It Really FOSS?” Tracks Transparency in Open Source Distribution Models
A new site reviews software projects to reveal if they’re truly FOSS, making complex licensing and distribution models easy to understand.
chef-handler-profiler
Advanced tools
This is a Chef report handler that reports the execution time spent in each: cookbook, recipe, and resource.
Only works on Chef >= 10.14
There are two ways to use Chef Handlers.
Use the chef_handler cookbook by Opscode. Create a recipe with the following:
include_recipe "chef_handler"
# Install `chef-handler-profiler` gem during the compile phase
chef_gem "chef-handler-profiler"
# load the gem here so it gets added to the $LOAD_PATH, otherwise chef_handler
# will fail.
require 'chef/handler/chef_profiler'
# Activate the handler immediately during compile phase
chef_handler "Chef::Handler::Profiler" do
source "chef/handler/chef_profiler"
action :nothing
end.run_action(:enable)
Install the gem ahead of time, and configure Chef to use them:
gem install chef-handler-profiler
Then add to the configuration (/etc/chef/solo.rb
for chef-solo or
/etc/chef/client.rb
for chef-client):
require "chef/handler/chef_profiler"
report_handlers << Chef::Handler::Profiler.new
exception_handlers << Chef::Handler::Profiler.new
Licensed under the MIT license. See LICENSE
file for details.
Author:: Joe Miller https://github.com/joemiller, https://twitter.com/miller_joe
FAQs
Unknown package
We found that chef-handler-profiler demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
A new site reviews software projects to reveal if they’re truly FOSS, making complex licensing and distribution models easy to understand.
Security News
Astral unveils pyx, a Python-native package registry in beta, designed to speed installs, enhance security, and integrate deeply with uv.
Security News
The Latio podcast explores how static and runtime reachability help teams prioritize exploitable vulnerabilities and streamline AppSec workflows.