class Traces::Context

def self.local(flags = 0, **options)

@parameter flags [Integer] Any trace context flags.
Create a local trace context which is likley to be globally unique.
def self.local(flags = 0, **options)
	self.new(SecureRandom.hex(16), SecureRandom.hex(8), flags, **options)
end