---
title: "env | Grafana Agent documentation"
description: "Learn about env"
---

# env

The `env` function gets the value of an environment variable from the system Grafana Agent Flow is running on. If the environment variable does not exist, `env` returns an empty string.

## Examples

![Copy code to clipboard](/media/images/icons/icon-copy-small-2.svg) Copy

```none
> env("HOME")
"/home/grafana-agent"

> env("DOES_NOT_EXIST")
""
```
