You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For future use cases in distributed systems, JTeC should support collecting distributed coverage using OpenTelemetry.
The extension point is in jtec-core in the class edu.tum.sse.jtec.instrumentation.coverage.CoverageInstrumentation:
privateAgentBuilder.TransformergetCoverageTransformer() {
// TODO: We can extend JTeC here in the future, e.g., to support distributed coverage,// by simply creating a transformer with different parameters here.returnCoverageTransformer.create(coverageLevel);
}
privateCoverageProbeFactorycreateCoverageProbeFactory() {
// TODO: We can extend JTeC here in the future, e.g., to support distributed coverage,// by simply adding new coverage probe factories.returnnewProcessCoverageProbeFactory();
}
The text was updated successfully, but these errors were encountered:
For future use cases in distributed systems, JTeC should support collecting distributed coverage using OpenTelemetry.
The extension point is in
jtec-core
in the classedu.tum.sse.jtec.instrumentation.coverage.CoverageInstrumentation
:The text was updated successfully, but these errors were encountered: