Grop is a grok
powered grep
-like CLI utility, that allows user to manipulate grok
separated columns in different ways (E.g. filter rows with columns).
```bash A grok powered grep-like utility
USAGE: grop [FLAGS] [OPTIONS] [--] [input]
FLAGS:
-d, --debug Activate debug mode
-h, --help Prints help information
--merge-scope-exclusive Whether to take the line matching merge_exp_end
as part of the merged section
-q, --quiet Silence all output
-V, --version Prints version information
-v, --verbose Verbose mode (-v, -vv, -vvv, etc)
OPTIONS:
-e, --expression field_name pattern
) or exclude (-field_name
pattern
) some pattern
-l, --list-pattern <pattern_name> <regexp>
)
--pattern-file
ARGS: Input file, stdin if not present ```
The terraform-provider-azurerm will output a log of logs and I want some way to filter away the uninterested logs.
Some of the log is easy to filter with tools like grep -v
, as long as those logs are one line span.
However, because of the "auto split line" feature of terraform, some log spawned from Azure Go SDK is a payload with multiple lines. This kind of log will be split into multiple logs, prefixed with some terraform log formatting (e.g. timestamp, log level, .etc). This feature is fine when you are looking through the whole log file via terminal/file. However, it makes tools like grep -v
useless when you want some filtering, since grep
is line-based tool, it has no knowledge about the completeness of a payload which spans multiple lines.
This is where grop
can help! grop
works in a pipeline style:
Following is an example snippet showing how to filter aways some uninteresting log for terraform-provider-azurerm:
bash
$ TF_LOG=DEBUG terraform plan 2>&1 | tee /tmp/tf.log | \
cargo run -- -p "LOGLEVEL DEBUG|INFO|WARN|ERROR" \
-p "PROVIDER_SUBJECT plugin.terraform-provider-azurerm" \
-e "%{TIMESTAMP_ISO8601:ts} \[%{LOGLEVEL:lvl}\] %{PROVIDER_SUBJECT}: %{GREEDYDATA:data}" \
-m data \
--merge-exp-start=".* AzureRM Request|Response" \
--merge-exp-end="%{TIMESTAMP_ISO8601:ts} \[%{LOGLEVEL:lvl}\] %{PROVIDER_SUBJECT}: \[DEBUG\]" \
--merge-scope-exclusive \
--filter="-data \[DEBUG\] AzureRM Client User Agent" \
--filter="-data \[DEBUG\] Registering" \
-o ts,data