Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(cli): add telemetry #280

Merged
merged 25 commits into from
Apr 1, 2025
Merged
Show file tree
Hide file tree
Changes from 5 commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
902561c
refactor(cli): modify commands macros
KokaKiwi Mar 12, 2025
cf17ce5
feat(cli): add telemetry (WIP)
KokaKiwi Mar 12, 2025
99e630d
feat(api-client): add data-collection API client
KokaKiwi Mar 17, 2025
f7a7ee3
feat(cli/telemetry): use new data-collection API client
KokaKiwi Mar 17, 2025
0a97424
Merge remote-tracking branch 'origin/main' into cli/telemetry
KokaKiwi Mar 17, 2025
990df77
feat(cli/telemetry): add ability to opt-out with env var
KokaKiwi Mar 19, 2025
eeca481
feat(cli/telemetry): add intertitle about telemetry on first use
KokaKiwi Mar 19, 2025
e0325c9
fix(cli/telemetry): skip flags from args reporting
KokaKiwi Mar 19, 2025
b8dc2ad
feat(cli/telemetry): add timeout to telemetry request
KokaKiwi Mar 19, 2025
24ddb5a
feat(cli/telemetry): add OS infos
KokaKiwi Mar 19, 2025
f6b0bd5
feat(api-client): add default User-Agent
KokaKiwi Mar 19, 2025
23ad565
Merge remote-tracking branch 'origin/main' into cli/telemetry
KokaKiwi Mar 19, 2025
81a0be7
chore(cli/telemetry): set timeout to 1s
KokaKiwi Mar 19, 2025
34eb9b1
feat(cli/telemetry): add edgee version to event properties
KokaKiwi Mar 19, 2025
a92c386
fix(cli/telemetry): use correct condition for telemetry optout
KokaKiwi Mar 19, 2025
d351cf0
feat(cli/telemetry): fallback to config dir for first run marker file
KokaKiwi Mar 19, 2025
345d7cc
chore(cli/telemetry): move setup to specific subcommands
KokaKiwi Mar 21, 2025
8e844c5
feat(cli/telemetry): add bunch of metadata and fixes to telemetry
KokaKiwi Mar 21, 2025
c0b4ab4
feat(cli/telemetry): add command duration to telemetry
KokaKiwi Mar 21, 2025
0dce951
refactor(cli/telemetry): setup telemetry at CLI root
KokaKiwi Mar 25, 2025
4fcfedd
feat(cli/telemetry): emit additional user event on login command
KokaKiwi Mar 26, 2025
9bb642b
chore(api-client): update OpenAPI spec file
KokaKiwi Apr 1, 2025
84da1e0
feat(cli/telemetry): check for logged-in status when possible
KokaKiwi Apr 1, 2025
9501aab
Merge remote-tracking branch 'origin/main' into cli/telemetry
KokaKiwi Apr 1, 2025
f2321e8
chore(api-client/openapi): fixup spec file
KokaKiwi Apr 1, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions crates/api-client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ edition.workspace = true
anyhow.workspace = true
bon.workspace = true
chrono = { workspace = true, features = ["serde"] }
cookie = { workspace = true, features = ["percent-encode"] }
dirs.workspace = true
easy-ext.workspace = true
futures.workspace = true
Expand Down
Loading