From d68d3983d84f314d389589c3f81ba008e991f1ac Mon Sep 17 00:00:00 2001 From: Richard Hartmann Date: Wed, 28 Jul 2021 14:52:02 +0200 Subject: [PATCH] Make clear that start/end are inclusive Fixes: https://github.com/prometheus/prometheus/issues/9100 Signed-off-by: Richard Hartmann --- docs/querying/api.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/querying/api.md b/docs/querying/api.md index ba13a32b85..58d5c11ebe 100644 --- a/docs/querying/api.md +++ b/docs/querying/api.md @@ -145,8 +145,8 @@ POST /api/v1/query_range URL query parameters: - `query=`: Prometheus expression query string. -- `start=`: Start timestamp. -- `end=`: End timestamp. +- `start=`: Start timestamp, inclusive. +- `end=`: End timestamp, inclusive. - `step=`: Query resolution step width in `duration` format or float number of seconds. - `timeout=`: Evaluation timeout. Optional. Defaults to and is capped by the value of the `-query.timeout` flag.