> For the complete documentation index, see [llms.txt](https://legacydmc.gitbook.io/chaser/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://legacydmc.gitbook.io/chaser/get-exports/chaser_gettelemetry.md).

# chaser\_gettelemetry

Returns a table with the current vehicle telemetry data

```lua
    local telemetry ={
        power -- the current power in HP
        torque -- the current torque in NM
        boost = -- the current boost, in %
        boostpowerincrease = -- how much torque you're gaining, in %
        airresistance = -- current air resisance, in g's
        tcsisactive = -- if the tc is actuating in this moment
        escisactive = -- if the esc is actuating in this moment
        lcisactive = -- the state that the launch control is currently
        atlockactive = -- if the vehicle is locked into a gear, on at transmission.
        remainingnitrous = -- how much nitrous you got left, in %
    }
```
