> ## Documentation Index
> Fetch the complete documentation index at: https://docs.keephq.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# Parseable

> Parseable provider allows integration with Parseable, a tool for collecting and querying logs.

## Authentication

This provider requires authentication.

* **parseable\_server**: Parseable Frontend URL (required: True, sensitive: False)
* **username**: Parseable username (required: True, sensitive: False)
* **password**: Parseable password (required: True, sensitive: True)

## In workflows

This provider can't be used as a "step" or "action" in workflows. If you want to use it, please let us know by creating an issue in the [GitHub repository](https://github.com/keephq/keep/issues).

## Connecting via Webhook (omnidirectional)

This is an example of how to configure an alert to be sent to Keep using Parseable's webhook feature. Post this to https\://YOUR\_PARSEABLE\_SERVER/api/v1/logstream/YOUR\_STREAM\_NAME/alert

```
{{
    "version": "v1",
    "alerts": [
        {{
            "name": "Alert: Server side error",
            "message": "server reporting status as 500",
            "rule": {{
                "type": "column",
                "config": {{
                    "column": "status",
                    "operator": "=",
                    "value": 500,
                    "repeats": 2
                }}
            }},
            "targets": [
                {{
                    "type": "webhook",
                    "endpoint": "KEEP_BACKEND_URL/alerts/event/parseable",
                    "skip_tls_check": true,
                    "repeat": {{
                        "interval": "10s",
                        "times": 5
                    }},
                    "headers": {{"X-API-KEY": "{api_key}"}}
                }}
            ]
        }}
    ]
}}
```

## Connecting with the Provider

1. Obtain an API key from your Parseable instance.
2. Configure your provider using the `api_key` and `parseable_url`.

## Usefull Links

-[Parseable API Documentation](https://www.parseable.com/docs/api)
