> For the complete documentation index, see [llms.txt](https://docs.fusion.vectra.ai/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.fusion.vectra.ai/cloud-onboarding/azure-cloud-onboarding/quickstart-azure/create-a-flow-log.md).

# Create a flow log

Access [Azure Cloud Shell](https://portal.azure.com/#cloudshell/) to run CLI commands from your web browser using az.

1. Create a **Flow Log** to be read by Vectra Fusion.

```
az network watcher flow-log create \
    --location $REGION> \
    --name <name> \
    --vnet $VNET \
    --resource-group $RGRP \
    --storage-account <storage-account-name> \
    --enabled true \
    --retention 1 \
    --traffic-analytics false \
```

![](/files/i3KxIjZlvjisJe9PHgSe)

|                   |                                                                   |
| ----------------- | ----------------------------------------------------------------- |
| Name              | Choose any name for your flow log                                 |
| Resource group    | Your Virtual Network Resource Group                               |
| VNet              | Virtual Network Name                                              |
| Location          | Your Virtual Network Region                                       |
| Storage Account   | Storage account name you created in the previous step             |
| Enabled           | True                                                              |
| Retention         | Days of storage retention. Only 1 day is needed by Vectra Fusion. |
| Traffic Analytics | False. **Vectra Fusion does not use Traffic Analytics.**          |

2. View your newly created **Flow Log**

You can scroll through your output using the left and right arrow keys, similar to using the horizontal scroll bar on a web browser.

```
az network watcher flow-log list --location $REGION --output table | less -S
```


---

# 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, and the optional `goal` query parameter:

```
GET https://docs.fusion.vectra.ai/cloud-onboarding/azure-cloud-onboarding/quickstart-azure/create-a-flow-log.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
