obelisk.asynchronous.core.IncomingDatapoint

class obelisk.asynchronous.core.IncomingDatapoint(*, timestamp: AwareDatetime | None = None, metric: str, value: Any, labels: Dict[str, str] | None = None, location: ObeliskPosition | None = None)[source]

Bases: BaseModel

A datapoint to be submitted to Obelisk. These are validated quite extensively, but not fully. .. automethod:: check_metric_type(self)

__init__(**data: Any) None

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

Methods

check_metric_type() Self[source]

Attributes

model_config: ClassVar[ConfigDict] = {}

Configuration for the model, should be a dictionary conforming to [ConfigDict][pydantic.config.ConfigDict].

timestamp: AwareDatetime | None
metric: str
value: Any
labels: Dict[str, str] | None
location: ObeliskPosition | None