Dash0 Acquires Lumigo to Expand Agentic Observability Across AWS and Serverless

Last updated: March 3, 2026

TimeSeriesTable Definition

Displays time series data in a tabular format with configurable column formats, sorting, and aggregation.

Kind: TimeSeriesTable

Spec Properties

PropertyTypeRequiredDescription
dash0Extensionsobject with keys: maxTimeSeriesNo
formatsobjectNo
maxDesiredDataPointsnumber | nullNoMaximum number of data points to display in the widget (0–1000). Lower values improve performance, higher values increase resolution. Null means use the default.
sortobject — Sorting configuration for table or list displays.NoSorting configuration for table or list displays.
calculationstring — enum: first, last, first-number, last-number, mean, sum, min, max, instantNoAggregation function applied to reduce a time series to a single value. 'last' returns the most recent value, 'mean' computes the average, 'sum' totals all values, 'min'/'max' return extremes, 'first-number'/'last-number' skip non-numeric values, and 'instant' returns the value at the end of the time range.

Shared Definitions

formatOptions

Value format configuration. Choose one of: time, percent, decimal, bytes, bytes/s, throughput, currency, or temperature.

One of: timeFormatOptions | percentFormatOptions | decimalFormatOptions | bytesFormatOptions | bytesPerSecondFormatOptions | throughputFormatOptions | currencyFormatOptions | temperatureFormatOptions

timeFormatOptions

Format options for displaying time duration values.

PropertyTypeRequired
unitstring — enum: nanosecond, microsecond, milliseconds, seconds, minutes, hours, days, weeks, months, yearsYes
decimalPlacesnumberNo

percentFormatOptions

Format options for displaying percentage values.

PropertyTypeRequired
unitstring — enum: percent, percent-decimal, %Yes
decimalPlacesnumberNo

decimalFormatOptions

Format options for displaying plain decimal numbers.

PropertyTypeRequired
unitstring — enum: decimalYes
decimalPlacesnumberNo
shortValuesbooleanNo

bytesFormatOptions

Format options for displaying byte values.

PropertyTypeRequired
unitstring — enum: bytesYes
decimalPlacesnumberNo
shortValuesbooleanNo
basestring — enum: decimal, binaryNo

bytesPerSecondFormatOptions

Format options for displaying byte rate values (bytes per second).

PropertyTypeRequired
decimalPlacesnumberNo
shortValuesbooleanNo
basestring — enum: decimal, binaryNo
unitstring — enum: bytes/s, bytes/secYes

throughputFormatOptions

Format options for displaying throughput/rate values.

PropertyTypeRequired
unitstring — enum: counts/sec, events/sec, messages/sec, ops/sec, packets/sec, reads/sec, records/sec, errors/sec, requests/sec, rows/sec, writes/sec, /m, /sYes
decimalPlacesnumberNo
shortValuesbooleanNo

currencyFormatOptions

Format options for displaying monetary/currency values.

PropertyTypeRequired
unitstring — enum: currency-usd, currency-eur, currency-cny, currency-jpyYes
decimalPlacesnumberNo
shortValuesbooleanNo

temperatureFormatOptions

Format options for displaying temperature values.

PropertyTypeRequired
unitstring — enum: celsius, fahrenheitYes
decimalPlacesnumberNo
shortValuesbooleanNo

maxDesiredDataPoints

Maximum number of data points to display in the widget (0–1000). Lower values improve performance, higher values increase resolution. Null means use the default.

One of: number | null

sortConfiguration

Sorting configuration for table or list displays.

PropertyTypeRequired
sortFieldstring | nullNo
sortDirectionstring — enum: asc, descNo

calculationType

Aggregation function applied to reduce a time series to a single value. 'last' returns the most recent value, 'mean' computes the average, 'sum' totals all values, 'min'/'max' return extremes, 'first-number'/'last-number' skip non-numeric values, and 'instant' returns the value at the end of the time range.

Type: string
Values: first, last, first-number, last-number, mean, sum, min, max, instant