-
Notifications
You must be signed in to change notification settings - Fork 2
RudderStack Analytics Integration with HyperTrace #27
Conversation
jaywalker21
commented
Apr 5, 2022
- This PR introduces a mechanism to manage secrets for HT UI.
- It also adds support for RudderStack Analytics in the application.
Co-authored-by: Patricio Albizu <patricioalbizu@Patricios-MacBook-Pro.local>
…#1254) * refactor: breadcrumb to support additional specifications * refactor: fixing lint * refactor: fix test * refactor: addressing review comments * refactor: fixing test * refactor: fixing lint * refactor: addressing review comments * refactor: fixing test * refactor: update breadcrumb and fix tests
* feat: Adding properties to Title Content * feat: Fixing comments * feat: fixing comments Co-authored-by: Patricio Albizu <patricioalbizu@Patricios-MacBook-Pro.local>
…ce#1264) * fix: common project should not depend on components project
Snyk has created this PR to upgrade graphql from 15.6.1 to 15.7.0. See this package in npm: https://www.npmjs.com/package/graphql See this project in Snyk: https://app.snyk.io/org/surajpuvvada/project/553e7174-0e22-4c7f-aa2c-12ae5f5768b5?utm_source=github&utm_medium=referral&page=upgrade-pr
* feat: use local storage to persist table columns * fix: typo * style: lint * style: prettier
* feat: util methods to manipulate graphqlTimeRange
Snyk has created this PR to upgrade graphql from 15.7.0 to 15.7.2. See this package in npm: https://www.npmjs.com/package/graphql See this project in Snyk: https://app.snyk.io/org/saxenakshitiz/project/f89d1009-f321-4082-a83b-34ae0ca070eb?utm_source=github&utm_medium=referral&page=upgrade-pr
* fix: new style for title in titled content
This comment has been minimized.
This comment has been minimized.
projects/common/src/telemetry/providers/rudderstack/rudderstack-provider.ts
Show resolved
Hide resolved
copy-secrets.sh
Outdated
@@ -0,0 +1,3 @@ | |||
touch secrets.js | |||
echo "window.RUDDERSTACK_HT_WRITE_KEY = \"$RUDDERSTACK_HT_WRITE_KEY\";" > secrets.js |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
1 case, secret not found what will happen then.
eg -> in perf/devstack we wont be adding this rigth, so u want to add dummy values in secret or handle it in code
(best would be to add dummy, so code remains same)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We need a way to first check if analytics(rudderstack) is enabled and then execute this. Else, for those who don't want this, it might end up failing.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Will add the feature flag kinda stuff so it can be dynamically enabled and disabled.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Added feature flag for analytics
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM. Left minor suggestions.