ToolJet/plugins/packages/influxdb/lib/manifest.json
Kiran Ashok 954976005e
InfluxDB integration (#2590)
* initial creation

* test operation

* test operation

* option included to test connection and manifest file updated

* updating all operations

* updated all bucket operations

* write operation logic

* type update

* completed query end points

* updating all keys

* updating all labels

* bucket operations completed

* seperating  required params

* reordering operations

* cleanup

* docs updated influxdb

* fixing flux query operation

* updates in docs

* pr changes

* pr change

* pr changes reverting oracle db

* upating icon

* changing default port

* pr changes and fixing write operation

* reverting lock file change by replacing with develop

* deafult port update

* updating docs position

* reverting lock file in docs
2022-03-23 14:59:45 +05:30

82 lines
1.7 KiB
JSON

{
"$schema": "https://raw.githubusercontent.com/ToolJet/ToolJet/develop/plugins/schemas/manifest.schema.json",
"title": "InfluxDB datasource",
"description": "A schema defining InfluxDB datasource",
"type": "database",
"source": {
"name": "InfluxDB",
"kind": "influxdb",
"exposedVariables": {
"isLoading": false,
"data": {},
"rawData": {},
"customTesting": false
},
"options": {
"api_token": {
"encrypted": true
}
}
},
"defaults": {
"api_token": {
"value": ""
},
"port": {
"value": "8086"
},
"host": {
"value": ""
},
"protocol": {
"type": "HTTP"
}
},
"properties": {
"api_key": {
"label": "API token",
"key": "api_token",
"type": "password",
"description": "Api token for InfluxDB",
"helpText": "For generating API token, visit: <a href='https://docs.influxdata.com/influxdb/cloud/security/tokens/create-token/' target='_blank' rel='noreferrer'>InfluxDB docs</a>"
},
"host": {
"label": "Host",
"key": "host",
"type": "text",
"description": ""
},
"port": {
"label": "Port",
"key": "port",
"type": "text",
"description": "8086 ",
"helpText": ""
},
"protocol": {
"label": "Protocol",
"key": "protocol",
"type": "dropdown",
"list": [
{
"name": "HTTP",
"value": "http"
},
{
"name": "HTTPS",
"value": "https"
}
],
"description": "Enter protocol"
}
},
"required": [
"api_token",
"username",
"password",
"database",
"port",
"host",
"protocol"
]
}