Added: [DI-29914] - Pendo Analytics unique IDs for CloudPulse metrics filters and Autocomplete#13402
Merged
venkymano-akamai merged 10 commits intolinode:developfrom Feb 18, 2026
Merged
Conversation
santoshp210-akamai
approved these changes
Feb 16, 2026
Contributor
There was a problem hiding this comment.
Pull request overview
This PR adds Pendo analytics tracking IDs and test IDs to CloudPulse metrics filters and Autocomplete components to enable better usage tracking and testing. The changes are focused on the CloudPulse feature area and the shared Autocomplete UI component, with no functional changes to application behavior.
Changes:
- Added
data-pendo-idattributes to Autocomplete options (default rendering path) and custom renderOption implementations in CloudPulse components - Added
data-testidattributes to CloudPulse filter components (CustomSelect, TextFilter, DateRangePicker presets) - Updated test file to match renamed data-testid value from "group-by" to "widget-group-by"
Reviewed changes
Copilot reviewed 16 out of 16 changed files in this pull request and generated 5 comments.
Show a summary per file
| File | Description |
|---|---|
| packages/ui/src/components/Autocomplete/Autocomplete.tsx | Added data-pendo-id to default renderOption for tracking option selections |
| packages/ui/src/components/DatePicker/DateRangePicker/Presets.tsx | Added data-testid to preset buttons for testing |
| packages/manager/src/features/CloudPulse/shared/CloudPulseTextFilter.tsx | Added data-testid to text input field |
| packages/manager/src/features/CloudPulse/shared/CloudPulseCustomSelect.tsx | Added data-testid to select component |
| packages/manager/src/features/CloudPulse/shared/CloudPulseResourcesSelect.tsx | Added data-pendo-id to custom renderOption for resource options |
| packages/manager/src/features/CloudPulse/shared/CloudPulseFirewallNodebalancersSelect.tsx | Added data-pendo-id to custom renderOption for firewall/nodebalancer options |
| packages/manager/src/features/CloudPulse/shared/CloudPulseEndpointsSelect.tsx | Added data-pendo-id to custom renderOption for endpoint options |
| packages/manager/src/features/CloudPulse/GroupBy/CloudPulseGroupByDrawer.tsx | Added data-pendo-id to custom renderOption for group-by dimension options |
| packages/manager/src/features/CloudPulse/GroupBy/WidgetFilterGroupByRenderer.tsx | Renamed data-testid from "group-by" to "widget-group-by" for clarity |
| packages/manager/src/features/CloudPulse/GroupBy/WidgetFilterGroupByRenderer.test.tsx | Updated tests to use new "widget-group-by" data-testid |
| packages/manager/src/features/CloudPulse/Alerts/NotificationChannels/NotificationChannelDetail/NotificationChannelAlerts.tsx | Added data-pendo-id to custom renderOption for alert service options |
| packages/manager/src/features/CloudPulse/Alerts/NotificationChannels/CreateChannel/NotificationRecipients.tsx | Added data-pendo-id to custom renderOption for recipient options |
| packages/manager/src/features/CloudPulse/Alerts/CreateAlert/GeneralInformation/AlertEntityScopeSelect.tsx | Added data-pendo-id to custom renderOption for entity scope options |
| packages/manager/src/features/CloudPulse/Alerts/AlertsListing/AlertListing.tsx | Added data-pendo-id to custom renderOption for service filter options |
| packages/ui/.changeset/pr-13402-added-1771232329193.md | Changeset documenting Autocomplete changes |
| packages/manager/.changeset/pr-13402-added-1771232291930.md | Changeset documenting CloudPulse metrics changes |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
...oudPulse/Alerts/NotificationChannels/NotificationChannelDetail/NotificationChannelAlerts.tsx
Outdated
Show resolved
Hide resolved
...src/features/CloudPulse/Alerts/NotificationChannels/CreateChannel/NotificationRecipients.tsx
Outdated
Show resolved
Hide resolved
...ger/src/features/CloudPulse/Alerts/CreateAlert/GeneralInformation/AlertEntityScopeSelect.tsx
Outdated
Show resolved
Hide resolved
packages/manager/src/features/CloudPulse/shared/CloudPulseResourcesSelect.tsx
Outdated
Show resolved
Hide resolved
packages/manager/src/features/CloudPulse/shared/CloudPulseFirewallNodebalancersSelect.tsx
Outdated
Show resolved
Hide resolved
bnussman-akamai
approved these changes
Feb 17, 2026
| <Autocomplete | ||
| autoHighlight | ||
| clearOnBlur | ||
| data-pendoid={label || 'Resources'} // Adding data-pendoid for better tracking in Pendo analytics, using the label prop to create a unique identifier for the select element. |
Member
There was a problem hiding this comment.
Should this be data-pendo-id?
Suggested change
| data-pendoid={label || 'Resources'} // Adding data-pendoid for better tracking in Pendo analytics, using the label prop to create a unique identifier for the select element. | |
| data-pendo-id={label || 'Resources'} // Adding data-pendoid for better tracking in Pendo analytics, using the label prop to create a unique identifier for the select element. |
Collaborator
Cloud Manager UI test results🎉 868 passing tests on test run #8 ↗︎
|
This was referenced Feb 19, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description 📝
Need to add unique IDs for pendo analytics to track the filters usage for our CloudPulse metrics
Changes 🔄
data-pendo-idfor the options inside the autocompleteScope 🚢
Upon production release, changes in this PR will be visible to:
Target release date 🗓️ Next Release date
Preview 📷
Include a screenshot
<img src="" />or video<video src="" />of the change.🔒 Use the Mask Sensitive Data setting for security.
💡 For changes requiring multiple steps to validate, prefer a video for clarity.
How to test 🧪
Author Checklists
As an Author, to speed up the review process, I considered 🤔
👀 Doing a self review
❔ Our contribution guidelines
🤏 Splitting feature into small PRs
➕ Adding a changeset
🧪 Providing/improving test coverage
🔐 Removing all sensitive information from the code and PR description
🚩 Using a feature flag to protect the release
👣 Providing comprehensive reproduction steps
📑 Providing or updating our documentation
🕛 Scheduling a pair reviewing session
📱 Providing mobile support
♿ Providing accessibility support
As an Author, before moving this PR from Draft to Open, I confirmed ✅