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

# nonsensitive

`nonsensitive` converts a [secret](../../../concepts/config-language/expressions/types_and_values/#secrets) value back into a string.

> **WARNING**: Only use `nonsensitive` when you are positive that the value being converted back to a string is not a sensitive value.
> 
> Strings resulting from calls to `nonsensitive` will be displayed in plaintext in the UI and internal API calls.

## Examples

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

```none
// Assuming `sensitive_value` is a secret:

> sensitive_value
(secret)
> nonsensitive(sensitive_value)
"Hello, world!"
```
