Skip to main content
Version: v1

Capture Data

To begin capturing data start by installing the Fullstory Snippet.

Stop Data Capture

Stop capturing a session

FS.shutdown() can be invoked immediately after the Fullstory snippet is executed. It's idempotent, meaning that it just quietly does nothing if you call it multiple times after the first invocation. Call FS.restart() to begin capturing again.

Once FS.shutdown() is invoked, Fullstory will no longer receive data from the user's device. When running Fullstory in a web browser, data capture begins automatically once the page is loaded from the server; FS.shutdown() must be called each time after a page is loaded.

Additional Information

FS.shutdown()

Example Invocation

FS.shutdown();

Restart Data Capture

Restart session data capture after it has been shutdown

FS.restart() is used to begin data capture again after FS.shutdown() has been called. It's idempotent, meaning that it just quietly does nothing if you call it multiple times after the first invocation.

FS.restart()

Example Invocation

FS.restart();