Skip to content

Commit 9195fb6

Browse files
add anchor links on readme
1 parent f21dd5a commit 9195fb6

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -281,7 +281,7 @@ Query.builder()
281281
```
282282

283283
#### 2.3. Filter
284-
Graylog search filter. Equivalent to `stream select` on Graylog search UI.
284+
Graylog search filter. Equivalent to `stream select` on [Graylog search UI](#21-search-spec).
285285
```
286286
Filter.builder()
287287
.filters(
@@ -295,7 +295,7 @@ Filter.builder()
295295
```
296296

297297
#### 2.4. Timerange
298-
Time range of search. Equivalent to `time range select` on Graylog search UI.
298+
Time range of search. Equivalent to `time range select` on [Graylog search UI](#21-search-spec).
299299

300300
Relative time range:
301301
```
@@ -324,7 +324,7 @@ Timerange timerange = Timerange.builder()
324324
```
325325

326326
#### 2.5. Search Query
327-
Graylog search query. Equivalent to `search query text field` on Graylog search UI.
327+
Graylog search query. Equivalent to `search query text field` on [Graylog search UI](#21-search-spec).
328328
```
329329
SearchQuery.builder()
330330
.queryString("your graylog search query")
@@ -379,7 +379,7 @@ SearchType.builder()
379379
```
380380

381381
#### 2.6.1. Series
382-
Equivalent to `METRICS` on Graylog widget aggregation UI.
382+
Equivalent to `METRICS` on [Graylog widget aggregation UI](#26-search-type).
383383

384384
count():
385385
```
@@ -406,7 +406,7 @@ Series.builder()
406406
```
407407

408408
#### 2.6.2. Row Groups
409-
Equivalent to `ROWS` on Graylog widget aggregation UI.
409+
Equivalent to `ROWS` on [Graylog widget aggregation UI](#26-search-type).
410410
```
411411
SearchTypePivot.builder()
412412
.type(SearchTypePivotType.values) /* values or time */
@@ -416,7 +416,7 @@ SearchTypePivot.builder()
416416
```
417417

418418
#### 2.6.3. Column Groups
419-
Equivalent to `COLUMNS` on Graylog widget aggregation UI.
419+
Equivalent to `COLUMNS` on [Graylog widget aggregation UI](#26-search-type).
420420
```
421421
SearchTypePivot.builder()
422422
.type(SearchTypePivotType.values) /* values or time */
@@ -426,7 +426,7 @@ SearchTypePivot.builder()
426426
```
427427

428428
#### 2.6.4. Sort
429-
Equivalent to `SORTING` and `DIRECTION` on Graylog widget aggregation UI.
429+
Equivalent to `SORTING` and `DIRECTION` on [Graylog widget aggregation UI](#26-search-type).
430430

431431
message sort:
432432
```

0 commit comments

Comments
 (0)