---
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: 600
product: Flux
version: v0
---

# bigpanda package

-   Flux 0.108.0+
-   View InfluxDB support

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/)
