Skip to content

csu/convey

master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
 
 
 
 
 
 
 
 

convey

Convey is a serverless gateway to an Elasticsearch instance.

API

POST /index

Indexes a document in Elasticsearch.

Example

Request Body (JSON)
{
    "secret": "your-secret-here",
    "index": "some-index",
    "type": "some-type",
    "field1": "a field",
    "field2": "another field",
    "field3": "yet another field"
}
Result

Indexes the following document in Elasticsearch:

{
    "index": "some-index",
    "type": "some-type",
    "body": {
        "field1": "a field",
        "field2": "another field",
        "field3": "yet another field"
    }
}

About

A serverless gateway to an Elasticsearch instance.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published