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

[APM] Use Embeddable dashboards for all runtime metric visualisation #170834

Open
kpatticha opened this issue Nov 8, 2023 · 1 comment
Open
Labels
Team:APM All issues that need APM UI Team support technical debt Improvement of the software architecture and operational architecture

Comments

@kpatticha
Copy link
Contributor

kpatticha commented Nov 8, 2023

We should aim to simplify the implementation of service metrics tab by using static dashboards instead of relying on a combination of static dashboards and custom charts.

if (isAWSLambda) {
return <ServerlessMetrics />;
}
const hasStaticDashboard = hasDashboardFile({
agentName,
runtimeName,
serverlessType,
});
if (hasStaticDashboard) {
return (
<JsonMetricsDashboard
agentName={agentName}
runtimeName={runtimeName}
serverlessType={serverlessType}
/>
);
}
if (
!isAWSLambda &&
(isJavaAgentName(agentName) || isJRubyAgent(agentName, runtimeName))
) {
return <JvmMetricsOverview />;
}

Proposal

Use static dashboard and lens

Related

@kpatticha kpatticha added Team:APM All issues that need APM UI Team support technical debt Improvement of the software architecture and operational architecture labels Nov 8, 2023
@elasticmachine
Copy link
Contributor

Pinging @elastic/apm-ui (Team:APM)

@sorenlouv sorenlouv changed the title [APM] Standardize service metrics implementation [APM] Use Embeddable dashboards for all runtime metrics Nov 8, 2023
@sorenlouv sorenlouv changed the title [APM] Use Embeddable dashboards for all runtime metrics [APM] Use Embeddable dashboards for all runtime metric visualisation Nov 8, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Team:APM All issues that need APM UI Team support technical debt Improvement of the software architecture and operational architecture
Projects
None yet
Development

No branches or pull requests

2 participants