R/otel.R

Defines functions get_knitr_concord make_knitr_attributes make_chunk_attributes with_otel_record tracer_enabled

otel_tracer_name = 'org.yihui.knitr'

# generic otel helpers:

otel_cache_tracer = NULL
otel_active_span = NULL

local({
  otel_tracer = NULL
  otel_is_tracing = FALSE

  otel_cache_tracer <<- function() {
    requireNamespace('otel', quietly = TRUE) || return()
    otel_tracer <<- otel::get_tracer(otel_tracer_name)
    otel_is_tracing <<- tracer_enabled(otel_tracer)
  }

  # - without specifying `scope`, the span ends when this function returns;
  #   to make this a local span (last as long as the function it is called from),
  #   specify `scope = environment()`
  # - arguments remain unevaluated on early return
  otel_active_span <<- function(
    name,
    label,
    attributes = list(),
    scope = environment()
  ) {
    otel_is_tracing || return()
    otel::start_local_active_span(
      name = sprintf('%s %s', name, label),
      attributes = otel::as_attributes(attributes),
      tracer = otel_tracer,
      activation_scope = scope
    )
  }
})

tracer_enabled = function(tracer) {
  .subset2(tracer, 'is_enabled')()
}

with_otel_record = function(expr) {
  on.exit(otel_cache_tracer())
  otelsdk::with_otel_record({
    otel_cache_tracer()
    expr
  })
}

# knitr-specific helpers:

make_chunk_attributes = function(options) {
  list(
    knitr.chunk.device = options$dev,
    knitr.chunk.echo = options$echo,
    knitr.chunk.engine = options$engine,
    knitr.chunk.eval = options$eval,
    knitr.chunk.label = options$label
  )
}

make_knitr_attributes = function() {
  list(
    knitr.format = out_format(),
    knitr.input = get_knitr_concord('infile'),
    knitr.output = get_knitr_concord('outfile')
  )
}

# safe version that always returns a string
get_knitr_concord = function(name) {
  knit_concord$get(name) %n% ''
}

Try the knitr package in your browser

Any scripts or data that you put into this service are public.

knitr documentation built on Dec. 20, 2025, 5:07 p.m.