Project

chariot

0.0
No commit activity in last 3 years
No release in over 3 years
Ruby wrapper for os_signposts used to record events and intervals and show them using Xcode Instruments.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies
 Project Readme

Chariot

Ruby wrapper for os_signposts used to record events and intervals and show them using Xcode Instruments.

Installation

Install a recent version of Xcode either through the developer portal or the App Store. Once installed you can start Xcode Instruments through Xcode or you can find it at:

/Applications/Xcode.app/Contents/Applications/Instruments.app

Usage

First you need to come up with a unique subsystem identifier so you don't get in the way of other systems or applications using the same naming as yours.

Our example is for a fictive application called ‘Yellow’.

SUBSYSTEM = 'com.fngtps.yellow'

Logs

Next we need to decide on a category and initialize a log for it. There is no overhead for creating logs other than memory allocation.

log = Chariot::Log.new(SUBSYSTEM, "Redis Connection")

Events

You can either emit an event or record the start or end of an interval. These pieces of data will later be pieced together in Instruments. Let's look at an event first.

log.emit("Open")

When you are emitting large volume of events it's slightly better for performance to create a topic.

topic = Chariot::Topic.new(log, "Open")
topic.emit

An event might have some important details so you can also supply them in the form a string.

topic.emit(message: "host: #{redis.host}, port: #{redis.port}")

Intervals

Recording an interval is useful because it allows us to see if certain things happen at the same time. An interval is kind of like an event with a duration so when you use the same name they will appear associated in Instruments.

log.start("Open", message: "index: #{index}")
redis = open_connection
log.stop("Open", message: "object_id: #{redis.object_id}")

You can also use the block syntax so you don't have to repeat the

log.interval("Open") do
  redis = open_connection
end

Or you can combine both the topic and block approach:

topic.interval { redis = open_connection }