- Issue created by @catch
- Status changed to Postponed
over 1 year ago 4:19pm 5 April 2023 - ๐ฌ๐งUnited Kingdom catch
Couple more lines to bring in from the other issue.
- ๐ฌ๐งUnited Kingdom catch
Re-rolled based on the latest changes in โจ Add PerformanceTestBase for allowing browser performance assertions within FunctionalJavaScriptTests Fixed .
- ๐ซ๐ทFrance andypost
$_ENV['OTEL_COLLECTOR']
needs some request object) - ๐ฌ๐งUnited Kingdom catch
Still need to fix #7, couple more changes now this is based on the base class from the parent issue.
- ๐ฌ๐งUnited Kingdom catch
Had a quick look at getting environment variables in Symfony and they have a whole separate API for it, couldn't see a simple wrapper like the request object unless I'm missing something obvious.
New patch which abandons first content paint and largest contentful paint for now since they don't seem to be reliably available in the chromedriver log, and just does time to first byte instead.
- ๐ฌ๐งUnited Kingdom catch
Need to set span.kind to server for it to show up in the Jaeger monitoring tab.
- ๐ฌ๐งUnited Kingdom catch
Adding an extra request and renaming the anonymous test so we can log/graph node/1 too.
- ๐ฌ๐งUnited Kingdom catch
Using the performance timing API now - seems more reliable.
- ๐ฌ๐งUnited Kingdom catch
I've updated the issue summary to show a screenshot of how this looks in Jaeger/Prometheus and a bit more information about the implementation.
- ๐ฌ๐งUnited Kingdom catch
โจ Add PerformanceTestBase for allowing browser performance assertions within FunctionalJavaScriptTests Fixed landed so this now just needs ๐ Add open-telemetry/sdk and open-telemetry/exporter-otlp as dev dependencies Active .
- ๐ฌ๐งUnited Kingdom catch
Re-rolled now that โจ Add PerformanceTestBase for allowing browser performance assertions within FunctionalJavaScriptTests Fixed is in.
- ๐ง๐ชBelgium wim leers Ghent ๐ง๐ช๐ช๐บ
Exciting!
๐ Add open-telemetry/sdk and open-telemetry/exporter-otlp as dev dependencies Active landed so updating title.
Is this ready for review?
- Status changed to Needs review
over 1 year ago 11:49am 22 June 2023 - last update
over 1 year ago Patch Failed to Apply - last update
over 1 year ago Custom Commands Failed - last update
over 1 year ago Patch Failed to Apply - last update
over 1 year ago Patch Failed to Apply - last update
over 1 year ago Patch Failed to Apply - last update
over 1 year ago Patch Failed to Apply - last update
over 1 year ago Patch Failed to Apply - ๐ฌ๐งUnited Kingdom catch
Could definitely use high-level review!
The best way to try this out is to use the repo at https://github.com/tag1consulting/google-drupal, should be just a couple of steps if you already have ddev, or a handful of steps if you don't. That way you get a local instance and can see what it looks like - very sparse at the moment but shows where things could go.
As it currently stands there is no public opentelemetry instance for us to log to, but I think the dependency issue landing and this one getting some review would be enough to make it worthwhile setting one up (although possibly not jaeger/prometheus - have been discussing using https://signoz.io/ with @nnewton but that is still @todo and TBD). Until we have a telemetry instance and gitlab CI setting the environment variables, this will be dead code in core and only useful for local development. So there is a bit of chicken and egg there.
- Status changed to Needs work
over 1 year ago 12:27pm 22 June 2023 The Needs Review Queue Bot โ tested this issue. It fails the Drupal core commit checks. Therefore, this issue status is now "Needs work".
This does not mean that the patch needs to be re-rolled or the MR rebased. Read the Issue Summary, the issue tags and the latest discussion here to determine what needs to be done.
Consult the Drupal Contributor Guide โ to find step-by-step guides for working with issues.
- ๐ฌ๐งUnited Kingdom catch
Switching to an MR now the two dependencies have landed.
- Status changed to Needs review
over 1 year ago 12:57pm 22 June 2023 - last update
over 1 year ago 29,531 pass - @catch opened merge request.
- last update
over 1 year ago 29,531 pass - last update
over 1 year ago 29,531 pass - last update
over 1 year ago 29,531 pass - ๐ฌ๐งUnited Kingdom catch
The testing repo needs updating for the latest core commits again so best to hold off trying to test that for now.
- heddn Nicaragua
I think we have a solution for LCP mentioned in the IS. Maybe we should update that. The actual code here looks fine and has gone through several rounds of reviews already.
- ๐ฌ๐งUnited Kingdom catch
I sort of found a way to get Largest Contentful Paint originally, but also it was unreliable due to the way chrome logging works, so that is still TBD. The code for that (as far as I got) is in #3352459-8: Log traces from performance tests to OpenTelemetry โ .
The problem is that the chrome performance log can only get you Largest Contentful Paint candidates and it's up to interpretation which one is the actual Largest Contentful Paint (it should be the last one for any particular request generally).
What I was finding was that the first request in a test would not produce anything for LCP (i.e. there would be no candidates at all), but then the second or third request would, which suggests some kind of warm up or race condition issue with the chrome performance log or some artifact of retrieving the log programmatically in phpunit vs. looking at it in dev tools.
This is also an issue with the performance typing API which I switched to in #3352459-12: Log traces from performance tests to OpenTelemetry โ - i.e. it's better for everything else but still unreliable for LCP.
- last update
over 1 year ago Custom Commands Failed - last update
over 1 year ago 29,802 pass - last update
over 1 year ago 29,802 pass - last update
over 1 year ago Custom Commands Failed - last update
over 1 year ago Custom Commands Failed - ๐ฌ๐งUnited Kingdom catch
Have done a bit more work on the dashboard, switching from Jaeger + Prometheus standalone, to Prometheus + Grafana + Grafana Tempo. Grafana gives us a lot more options to display data, and Grafana Tempo handles traces. This is still early days but you can see the possibilities.
I've also updated the MR to handle largest contentful paint again, after figuring out the weird things going on in the chrome performance logs (see inline comments). The dashboard is now able to expose the LCP issue in Umami from ๐ Improve Largest Contentful Paint in Umami front page Fixed on the front page - compare the timings for to node/1.
- last update
over 1 year ago 29,802 pass - last update
over 1 year ago 29,804 pass - ๐ฌ๐งUnited Kingdom catch
I've posted a chromium bug report here: https://bugs.chromium.org/p/chromium/issues/detail?id=1463436
There's a completely different way to get the LCP event, which is to embed JavaScript on the tested site and log to opentelemetry from the tested site instead of the test. i.e. we'd need an opentelemetry module which we install during tests. This is how you'd do it for a production site because of course you don't control the browser in that case.
I started doing this with chromedriver instead because 1. I didn't think it would be this hard ;) 2. there's some data from the performance log we can assert on, so it's useful not only for opentelemetry 3. it leaves the tested site 'clean' without additional JavaScript - for example we have tests that ensure there is no anonymous js at all in the standard profile, once we add js we can't test the non-js state.
We'll need to run some PHP on the tested site to collect things like database queries etc. but that is completely unavoidable (and it'll be easier to account for than having js vs. none at all). But.. we could switch to a more 'production' APM set-up with the trade-offs acknowledged if we need to.
- last update
over 1 year ago 29,817 pass - last update
over 1 year ago Custom Commands Failed - last update
over 1 year ago Custom Commands Failed - ๐ฌ๐งUnited Kingdom catch
Another dashboard update, but getting much closer to something actually useful now.
- last update
over 1 year ago Custom Commands Failed - last update
over 1 year ago Custom Commands Failed - last update
over 1 year ago Custom Commands Failed - last update
over 1 year ago Custom Commands Failed - last update
over 1 year ago Custom Commands Failed - last update
over 1 year ago Custom Commands Failed - last update
over 1 year ago Custom Commands Failed - last update
over 1 year ago Custom Commands Failed - last update
over 1 year ago 29,821 pass - last update
over 1 year ago 29,821 pass - ๐ฌ๐งUnited Kingdom catch
The dashboard/tests are now at the point where you can visually see the improvement from ๐ Improve Largest Contentful Paint in Umami front page Fixed in the graphs on the OpenTelemetry side (which is the repo in the issue summary).
The green dots are LCP, the blue dots are FCP, the yellow dots are TTFB.
After the patch is applied, the green dots and blue dots merge - this means instead of two Largest Contentful Paint events, there is only one, which happens to be the same paint as the First Contentful Paint. Can also see the timings go down by 150-200ms.
I'll try to reproduce this one more time and post some better screenshots including traces next week.
- last update
over 1 year ago Custom Commands Failed - First commit to issue fork.
- last update
over 1 year ago 29,825 pass - heddn Nicaragua
Ran through the setup instructions and got this running locally. The prometheus/grafana/tempo UI looks really snazzy. There still a few nits on the MR, but once those are addressed, I don't have any objects to this. LGTM.
- heddn Nicaragua
I was looking through what we log to otel today and wondered if there was any way to get the ttfb, lcp and fcp numbers returned from PerformanceTestBase after calling
drupalGet()
. In addition to logging to otel, we could also write asserts that one of these stats is less then X seconds? I can see where that would be a bad thing generally speaking because of slow testbots or other one-off issues. So not adding the feature is probably a good idea. But just raising it for completeness so we can quickly reject it. - ๐ฌ๐งUnited Kingdom catch
I was looking through what we log to otel today and wondered if there was any way to get the ttfb, lcp and fcp numbers returned from PerformanceTestBase after calling drupalGet(). In addition to logging to otel, we could also write asserts that one of these stats is less then X seconds?
It's definitely possible, the problem is once we have random failures no-one trusts anything, which is already a problem with normal js testing.
I had to split ๐ Add image request counts to PerformanceTestBase Needs work out of the PerformanceTestBase issue since you sometimes get 7 or 8 images loaded between requests, which I assume is something slightly non-deterministic about how chrome calculates whether an image needs to be lazy loaded or not. Haven't gone back to that one recently.
Having said that, with Umami the FCP and LCP are exactly the same event after ๐ Improve Largest Contentful Paint in Umami front page Fixed , and this is probably already the case for the standard profile. So... I wonder if we could use assertIdentical()? That would only catch a certain class of issues but it'd be more than nothing. We'd probably need to do the 'run the test 10,000 times' thing to make they really are identical and there's aren't occasional requests where chrome does something different.
On actually running these tests, my proposal is we run them sort-of twice:
1. On normal phpunit test runs, we don't set OTEL_COLLECTOR, so that collection doesn't happen. However running the test will make sure they don't get broken by other changes in core.
2. In a separate gitlab pipeline, we'd run the tests on a schedule against each branch (hourly + after each commit might be good), with no concurrency, so that the machine is doing one thing at a time. Hopefully that way we'll get more consistent results.
General note I looked into combining the test methods into a single method and clearing caches in the appropriate places etc. to try to reduce the number of times we need to re-install core, but that led to inconsistent results all over the place. So if we want to try to do that, it would be better done in a follow-up issue when we've got a consistent set of results to compare against. The chrome performance log is unfortunately not easy to work with like this.
I'll try to go through the MR nits soon. Also want to add a similar test case to the umami one for the standard profile. And maybe some logged in tests for both.
We need the grafana stack + gitlab pipeline set up before this can actually do anything publicly accessible (although that's part of the google project this is funded by), so while it would be great to have it committed, there are more steps to getting it going.
- last update
over 1 year ago 29,885 pass - last update
over 1 year ago 29,885 pass - ๐ฌ๐งUnited Kingdom catch
I've opened some follow-up issues postponed on this one for adding more information to traces. It would be possible to do here, but trying to keep this reviewable.
โจ Add authenticated user telemetry tests Active
๐ Add database query spans to otel traces Needs review
โจ Support 'interaction to next paint' (or close equivalent) in performance testing Active
โจ Add script, style, image HTTP requests to otel traces Active - Status changed to RTBC
over 1 year ago 3:20pm 1 August 2023 - last update
over 1 year ago 29,918 pass - last update
over 1 year ago 29,928 pass, 1 fail - last update
over 1 year ago 29,959 pass - last update
over 1 year ago 29,959 pass - Status changed to Needs work
over 1 year ago 10:28am 7 August 2023 - ๐ง๐ชBelgium wim leers Ghent ๐ง๐ช๐ช๐บ
Looking great, but I have a few questions, and am slightly worried about so many
@todo
s without follow-up issues. ๐ - Status changed to Needs review
over 1 year ago 5:09pm 7 August 2023 - ๐ฌ๐งUnited Kingdom catch
I've added the following three follow-up issues as requested by Wim. Think I was able to resolve all the other threads too.
๐ Add the commit hash to OpenTelemetry traces Active
๐ Optimize PerformanceTestBase largest contentful paint detection Active
๐ Figure out cold start issue with chromedriver performance logs Active - ๐ซ๐ทFrance andypost
@catch is there a reason why https://git.drupalcode.org/project/drupal/-/tree/3352459-log-traces-from... branch exists in core repo?
- last update
over 1 year ago Custom Commands Failed - Status changed to Needs work
over 1 year ago 8:12am 8 August 2023 The Needs Review Queue Bot โ tested this issue. It no longer applies to Drupal core. Therefore, this issue status is now "Needs work".
This does not mean that the patch needs to be re-rolled or the MR rebased. Read the Issue Summary, the issue tags and the latest discussion here to determine what needs to be done.
Consult the Drupal Contributor Guide โ to find step-by-step guides for working with issues.
- last update
over 1 year ago 29,960 pass - Status changed to Needs review
over 1 year ago 3:50pm 8 August 2023 - Status changed to Needs work
over 1 year ago 7:43pm 8 August 2023 The Needs Review Queue Bot โ tested this issue. It no longer applies to Drupal core. Therefore, this issue status is now "Needs work".
This does not mean that the patch needs to be re-rolled or the MR rebased. Read the Issue Summary, the issue tags and the latest discussion here to determine what needs to be done.
Consult the Drupal Contributor Guide โ to find step-by-step guides for working with issues.
- Status changed to Needs review
over 1 year ago 8:34pm 8 August 2023 - ๐บ๐ธUnited States mherchel Gainesville, FL, US
Is this MR right? There's over 1000 changes... many of them inconsequential.
- last update
about 1 year ago 30,054 pass - ๐ฌ๐งUnited Kingdom catch
Not sure what happened to it, but did a rebase which seems to have cleaned up the MR.
- ๐บ๐ธUnited States smustgrave
Think it would be really neat to have this included and maybe incorporated into the review process. Not sure who to ping though for all those approvals haha
- last update
about 1 year ago 30,157 pass - ๐บ๐ธUnited States smustgrave
Cloned the repo and setup locally, had to do some workarounds as chromedriver addon doesn't work on M1 Macbooks.
Was able to get running and verified the charts populating, very neat!
Don't think I can mark till release manager and framework managers sign off.
But question, with all the work of gitlab where would this fall into that workflow? Would/could it be a tab reviewers could see like the "test-only" tab being worked on?
- ๐ฌ๐งUnited Kingdom catch
But question, with all the work of gitlab where would this fall into that workflow?
So the idea is that we'd configure a specific pipeline job that sets the environment variable with an open telemetry endpoint, and then run only --group OpenTelemetry tests (directly with phpunit, not run-tests.sh). This would run only on scheduled core pipelines, not MRs or commits. That way the data going into the graphs is from core branches and on a predictable schedule.
Would/could it be a tab reviewers could see like the "test-only" tab being worked on?
No because this only populates the grafana/tempo installation per the above screenshots, and it's specific for things that can vary slightly between tests like timings that we can't easily add assertions for. However, once we have a public grafana/tempo instance for gitlab ci to point to, we'd be able to have a public dashboard either at a URL like core-performance.drupal.org and/or embedded somewhere. Exactly where to put it is tbd. Here's Gutenburg's (very different) dashboard for comparison: https://www.codevitals.run/project/gutenberg
- ๐ฉ๐ชGermany Fabianx
Tested locally!
Works really well.
For those that want to do that on a M1/M2 from the google-drupal repo, here are the steps:
cd .ddev rm docker-compose.chromedriver.yml ddev get ddev/ddev-selenium-standalone-chrome
The rest works normally.
Reviewed:
There had been 4 things I flagged:
- a) One nit / question
- b) A suggestion to add a proper API, so that object properties do not need to be used as API
- c) I read now that JS wants to be avoided to load on the page directly, so it's probably answered, but would still be good to make this clear. (as this design decision is only in the chromium bug report)
- d) It's unclear how spans are working in relation to scopes; might be good to add some comments to explain how that worksOverall looks really really good and once these questions are answered, we can go back to RTBC!
- last update
about 1 year ago Custom Commands Failed - last update
about 1 year ago Custom Commands Failed - last update
about 1 year ago 30,370 pass - Status changed to RTBC
about 1 year ago 4:13pm 26 September 2023 - ๐ฉ๐ชGermany Fabianx
RTBC!
Thanks, Nat! The new API looks splendid and works fantastically well locally.
- last update
about 1 year ago 30,369 pass - last update
about 1 year ago 30,369 pass - last update
about 1 year ago 30,369 pass - ๐ฌ๐งUnited Kingdom catch
Addressed @quietone's points on the MR (I think) - leaving RTBC since these were 100% comment changes.
- ๐ฌ๐งUnited Kingdom catch
Removing the FEFM and release manager review tags, we'll need RM review if we add alerting or similar in (which would be on the grafana end), but just for having this in core and producing the dashboard I think the main thing is the implementation here.
- last update
about 1 year ago 30,372 pass - last update
about 1 year ago 30,372 pass - last update
about 1 year ago Custom Commands Failed - last update
about 1 year ago Custom Commands Failed - @catch opened merge request.
- last update
about 1 year ago Custom Commands Failed - Status changed to Needs review
about 1 year ago 4:42pm 28 September 2023 - ๐ฌ๐งUnited Kingdom catch
Looking at this and \Drupal\FunctionalJavascriptTests\PerformanceTestBase::drupalGet() makes me think that we should aim to remove most of the logging code from PerformanceTestBase and put it in a middleware like Drupal\Core\Test\HttpClientMiddleware\TestHttpClientMiddleware
I'm not sure about the best way to register the middleware but maybe putting it in \Drupal\Core\CoreServiceProvider::registerTest() for now would be okay.
I started to look at a middleware, but realised we'd need a static + getter and setter to set telemetry logging on and off, then another static + getter and setter to hold stylesheet/script counts so that the test can assert on them.
However, I then realised a trait should be possible without the above drawbacks, so I've pushed a new branch that starts work on this.
@alexpott mentioned in slack that a middleware would make logging telemetry data from non-drupalGet code easier - I think we can achieve this now via a similar trick to logTelemetryData() so have added ::collectPerformanceData($callable, ?PerformanceData $performance_data);
This will either allow for logging performance data from things like form submissions, link clicking or drupalPost() out of the box, or with very little modification in a follow-up.
However it's a large refactoring of the existing PerformanceTestBase class that's already in HEAD, and I don't want to get bogged down here, so unless the API change here helps to get this issue committed faster, we might want to move that to a follow-up? There's still time to change the API before 10.2.x alpha/beta is tagged but not that much, and I don't want to be then adding bc layers in this issue too.
- last update
about 1 year ago CI error - last update
about 1 year ago 30,368 pass - last update
about 1 year ago CI error - last update
about 1 year ago 30,368 pass - last update
about 1 year ago Build Successful - last update
about 1 year ago 30,368 pass - ๐ฎ๐ณIndia bhanu951
Seems a random test failure. Initiating retesting.
- ๐ฌ๐งUnited Kingdom catch
If the new approach looks OK we should update https://www.drupal.org/node/3366904 โ , none of this is in a tagged release yet so just updating the existing change record should be fine.
I am not 100% on the PerformanceData value object, it gets rid of the class properties and makes everything more explicit but it also makes the profile requests more verbose. Generally the performance requests being more verbose feels like it's probably fine, it's good to make that explicit rather than implicit to differentiate them from setup/warmup steps.
- last update
about 1 year ago 30,368 pass - last update
about 1 year ago 30,368 pass - Status changed to RTBC
about 1 year ago 10:28am 29 September 2023 - ๐ฉ๐ชGermany Fabianx
Re-reviewed and the changes look good to me.
Originally I thought that the collectPerformanceData() could just return the $performance_data object, but as it also needs to return the result of the inner closure, passing it as an argument is the best solution indeed.
I agree that a trait is the best compromise between an inflexible class and a hard-to-register MiddleWare.
A MiddleWare can easily be created in the future to test normal page requests using the new trait.
Back to RTBC!
- ๐ฌ๐งUnited Kingdom catch
Originally I thought that the collectPerformanceData() could just return the $performance_data object, but as it also needs to return the result of the inner closure, passing it as an argument is the best solution indeed.
Yeah I didn't have a better idea. I don't know when we ever actually use the return value of drupalGet(), especially in web driver tests, but if don't return the callable return, there's no way to do it.
I guess we could maybe do something like PerformanceData::getOriginalReturnValue() or something, and stick it in there, then we can get rid of the argument and have less boilerplate. That would be an easy change to make but will wait for feedback before doing it.
- last update
about 1 year ago 30,367 pass - ๐ฉ๐ชGermany Fabianx
Oh - I love that idea of just storing the returnValue in the performanceData.
++ to less boilerplate.
if ($return) { $performance_data->setReturnValue($return); } $return = $performance_data->getReturnValue();
both feels really good.
And given it's an edge case that probably is not needed in 90% of cases, it's good to optimize for the common case.
- last update
about 1 year ago Custom Commands Failed - Status changed to Needs review
about 1 year ago 12:07pm 2 October 2023 - last update
about 1 year ago 30,368 pass - last update
about 1 year ago 30,368 pass - Status changed to RTBC
about 1 year ago 1:52pm 2 October 2023 - ๐ฉ๐ชGermany Fabianx
Back to RTBC! Changes look great to me!
Nice API!
- ๐ฌ๐งUnited Kingdom catch
I've updated the 'API changes' section here, this can become the basis for the updated CR after commit too.
- last update
about 1 year ago 30,368 pass - last update
about 1 year ago 30,378 pass - last update
about 1 year ago Custom Commands Failed - last update
about 1 year ago Custom Commands Failed - last update
about 1 year ago 30,378 pass - last update
about 1 year ago Custom Commands Failed - last update
about 1 year ago Custom Commands Failed - last update
about 1 year ago 30,378 pass - last update
about 1 year ago Custom Commands Failed - last update
about 1 year ago Custom Commands Failed - last update
about 1 year ago 30,378 pass - ๐ฌ๐งUnited Kingdom alexpott ๐ช๐บ๐
Removing the needs framework manager review tag. I've reviewed the code extensively and @catch and I have discussed all the API surface and these discussions have lead to the introduction of the trait and use of privates and immutable value objects. I think we're at the point where we can put this in and be confident that future changes to the API will be small and we can always increase the surface area if needs be.
- Status changed to Fixed
about 1 year ago 4:27pm 3 October 2023 - Status changed to RTBC
about 1 year ago 9:56pm 3 October 2023 -
alexpott โ
committed a8f52aa2 on 11.x
Issue #3352459 by catch, Bhanu951, Wim Leers, smustgrave, Fabianx, heddn...
-
alexpott โ
committed a8f52aa2 on 11.x
- Status changed to Fixed
about 1 year ago 8:13am 4 October 2023 - Status changed to Needs review
about 1 year ago 11:06am 4 October 2023 - last update
about 1 year ago 30,379 pass - ๐ฌ๐งUnited Kingdom catch
Managed to get a wrong array key in some of the refactoring. This code only runs when tracing is enabled which is not the case yet.
- Status changed to Fixed
about 1 year ago 11:17am 4 October 2023 - ๐ฌ๐งUnited Kingdom alexpott ๐ช๐บ๐
Committed the follow-up - no point waiting on tests as tests aren't tested :)
-
alexpott โ
committed e671a925 on 11.x
Issue #3352459 follow-up by catch: Add OpenTelemetry Application...
-
alexpott โ
committed e671a925 on 11.x
- ๐ซ๐ทFrance andypost
There's failure in SQlite job - probably because for sqlite database the testing directory is kept
Exception Other phpunit-57.xml 0 Drupal\Tests\demo_umami\FunctionalJ PHPUnit Test failed to complete; Error: PHPUnit 9.6.8 by Sebastian Bergmann and contributors. Testing Drupal\Tests\demo_umami\FunctionalJavascript\PerformanceTest E. 2 / 2 (100%) Time: 01:18.957, Memory: 4.00 MB There was 1 error: 1) Drupal\Tests\demo_umami\FunctionalJavascript\PerformanceTest::testPagesAnonymous rmdir(sites/simpletest/69846337): Directory not empty
- ๐ฌ๐งUnited Kingdom catch
That seems like it would be intermittent, the tests themselves don't do anything special.
- last update
about 1 year ago CI aborted - last update
about 1 year ago CI aborted - last update
about 1 year ago CI aborted - last update
about 1 year ago 2 pass, 2 fail - last update
about 1 year ago 2 pass, 2 fail - last update
about 1 year ago 2 pass - ๐ฌ๐งUnited Kingdom alexpott ๐ช๐บ๐
So what I think is happening here is that the compiled javascript is being written to the site while we're trying to remove the test directory :) and this is happening because we've enable js and css aggregation.
- Status changed to Needs work
about 1 year ago 7:10am 6 October 2023 - ๐ณ๐ฑNetherlands spokje
@alexpott That seems to make sense (per usual).
Not sure why this only hits SQLite, but that seems to have a fail rate of ~45%.Should we open a follow-up, or revert this and fix here?
- ๐ฌ๐งUnited Kingdom catch
I've opened ๐ Random test failure in Drupal\Tests\demo_umami\FunctionalJavascript\PerformanceTest RTBC , if it's #93 there might be a quick fix.
- Status changed to Fixed
about 1 year ago 8:21am 6 October 2023 - ๐ฌ๐งUnited Kingdom catch
Have a non-optimal but working patch on ๐ Random test failure in Drupal\Tests\demo_umami\FunctionalJavascript\PerformanceTest RTBC so going to go ahead and move this back to fixed.
- ๐ฌ๐งUnited Kingdom catch
Update just to say there is now a working public dashboard at http://grafana.tag1demo.tag1.io/d/teMVIdjVz/umami?orgId=1&refresh=30s&fr... it is currently populated by pushing buttons on the MR from ๐ Add a performance tests job to gitlab and send data to OpenTelemetry Needs review which could use review.
- ๐ฏ๐ตJapan tyler36 Osaka
Unable to get the tests running with the demo repo
- Submit MR to fix composer setup
Now I'm getting errors:
$ OTEL_COLLECTOR=http://otel-collector:4318/v1/traces vendor/bin/phpunit --group OpenTelemetry -c web/core/phpunit.xml --filter OpenTelemetryFrontPagePerformance ... 1) Drupal\Tests\demo_umami\FunctionalJavascript\OpenTelemetryFrontPagePerformanceTest::testFrontPageColdCache Error: Call to undefined method OpenTelemetry\SDK\Resource\ResourceInfoFactory::merge() ... 2) Drupal\Tests\demo_umami\FunctionalJavascript\OpenTelemetryFrontPagePerformanceTest::testFrontPageHotCache Error: Call to undefined method OpenTelemetry\SDK\Resource\ResourceInfoFactory::merge() ...
Does the demo repo include the latest patch/MR? Are there other steps required?
- ๐ฌ๐งUnited Kingdom catch
@tyler36 open telemetry has a new release out so you may be running into an issue with that.
- ๐ณ๐ฑNetherlands spokje
There's at least one problem with the new release we know of: ๐ Bump "open-telemetry/*" to latest to make daily "updated deps" QA run pass again RTBC
- ๐ฏ๐ตJapan tyler36 Osaka
The testing repo provided in the "steps to reproduce" didn't include a
composer.lock
file. So following the provided instruction resulted in the latest version. - ๐ฌ๐งUnited Kingdom catch
I've committed ๐ Bump "open-telemetry/*" to latest to make daily "updated deps" QA run pass again RTBC so a composer update on the sandbox repo might fix the issue for you now.
Note that the repo also currently doesn't account for fixes in ๐ Add a performance tests job to gitlab and send data to OpenTelemetry Needs review but those shouldn't (hopefully) block getting something up and running.
Automatically closed - issue fixed for 2 weeks with no activity.
- Status changed to Fixed
12 months ago 4:16pm 5 December 2023 - ๐ญ๐บHungary Gรกbor Hojtsy Hungary
I think we agreed at 10.1 that we don't include this in the annoucement until there is something practical, and now there is I think so adding 10.2 highlights tag.