This commit is contained in:
Michael Hoffmann 2024-09-20 00:09:10 +05:30 committed by GitHub
commit 266eca2f7a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 53 additions and 6 deletions

View file

@ -1589,9 +1589,15 @@ type HeadStats struct {
MaxTime int64 `json:"maxTime"`
}
// TSDBStats has information about the TSDB.
type TSDBStats struct {
MinTime int64 `json:"minTime"`
}
// TSDBStatus has information of cardinality statistics from postings.
type TSDBStatus struct {
HeadStats HeadStats `json:"headStats"`
TSDBStats TSDBStats `json:"tsdbStats"`
SeriesCountByMetricName []TSDBStat `json:"seriesCountByMetricName"`
LabelValueCountByLabelName []TSDBStat `json:"labelValueCountByLabelName"`
MemoryInBytesByLabelName []TSDBStat `json:"memoryInBytesByLabelName"`
@ -1625,12 +1631,18 @@ func (api *API) serveTSDBStatus(r *http.Request) apiFuncResult {
return apiFuncResult{nil, &apiError{errorInternal, fmt.Errorf("error gathering runtime status: %w", err)}, nil, nil}
}
chunkCount := int64(math.NaN())
lowestTimestamp := int64(math.NaN())
for _, mF := range metrics {
if *mF.Name == "prometheus_tsdb_head_chunks" {
switch *mF.Name {
case "prometheus_tsdb_head_chunks":
m := mF.Metric[0]
if m.Gauge != nil {
chunkCount = int64(m.Gauge.GetValue())
break
}
case "prometheus_tsdb_lowest_timestamp":
m := mF.Metric[0]
if m.Gauge != nil {
lowestTimestamp = int64(m.Gauge.GetValue())
}
}
}
@ -1642,6 +1654,7 @@ func (api *API) serveTSDBStatus(r *http.Request) apiFuncResult {
MaxTime: s.MaxTime,
NumLabelPairs: s.IndexPostingStats.NumLabelPairs,
},
TSDBStats: TSDBStats{MinTime: lowestTimestamp},
SeriesCountByMetricName: TSDBStatsFromIndexStats(s.IndexPostingStats.CardinalityMetricsStats),
LabelValueCountByLabelName: TSDBStatsFromIndexStats(s.IndexPostingStats.CardinalityLabelStats),
MemoryInBytesByLabelName: TSDBStatsFromIndexStats(s.IndexPostingStats.LabelValueStats),

View file

@ -20,6 +20,9 @@ const fakeTSDBStatusResponse: {
minTime: 1591516800000,
maxTime: 1598896800143,
},
tsdbStats: {
minTime: 1591516800000,
},
labelValueCountByLabelName: [
{
name: '__name__',
@ -64,6 +67,9 @@ const fakeEmptyTSDBStatusResponse: {
minTime: 9223372036854776000,
maxTime: -9223372036854776000,
},
tsdbStats: {
minTime: 9223372036854776000,
},
labelValueCountByLabelName: [],
seriesCountByMetricName: [],
memoryInBytesByLabelName: [],
@ -84,6 +90,9 @@ const fakeInvalidTimestampTSDBStatusResponse: {
minTime: 9223372036854776000,
maxTime: -9223372036854776000,
},
tsdbStats: {
minTime: 9223372036854776000,
},
labelValueCountByLabelName: [],
seriesCountByMetricName: [],
memoryInBytesByLabelName: [],

View file

@ -19,8 +19,13 @@ interface HeadStats {
maxTime: number;
}
interface TSDBStats {
minTime: number;
}
export interface TSDBMap {
headStats: HeadStats;
tsdbStats: TSDBStats;
seriesCountByMetricName: Stats[];
labelValueCountByLabelName: Stats[];
memoryInBytesByLabelName: Stats[];
@ -45,29 +50,49 @@ export const TSDBStatusContent: FC<TSDBMap> = ({
}
};
const { chunkCount, numSeries, numLabelPairs, minTime, maxTime } = headStats;
const stats = [
const headStatsKV = [
{ header: 'Number of Series', value: numSeries },
{ header: 'Number of Chunks', value: chunkCount },
{ header: 'Number of Label Pairs', value: numLabelPairs },
{ header: 'Current Min Time', value: `${unixToTime(minTime)}` },
{ header: 'Current Max Time', value: `${unixToTime(maxTime)}` },
];
const tsdbStatsKV = [{ header: 'Current Min Time', value: `${unixToTime(minTime)}` }];
return (
<div>
<h2>TSDB Status</h2>
<h3 className="p-2">Head Stats</h3>
<h3 className="p-2">TSDB Stats</h3>
<div className="p-2">
<Table bordered size="sm" striped>
<thead>
<tr>
{stats.map(({ header }) => {
{tsdbStatsKV.map(({ header }) => {
return <th key={header}>{header}</th>;
})}
</tr>
</thead>
<tbody>
<tr>
{stats.map(({ header, value }) => {
{tsdbStatsKV.map(({ header, value }) => {
return <td key={header}>{value}</td>;
})}
</tr>
</tbody>
</Table>
</div>
<h3 className="p-2">Head Stats</h3>
<div className="p-2">
<Table bordered size="sm" striped>
<thead>
<tr>
{headStatsKV.map(({ header }) => {
return <th key={header}>{header}</th>;
})}
</tr>
</thead>
<tbody>
<tr>
{headStatsKV.map(({ header, value }) => {
return <td key={header}>{value}</td>;
})}
</tr>