Why the count of API's in HTML report is mismatched in gatling?

I am using the group in a script.

val notesPage = group(“Account Management | Notes”) {
exec(http(“end point”)
.get(conf.getString(“notes_end_point”) + “/all”)
.headers(header)
.check(status.is(200))
.resources(http("/notes/all")
.get(conf.getString(“notes_end_point”) + “/all”)
.headers(header)
.check(status.is(200))))
}
}

but in the HTML report, the counts are not showing properly.

Gatling OSS HTML reports display the count of groups executions, not the count of requests in the groups. This metric is only available in FrontLine.