(id string)
| 1670 | } |
| 1671 | |
| 1672 | func mockBlockMeta(id string) tsdb.BlockMeta { |
| 1673 | return tsdb.BlockMeta{ |
| 1674 | Version: 1, |
| 1675 | ULID: ulid.MustParse(id), |
| 1676 | MinTime: 1574776800000, |
| 1677 | MaxTime: 1574784000000, |
| 1678 | Compaction: tsdb.BlockMetaCompaction{ |
| 1679 | Level: 1, |
| 1680 | Sources: []ulid.ULID{ulid.MustParse(id)}, |
| 1681 | }, |
| 1682 | } |
| 1683 | } |
| 1684 | |
| 1685 | func mockBlockMetaJSON(id string) string { |
| 1686 | meta := mockBlockMeta(id) |
no outgoing calls
no test coverage detected