> For the complete documentation index, see [llms.txt](https://sealights-docs.tricentis.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://sealights-docs.tricentis.com/sealights-agents-and-plugins/abap-agent/command-line-interface/collect-footprints-data-for-your-pipeline.md).

# Collect Footprints data for your Pipeline

### Collect Footprints data for your Pipeline <a href="#toc201668103" id="toc201668103"></a>

If you have connected Tosca to SeaLights, you can configure the Agent to collect details for test executions in Tosca. When you run a test, the Agent matches the ABAP components that you executed against objects in the latest Build Modification. It then sends this data to SeaLights as a Footprint.

To configure the Agent to collect Footprints data for your Pipeline, run the following command from your terminal:

### Filtering Footprints Data

You can exclude specific SCMON context objects from footprints collection using the `typequeries` field in the `[footprints]` section of `config.toml`. This is useful for filtering out standard SAP programs, transactions, or function modules that are not relevant to your testing.

See [Configuration settings — Footprints type queries](/sealights-agents-and-plugins/abap-agent/configuration-settings.md#footprints-type-queries) for syntax and examples.

{% hint style="success" %}
When you stop or replace a footprints task, the agent automatically terminates any running watcher process for that task.
{% endhint %}

### Stop collecting Footprints data for a Pipeline <a href="#toc201668104" id="toc201668104"></a>

To stop collecting Footprints data for a Pipeline, run the following from your terminal:

{% tabs %}
{% tab title="Command Prompt" %}
{% code title="Command" overflow="wrap" %}

```batch
slabapcli.exe footprints stop --pipeline "HH_SLABAPCLI_170625"
```

{% endcode %}
{% endtab %}

{% tab title="PowerShell" %}
{% code title="Command" overflow="wrap" %}

```powershell
.\slabapcli.exe footprints stop --pipeline 'HH_SLABAPCLI_170625'
```

{% endcode %}
{% endtab %}
{% endtabs %}

{% code title="Expected output (PowerShell)" overflow="wrap" lineNumbers="true" %}

```log
.\slabapcli.exe footprints stop --pipeline 'HH_SLABAPCLI_170625'
[2025-06-20 10:06:45.590+01:00] [info] Current ANSI Code Page: 65001 (UTF-8) (65001)
[2025-06-20 10:06:45.590+01:00] [info] Config pathname: ../config/config.toml
[2025-06-20 10:06:45.594+01:00] [info] resource = footprints. command = run
[2025-06-20 10:06:45.606+01:00] [info] Stopped footprints run
[2025-06-20 10:06:45.606+01:00] [info] Total time: 00:00:00.017
```

{% endcode %}
