-
Notifications
You must be signed in to change notification settings - Fork 8.3k
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] Add missing settings to documentation #161603
Conversation
Documentation preview: |
🤖 GitHub commentsExpand to view the GitHub comments
Just comment with:
|
Pinging @elastic/apm-ui (Team:APM) |
[[apm-aws-request]]`observability:apmAWSLambdaRequestCostPerMillion`:: | ||
?? |
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.
@cauemarcondes what does this config do? I couldn't figure it out.
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.
It's used to calculate the cost running on serverless:
kibana/x-pack/plugins/apm/server/routes/metrics/serverless/helper.ts
Lines 90 to 92 in 5fca22a
const estimatedCost = | |
computeUsageGbSec * priceFactor + | |
transactionThroughput * (awsLambdaRequestCostPerMillion / 1000000); |
The price is the number of requests (throughput) multipled with the AWS Lambda request cost (currently the monthly request price is $0.20 per one million request)
💚 Build Succeeded
Metrics [docs]Unknown metric groupsESLint disabled line counts
Total ESLint disabled count
History
To update your PR or re-run it, just comment with: cc @bmorelli25 |
💔 All backports failed
Manual backportTo create the backport manually run:
Questions ?Please refer to the Backport tool documentation |
Friendly reminder: Looks like this PR hasn’t been backported yet. |
Summary
This PR adds missing APM/Observability settings to the documentation:
observability:apmAgentExplorerView
observability:apmAWSLambdaPriceFactor
observability:apmAWSLambdaRequestCostPerMillion
observability:apmEnableContinuousRollups
observability:apmEnableServiceMetrics
observability:apmLabsButton
observability:apmServiceGroupMaxNumberOfServices
observability:apmDefaultServiceEnvironment
This PR also adds @elastic/obs-docs as a codeowner to
/x-pack/plugins/observability/server/ui_settings.ts
so that we don't miss documenting settings moving forward.Closes #118795.