# No Tracking Activated

In some cases, the simple answer to missing data streams is that there was no submit call to send a pageview or any other event.

Make sure to actually [start tracking by communicating via the \_jts.push API](https://github.com/JENTISDev/publicDocs/blob/master/troubleshooting-and-common-errors/broken-reference/README.md) (leveraging JENTIS's tool-agnostic approach) or connecting to any other action stream on your website (using custom JENTIS States, i.e., listening for [datalayer events](https://docs.jentis.com/use-cases-and-tutorials/events-and-custom-states/listen-to-datalayer-events)).

The most basic call is:

```js
_jts.push({track:"pageview"});
_jts.push({track:"submit"});
```
