mirror of
https://github.com/fluencelabs/redis
synced 2025-06-22 13:31:32 +00:00
latencyTimeSeries structure max field type fixed.
This commit is contained in:
@ -46,7 +46,7 @@ struct latencySample {
|
|||||||
/* The latency time series for a given event. */
|
/* The latency time series for a given event. */
|
||||||
struct latencyTimeSeries {
|
struct latencyTimeSeries {
|
||||||
int idx; /* Index of the next sample to store. */
|
int idx; /* Index of the next sample to store. */
|
||||||
mstime_t max; /* Max latency observed for this event. */
|
uint32_t max; /* Max latency observed for this event. */
|
||||||
struct latencySample samples[LATENCY_TS_LEN]; /* Latest history. */
|
struct latencySample samples[LATENCY_TS_LEN]; /* Latest history. */
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user