Hey @ChandTurakhia_twitter
regarding the DVD Store: I'm not sure but I think there isn't any repository for this anymore. But it has been replaced by the PetClinic. You can find it here: https://github.com/inspectit-labs/spring-petclinic-microservices
In the repository's readme you also find a detailed description how you can start it with inspectIT.
But keep in mind that the original inspectIT is no longer developed further!
POST /api/v1/users
with the following JSON as body:{
"username": "<username>",
"password": "<password>"
}
Hi Alexander,
First of all sorry for the late answer.
There is no text-ouput for metrics available currently. The first step in debugging would be to make sure that the ZipKin exporter was started. Your logs should contain a line liek this:
2019-11-22 11:29:55,181 INFO 33304 --- [inspectIT] [ Thread-0] r.i.o.c.exporter.ZipkinExporterService : Starting Zipkin Exporter with url 'http://zipkin:9411/api/v2/spans'
If this is presnt, then the issue is most likely the instrumentation configuration.
In the latest release from this week we have added feature to detect typos (e.g. "instrumnetation" instead of "instrumentation"). If a typo is found, the agent will print out a warning that the given configuration property does not exist.
To check if your target class is instrumented, i would suggest enabling the debug log:
-Dinspectit.logging.debug=true
When this is enabled the agent will print out all classes/methods he instruments with the names of the rules which caused the instrumentation.
let me know if you need some more help.