Joseph Fourny

Results 15 comments of Joseph Fourny

FYI: You will need to merge with this PR: https://github.com/Shopify/krane/pull/900 Version 2.4.9 will be cut from that, shortly.

Quotes are legal and necessary if Psych wishes to be backwards compatible with much older YAML parsers. In newer YAML specs (since 1.1), quotes would be optional in a lot...

I hit the same issue with PetClinic app against stagemonitor-docker-compose (both built today). In "Request Metrics" dashboard, the "Response Time" and "Throughput" panels are fine, but all the rest hit...

I believe the problem is that the dashboards were authored in an older version of Grafana (probably 2.x). I imported them into Grafana 4 and manually fixed the issues (there...

I am faced with a similar issue, but I am pretty sure it's related to class-loader visibility and timing. In my case, SLF4J and LOG4J are brought into an Websphere...

I was thinking of re-packaging stagemonitor (along with byte-buddy) into an uber Java agent that could instrument as early as possible, but this is not an easy feat. One of...

Yes, good point. I will abandon the agent idea. :D As it turns out, the logger instrumentation is not working for me in a standalone application, either. That rules out...

I just tried my standalone (non web) app with Oracle JDK and still no luck. I think that rules out IBM-specific issue (ie: retransformation).

OK, I figured out my specific issue. The instrumentation strategy does not support calling Log4J via SLF4J, because SLF4J takes a backdoor. Here is an example stack: ` org.slf4j.impl.Log4jLoggerAdapter.info(java.lang.String, java.lang.Object)...