-
Notifications
You must be signed in to change notification settings - Fork 228
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(metrics): Support multiple OTEL tables #610
Conversation
Updated the source configuration dialog for metrics to handle multiple, supported OTEL metric tables in a single form. Ref: HDX-1390
} | ||
} | ||
} catch (e) { | ||
console.error(e); |
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.
nit: Should probably toast here with e.message
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 just below but left in the console.error
so we also output more context for debugging later.
Added notification toast when catching error trying to validate the table.
🦋 Changeset detectedLatest commit: 365f611 The changes in this PR will be included in the next version bump. This PR includes changesets to release 3 packages
Not sure what this means? Click here to learn what changesets are. Click here if you're a maintainer who wants to add another changeset to this PR |
const connectionId = watch(`connection`); | ||
|
||
const [showOptionalFields, setShowOptionalFields] = useState(false); | ||
useEffect(() => { | ||
setValue('timestampValueExpression', ''); |
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.
can we set this to TimeUnix or StartTimeUnix?
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.
Done.
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.
looks like tests aren't running properly in CI but since it's passing on your machine 👍
Updated the source configuration dialog for metrics to handle multiple, supported OTEL metric tables in a single form.
Ref: HDX-1390