package opentelemetry

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Module Opentelemetry_core.ValueSource

Sourcetype t = [
  1. | `Int of int
  2. | `String of string
  3. | `Bool of bool
  4. | `Float of float
  5. | `None
]

A value in a key/value attribute

Sourceval conv : [< `Bool of bool | `Float of float | `Int of int | `None | `String of string ] -> Opentelemetry_core.Common_.Proto.Common.any_value option