in app/lib/librato/LibratoDeployReporter.scala [26:39]
private def report(pr: PullRequest, checkpoint: EverythingYouWantToKnowAboutACheckpoint): Future[_] = {
librato.createAnnotation(s"${pr.baseRepo.name}.prout", Annotation(
title = s"PR #${pr.number} : '${pr.title}' deployed",
description = Some(createdByAndMergedByFor(pr).capitalize),
start_time = pr.merged_at.map(_.toInstant),
end_time = Some(checkpoint.snapshot.time),
source = Some(checkpoint.snapshot.checkpoint.name),
links = Seq(Link(
rel = "github",
label = Some(s"PR #${pr.number}"),
href = Uri.parse(pr.html_url)
))
))
}