Gatling: requests are not displayed in html reports.

Hi all,

Please consider the scenario…

I am creating script of online 3D file viewer(advance). This mode of viewer uses the jar files of java while viewing. There are various calls which are not shown in html reports.

.exec(http("request_42")
    .get(uri8 + "/url/url/trident.jar")
    .headers(headers_42)
    .check(status.is(304)))
.exec(http("request_43")
    .get(uri8 + "/url/url/substance.jar")
    .headers(headers_42)
    .check(status.is(304)))
.pause(253 milliseconds)
.exec(http("request_44")
    .get(uri8 + "/url/url/flamingo.jar")
    .headers(headers_42)
    .check(status.is(304)))
.pause(226 milliseconds) and so on...

Can anyone guide me, why is this happening??? Or is there any need to import gatling libraries to get this displayed in html reports??

Your help would be much appreciated.

thanks,

Praveen Mourya