Skip to content

Commit

Permalink
Release 7.9
Browse files Browse the repository at this point in the history
* Fix timeout handling
* Allow for connection preferences into the `meta` settings section
* Allow `_id` to be shown by `es-search.pl`
* Look in `~/.config` for `es-utils.yaml`
* Started some work on library for handling aggregation queries
  • Loading branch information
reyjrar committed Jul 30, 2021
1 parent 5b8e183 commit f386e70
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 13 deletions.
4 changes: 2 additions & 2 deletions CopyIndexes.mkdn
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ es-copy-index.pl - Copy an index from one cluster to another

# VERSION

version 7.8
version 7.9

# SYNOPSIS

Expand Down Expand Up @@ -334,7 +334,7 @@ Brad Lhotsky <[email protected]>

# COPYRIGHT AND LICENSE

This software is Copyright (c) 2020 by Brad Lhotsky.
This software is Copyright (c) 2021 by Brad Lhotsky.

This is free software, licensed under:

Expand Down
4 changes: 2 additions & 2 deletions Maintenance.mkdn
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ es-daily-index-maintenance.pl - Run to prune old indexes and optimize existing

# VERSION

version 7.8
version 7.9

# SYNOPSIS

Expand Down Expand Up @@ -137,7 +137,7 @@ Brad Lhotsky <[email protected]>

# COPYRIGHT AND LICENSE

This software is Copyright (c) 2020 by Brad Lhotsky.
This software is Copyright (c) 2021 by Brad Lhotsky.

This is free software, licensed under:

Expand Down
14 changes: 9 additions & 5 deletions README.mkdn
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ App::ElasticSearch::Utilities - Utilities for Monitoring ElasticSearch

# VERSION

version 7.8
version 7.9

# SYNOPSIS

Expand Down Expand Up @@ -240,6 +240,7 @@ field it needs to sort documents, i.e.:
meta:
logstash:
timestamp: '@timestamp'
host: es-cluster-01.int.example.com
bro:
timestamp: 'timestamp'

Expand Down Expand Up @@ -268,7 +269,8 @@ See also the "CONNECTION ARGUMENTS" and "INDEX SELECTION ARGUMENTS" sections fro

# ARGUMENT GLOBALS

Some options may be specified in the **/etc/es-utils.yaml** or **$HOME/.es-utils.yaml** file:
Some options may be specified in the **/etc/es-utils.yaml**, **$HOME/.es-utils.yaml**
or **$HOME/.config/es-utils/config.yaml** file:

---
base: logstash
Expand Down Expand Up @@ -495,16 +497,18 @@ Brad Lhotsky <[email protected]>
# CONTRIBUTORS

- Alexey Shatlovsky <[email protected]>
- Samit Badle <[email protected]>
- Takumi Sakamoto <[email protected]>
- Vitaly Shupak <[email protected]>
- Alexey Surikov <[email protected]>
- Andrei Grechkin <[email protected]>
- Daniel Ostermeier <[email protected]>
- Jason Rojas <[email protected]>
- Kang-min Liu <[email protected]>
- Lisa Hare <[email protected]>
- Markus Linnala <[email protected]>
- Matthew Feinberg <[email protected]>
- Mohammad S Anwar <[email protected]>
- Samit Badle <[email protected]>
- Takumi Sakamoto <[email protected]>

# SUPPORT

Expand Down Expand Up @@ -542,7 +546,7 @@ This module's source code is available by visiting:

# COPYRIGHT AND LICENSE

This software is Copyright (c) 2020 by Brad Lhotsky.
This software is Copyright (c) 2021 by Brad Lhotsky.

This is free software, licensed under:

Expand Down
4 changes: 2 additions & 2 deletions Searching.mkdn
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ es-search.pl - Provides a CLI for quick searches of data in ElasticSearch daily

# VERSION

version 7.8
version 7.9

# SYNOPSIS

Expand Down Expand Up @@ -549,7 +549,7 @@ Brad Lhotsky <[email protected]>

# COPYRIGHT AND LICENSE

This software is Copyright (c) 2020 by Brad Lhotsky.
This software is Copyright (c) 2021 by Brad Lhotsky.

This is free software, licensed under:

Expand Down
4 changes: 2 additions & 2 deletions lib/App/ElasticSearch/Utilities/Aggregations.pm
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ my %Aggregations = (

);

=function is_single_stat()
=func is_single_stat()
=cut

Expand All @@ -61,7 +61,7 @@ sub is_single_stat {
}


=function expand_aggregate_string( token )
=func expand_aggregate_string( token )
=cut

Expand Down

0 comments on commit f386e70

Please sign in to comment.