Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Loki data connector #376

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions registry/hasura/loki/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
## Overview

The Hasura Loki Connector allows for connecting Hasura to a Loki API server, giving you an instant GraphQL API on top of your Loki data.

Data Connectors are the way to connect the Hasura Data Delivery Network (DDN) to external data sources. A data connector is an HTTP service that exposes a set of APIs that Hasura uses to communicate with the data source. Data connectors are built to conform to the [NDC Specification](https://hasura.github.io/ndc-spec/overview.html) using one of Hasura's available SDKs. The data connector is responsible for interpreting work to be done on behalf of the Hasura Engine, using the native query language of the data source.

The data connector is open source and can be found in the [ndc-loki GitHub repository](https://github.com/hasura/ndc-loki).

## Deployment

The connector is hosted by Hasura and can be used from the [Hasura v3 Console](https://console.hasura.io).

## Usage

The Hasura Loki connector can be deployed using the [Hasura CLI](https://hasura.io/docs/3.0/cli/overview) by following either the [Quick Start Guide](https://hasura.io/docs/3.0/getting-started/overview/) or [deploying the connector](https://hasura.io/docs/3.0/connectors/deployment).

## Troubleshooting

Please [submit a Github issue](https://github.com/hasura/ndc-loki/issues/new)
if you encounter any problems!
Binary file added registry/hasura/loki/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
28 changes: 28 additions & 0 deletions registry/hasura/loki/metadata.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
{
"overview": {
"namespace": "hasura",
"description": "Connect Hasura DDN to a Loki API server",
"title": "Loki Data Connector",
"logo": "logo.png",
"tags": ["database"],
"latest_version": "v0.0.2"
},
"author": {
"support_email": "[email protected]",
"homepage": "https://hasura.io",
"name": "Hasura"
},
"is_verified": true,
"is_hosted_by_hasura": true,
"source_code": {
"is_open_source": true,
"repository": "https://github.com/hasura/ndc-loki",
"version": [
{
"tag": "v0.0.2",
"hash": "0ae70b33ecee13724f9d254dd230c3b46f9a669a",
"is_verified": true
}
]
}
}
11 changes: 11 additions & 0 deletions registry/hasura/loki/releases/v0.0.2/connector-packaging.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"version": "v0.0.2",
"uri": "https://github.com/hasura/ndc-loki/releases/download/v0.0.2/connector-definition.tgz",
"checksum": {
"type": "sha256",
"value": "1368655da0f8de4fcdf54622d0b929616b5a151d0aa6d607d3ad34bf16034efb"
},
"source": {
"hash": "0ae70b33ecee13724f9d254dd230c3b46f9a669a"
}
}
Loading