-
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
[perf-testing] send detailed APM data from report generation #107592
[perf-testing] send detailed APM data from report generation #107592
Conversation
Pinging @elastic/kibana-operations (Team:Operations) |
@elasticmachine merge upstream |
config.globalLabels = Object.fromEntries( | ||
process.env.ELASTIC_APM_GLOBAL_LABELS.split(',').map((p) => { | ||
const [key, ...val] = p.split('='); | ||
return [key, val.join('=')]; |
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.
why we need this join
? in what cases val
might be an array with length > 1?
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.
If the value includes an =
💚 Build Succeeded
Metrics [docs]
History
To update your PR or re-run it, just comment with: |
💔 Backport failed
To backport manually run: |
Friendly reminder: Looks like this PR hasn’t been backported yet. |
…#107592) Co-authored-by: spalger <[email protected]> # Conflicts: # x-pack/scripts/functional_tests.js
#108257) Co-authored-by: spalger <[email protected]> # Conflicts: # x-pack/scripts/functional_tests.js
Closes #107702
Adds an FTR config which produces a PDF report of a dashboard in order to report APM data from dashboard and reporting so we can get an idea of how stable this data is over time, and help us understand how we might use it to power development metrics.