From be28a3695bf9d0f15d1953a2256a33c9cc1dcb80 Mon Sep 17 00:00:00 2001 From: vil02 <65706193+vil02@users.noreply.github.com> Date: Fri, 31 Jan 2025 16:25:09 +0100 Subject: [PATCH] [Logs] Properly spell `encoded` --- src/content/docs/logs/logpull/requesting-logs.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/docs/logs/logpull/requesting-logs.mdx b/src/content/docs/logs/logpull/requesting-logs.mdx index 062ced7d4eb04c..0505bba85e5b7c 100644 --- a/src/content/docs/logs/logpull/requesting-logs.mdx +++ b/src/content/docs/logs/logpull/requesting-logs.mdx @@ -47,7 +47,7 @@ The following table describes the parameters available: | Parameter | Description | Applies to | Required | | -------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ----------------------------------------- | -------- | -| start |

- Inclusive

- Timestamp formatted as `UNIX` (UTC by definition), `UNIX Nano`, or `rfc3339`. To specify `rfc3339` time zone in URL query parameters, the URL needs to be enconded, like this `start=2024-08-07T07:00:00%2B08:00&end=2024-08-07T07:01:00%2B08:00`.

- Must be no more than 7 days earlier than now

| /logs/received | Yes | +| start |

- Inclusive

- Timestamp formatted as `UNIX` (UTC by definition), `UNIX Nano`, or `rfc3339`. To specify `rfc3339` time zone in URL query parameters, the URL needs to be encoded, like this `start=2024-08-07T07:00:00%2B08:00&end=2024-08-07T07:01:00%2B08:00`.

- Must be no more than 7 days earlier than now

| /logs/received | Yes | | end |

- Exclusive

- Same format as start

- Must be at least 1 minute earlier than now and later than start

| /logs/received | Yes | | count |

- Return up to that many records

- Do not include if returning all records

- Results are not sorted; therefore, different data for repeated requests is likely

- Applies to number of total records returned, not number of sampled records

| /logs/received | No | | sample |

- Return only a sample of records

- Do not include if returning all records

- Value can range from `0.0` (exclusive) to `1.0` (inclusive)

- `sample=0.1` means return 10% (1 in 10) of all records

- Results are random; therefore, different numbers of results for repeated requests are likely

| /logs/received | No |