Telemetry - `option_keys` to include meltano options also
See original GitHub issueWe currently collect most optional arguments like described in https://github.com/meltano/meltano/discussions/6036#discussioncomment-2892418:
$ meltano run --dry-run tap-gitalb target-jsonl
command = run
sub_command = None
option_keys = ["dry_run"]
$ meltano schedule set --job
command = schedule
sub_command = set
option_keys = ["job"]
$ meltano invoke something
command = invoke
sub_command = None
options_keys = []
We dont collect things like --log-level=debug
or --environment=dev
. It would be nice to know what CLI arguments are being used and not used.
cc @pandemicsyn @tayloramurphy this is low priority but we talked about it yesterday and wanted to log it.
Issue Analytics
- State:
- Created a year ago
- Comments:5 (3 by maintainers)
Top Results From Across the Web
Telemetry | Meltano Handbook
Telemetry Overview We collect telemetry data (see docs) for the Meltano CLI, UI, website, MeltanoHub, Newsletter, etc. in order to understand usage patterns. ......
Read more >Settings - Meltano Documentation
Meltano supports a number of settings that allow you to fine tune its behavior, which are documented here.To quickly find the setting you're...
Read more >Manage Configuration
You can use meltano config <plugin> list to list all available settings for a plugin with their names, environment variables, and current values....
Read more >Complete Tutorial - Meltano Documentation
Follow the prompts to step through all available settings, or select an individual setting to configure. You can also optionally use the list...
Read more >Meltano Documentation
Welcome to the Meltano Documentation! Here you'll learn how to use Meltano, how Meltano is built, and where to get started.
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
I do wonder if we’ll want/need a
hashed_options_values
entry at some point that we use selectively/carefully. At least its an easy schema evolution if we do need it since its just an addition.@pandemicsyn can you cross-link the PR? Catching up from vacation and the context isn’t clear here.