pushbullet.pushNote() function

    *Function type: Output*

    Pushbullet API URL. Defaults to https://api.pushbullet.com/v2/pushes.

    Pushbullet API token to use when interacting with Pushbullet. Defaults to "".

    *Data type: String*

    *Data type: String*

    Required
    Text to display in the notification.

    Examples

    Send the last reported status to Pushbullet
    1. import "influxdata/influxdb/secrets"
    2. lastReported =
    3. from(bucket: "example-bucket")
    4. |> range(start: -1m)
    5. |> last()
    6. |> getRecord(idx: 0)
    7. pushbullet.pushNote(
    8. token: token,
    9. title: "Last reported status",