Sha256: 3783afca543a8da7e9342de5ce29da74415085b87c76b068a7fdf50211784c27

Contents?: true

Size: 1.35 KB

Versions: 2

Compression:

Stored size: 1.35 KB

Contents

require 'datadog/core/environment/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
        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.message} Location: #{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

2 entries across 2 versions & 1 rubygems

Version Path
ddtrace-0.51.1 lib/datadog/core/environment/cgroup.rb
ddtrace-0.51.0 lib/datadog/core/environment/cgroup.rb