---
title: bigpanda package
description: The bigpanda package provides functions for sending alerts to BigPanda.
url: https://docs.influxdata.com/flux/v0/stdlib/contrib/rhajek/bigpanda/
estimated_tokens: 284
product: Flux
version: v0
publisher: InfluxData
canonical: https://docs.influxdata.com/flux/v0/stdlib/contrib/rhajek/bigpanda/
date: '2023-09-12T23:33:31-06:00'
lastmod: '2023-09-12T23:33:31-06:00'
---

* Flux 0.108.0+

InfluxDB support

> [!Important]
> The `bigpanda` package is a user-contributed package
> maintained by the [package author](#package-author-and-maintainer).

The `bigpanda` package provides functions for sending alerts to [BigPanda](https://www.bigpanda.io/).
Import the `contrib/rhajek/bigpanda` package:

```js
import "contrib/rhajek/bigpanda"
```

## Options

```js
option bigpanda.defaultTokenPrefix = "Bearer"

option bigpanda.defaultUrl = "https://api.bigpanda.io/data/v2/alerts"
```

### defaultTokenPrefix

`defaultTokenPrefix` is the default HTTP authentication scheme to use when authenticating with BigPanda.
Default is `Bearer`.

### defaultUrl

`defaultUrl` is the default [BigPanda alerts API URL](https://docs.bigpanda.io/reference#alerts-how-it-works)for functions in the `bigpanda` package.
Default is `https://api.bigpanda.io/data/v2/alerts`.

## Functions

* [bigpanda.endpoint()](/flux/v0/stdlib/contrib/rhajek/bigpanda/endpoint/)
* [bigpanda.sendAlert()](/flux/v0/stdlib/contrib/rhajek/bigpanda/sendalert/)
* [bigpanda.statusFromLevel()](/flux/v0/stdlib/contrib/rhajek/bigpanda/statusfromlevel/)
