[PR #3156] [MERGED] feat: introduce more events into the analytics pipeline #4257

Closed
opened 2026-03-17 01:48:39 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/hoppscotch/hoppscotch/pull/3156
Author: @AndrewBastin
Created: 6/21/2023
Status: Merged
Merged: 6/24/2023
Merged by: @AndrewBastin

Base: release/2023.4.7Head: chore/more-events


📝 Commits (2)

  • ccae647 feat: introduce more analytics events
  • b91066f refactor: remove logHoppRequestRunToAnalytics for logEvent

📊 Changes

22 files changed (+307 additions, -8 deletions)

View changed files

📝 packages/hoppscotch-common/src/components/collections/ImportExport.vue (+8 -0)
📝 packages/hoppscotch-common/src/components/collections/SaveRequest.vue (+64 -0)
📝 packages/hoppscotch-common/src/components/collections/graphql/Add.vue (+8 -0)
📝 packages/hoppscotch-common/src/components/collections/graphql/ImportExport.vue (+14 -0)
📝 packages/hoppscotch-common/src/components/collections/graphql/index.vue (+16 -0)
📝 packages/hoppscotch-common/src/components/collections/index.vue (+61 -0)
📝 packages/hoppscotch-common/src/components/environments/ImportExport.vue (+20 -0)
📝 packages/hoppscotch-common/src/components/environments/my/Details.vue (+6 -0)
📝 packages/hoppscotch-common/src/components/environments/teams/Details.vue (+6 -0)
📝 packages/hoppscotch-common/src/components/graphql/Request.vue (+2 -1)
📝 packages/hoppscotch-common/src/components/graphql/RequestOptions.vue (+2 -1)
📝 packages/hoppscotch-common/src/components/http/CodegenModal.vue (+5 -0)
📝 packages/hoppscotch-common/src/components/http/ImportCurl.vue (+5 -0)
📝 packages/hoppscotch-common/src/components/http/Request.vue (+22 -1)
📝 packages/hoppscotch-common/src/components/teams/Add.vue (+7 -0)
📝 packages/hoppscotch-common/src/helpers/realtime/MQTTConnection.ts (+2 -1)
📝 packages/hoppscotch-common/src/helpers/realtime/SIOConnection.ts (+2 -1)
📝 packages/hoppscotch-common/src/helpers/realtime/SSEConnection.ts (+2 -1)
📝 packages/hoppscotch-common/src/helpers/realtime/WSConnection.ts (+2 -1)
📝 packages/hoppscotch-common/src/helpers/rest/tab.ts (+5 -0)

...and 2 more files

📄 Description

Closes HFE-112

Description

This PR introduces more events into the analytics pipeline as outlined by the analytics.ts definition.
This PR drops logHoppRequestRunToAnalytics in favor of a general logEvent function that can accept analytics data.

Checks

  • My pull request adheres to the code style of this project
  • My code requires changes to the documentation
  • I have updated the documentation as required
  • All the tests have passed

Additional Information

N/A


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/hoppscotch/hoppscotch/pull/3156 **Author:** [@AndrewBastin](https://github.com/AndrewBastin) **Created:** 6/21/2023 **Status:** ✅ Merged **Merged:** 6/24/2023 **Merged by:** [@AndrewBastin](https://github.com/AndrewBastin) **Base:** `release/2023.4.7` ← **Head:** `chore/more-events` --- ### 📝 Commits (2) - [`ccae647`](https://github.com/hoppscotch/hoppscotch/commit/ccae6477c5f3928947ba8d99a01032a38434360b) feat: introduce more analytics events - [`b91066f`](https://github.com/hoppscotch/hoppscotch/commit/b91066fdf8d5373a91fa26175241074befe8089a) refactor: remove logHoppRequestRunToAnalytics for logEvent ### 📊 Changes **22 files changed** (+307 additions, -8 deletions) <details> <summary>View changed files</summary> 📝 `packages/hoppscotch-common/src/components/collections/ImportExport.vue` (+8 -0) 📝 `packages/hoppscotch-common/src/components/collections/SaveRequest.vue` (+64 -0) 📝 `packages/hoppscotch-common/src/components/collections/graphql/Add.vue` (+8 -0) 📝 `packages/hoppscotch-common/src/components/collections/graphql/ImportExport.vue` (+14 -0) 📝 `packages/hoppscotch-common/src/components/collections/graphql/index.vue` (+16 -0) 📝 `packages/hoppscotch-common/src/components/collections/index.vue` (+61 -0) 📝 `packages/hoppscotch-common/src/components/environments/ImportExport.vue` (+20 -0) 📝 `packages/hoppscotch-common/src/components/environments/my/Details.vue` (+6 -0) 📝 `packages/hoppscotch-common/src/components/environments/teams/Details.vue` (+6 -0) 📝 `packages/hoppscotch-common/src/components/graphql/Request.vue` (+2 -1) 📝 `packages/hoppscotch-common/src/components/graphql/RequestOptions.vue` (+2 -1) 📝 `packages/hoppscotch-common/src/components/http/CodegenModal.vue` (+5 -0) 📝 `packages/hoppscotch-common/src/components/http/ImportCurl.vue` (+5 -0) 📝 `packages/hoppscotch-common/src/components/http/Request.vue` (+22 -1) 📝 `packages/hoppscotch-common/src/components/teams/Add.vue` (+7 -0) 📝 `packages/hoppscotch-common/src/helpers/realtime/MQTTConnection.ts` (+2 -1) 📝 `packages/hoppscotch-common/src/helpers/realtime/SIOConnection.ts` (+2 -1) 📝 `packages/hoppscotch-common/src/helpers/realtime/SSEConnection.ts` (+2 -1) 📝 `packages/hoppscotch-common/src/helpers/realtime/WSConnection.ts` (+2 -1) 📝 `packages/hoppscotch-common/src/helpers/rest/tab.ts` (+5 -0) _...and 2 more files_ </details> ### 📄 Description Closes HFE-112 ### Description This PR introduces more events into the analytics pipeline as outlined by the `analytics.ts` definition. This PR drops `logHoppRequestRunToAnalytics` in favor of a general `logEvent` function that can accept analytics data. ### Checks <!-- Make sure your pull request passes the CI checks and do check the following fields as needed - --> - [x] My pull request adheres to the code style of this project - [ ] My code requires changes to the documentation - [x] I have updated the documentation as required - [x] All the tests have passed ### Additional Information N/A --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-03-17 01:48:39 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/hoppscotch#4257
No description provided.