MCPcopy
hub / github.com/grafana/tempo / NewBlockMeta

Function NewBlockMeta

tempodb/backend/block_meta.go:238–240  ·  view source on GitHub ↗
(tenantID string, blockID uuid.UUID, version string)

Source from the content-addressed store, hash-verified

236}
237
238func NewBlockMeta(tenantID string, blockID uuid.UUID, version string) *BlockMeta {
239 return NewBlockMetaWithDedicatedColumns(tenantID, blockID, version, nil)
240}
241
242func NewBlockMetaWithDedicatedColumns(tenantID string, blockID uuid.UUID, version string, dc DedicatedColumns) *BlockMeta {
243 b := &BlockMeta{

Calls 1