Sha256: 1b10dc1fff5709007fb6b6499a5a32656bdeb9d73b1228afa7f0223d97f28ec4
Contents?: true
Size: 1.53 KB
Versions: 12
Compression:
Stored size: 1.53 KB
Contents
# typed: true require_relative 'ext' module Datadog module Core module Environment # Reads information from Linux cgroups. # This information is used to extract information # about the current Linux container identity. # @see https://man7.org/linux/man-pages/man7/cgroups.7.html module Cgroup include Kernel # Ensure that kernel methods are always available (https://sorbet.org/docs/error-reference#7003) LINE_REGEX = /^(\d+):([^:]*):(.+)$/.freeze Descriptor = Struct.new( :id, :groups, :path, :controllers ) module_function def descriptors(process = 'self') [].tap do |descriptors| begin filepath = "/proc/#{process}/cgroup" if File.exist?(filepath) File.foreach("/proc/#{process}/cgroup") do |line| line = line.strip descriptors << parse(line) unless line.empty? end end rescue StandardError => e Datadog.logger.error( "Error while parsing cgroup. Cause: #{e.class.name} #{e.message} Location: #{Array(e.backtrace).first}" ) end end end def parse(line) id, groups, path = line.scan(LINE_REGEX).first Descriptor.new(id, groups, path).tap do |descriptor| descriptor.controllers = groups.split(',') unless groups.nil? end end end end end end
Version data entries
12 entries across 12 versions & 1 rubygems