> For the complete documentation index, see [llms.txt](https://doc.commandersact.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://doc.commandersact.com/features/sources/live-event-inspector.md).

# Source Live Event Inspector

Live event inspector is a great way to visualize in real-time all your incoming events, coming from a specific source (tab Event Inspector when you click on a source) or coming from all sources (Live Events Inspector link in Sources menu).

It is the easiest way to help you to debug what is received, you can check all properties and filter on specific events or properties.

![](/files/XQEstZX1SAxlqUZNIoYb)

### Intelligent sampling

During your test phase, you'll see 100% of your ingoing events in the event inspector, thanks to the *intelligent sampling* mechanism.

When you'll start to send more real data with millions of events, you'll see only a portion of ingoing events, based on these rules :

* 6 requests per minute for each event type
* a bonus of 30 requests per hour for each event type

{% hint style="info" %}
You can visualize data up to 7 days
{% endhint %}

{% hint style="info" %}
IP addresses are automatically obfuscated (the last octet is replaced by 0)
{% endhint %}

To go further, you can also inspect the data sent to each destination in real time, by going to the Event Inspector tab of your destinations:

{% content-ref url="/pages/tT0wO99rJrdwQ2QZxsqe" %}
[Destination event inspector](/features/destinations/live-event-inspector.md)
{% endcontent-ref %}

### **Debug Mode**

A Debug Mode is available ! Simply add the property `test_code` with any value (string format) in your events.

This property will bypass the intelligent sampling mechanism. It's a simple way to be sure your test hits will be available in the Live Event Inspector.\
You will be allowed to send 20 events/minute for each Source.

Here's an example of an event with this property

```
cact('trigger','page_view', {
  page_type: 'product_list',
  page_name: 'Best sellers',
  test_code: 'my_value',
  user: {
    id: '12356',
    email:'toto@domain.fr',
    consent_categories: [1,3]
  }
});
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://doc.commandersact.com/features/sources/live-event-inspector.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
