Sha256: b9308252bbd38a19d0301dc9d63e5447c64fd9c54003d181d74124298b2bda27
Contents?: true
Size: 545 Bytes
Versions: 7
Compression:
Stored size: 545 Bytes
Contents
#!/usr/bin/env ruby # encoding: utf-8 # This file is distributed under New Relic's license terms. # See https://github.com/newrelic/rpm/blob/master/LICENSE for complete details. ENV["NEW_RELIC_LOG_FILE_PATH"] = "STDOUT" require 'newrelic_rpm' # Force all named items to re-enable enable_everyone = {} DependencyDetection.items.each do |item| if item.name enable_everyone["disable_#{item.name}".to_sym] = false end end NewRelic::Agent.config.apply_config(enable_everyone) # Run dependency detection again! DependencyDetection.detect!
Version data entries
7 entries across 7 versions & 1 rubygems