diff --git a/README.md b/README.md index d6872777ecbb9fea28ad888801fda6f30a077acb..9669d6008c6c5dc149425e4d301e4640bcbaa030 100644 --- a/README.md +++ b/README.md @@ -20,6 +20,7 @@ as configured in the `dashboards/` directory: * Loki, at `http://loki:3100`, serving logs, * Alerta, at `http://alerta-server:8080`, serving the Alerta HTTP API, * Grafana, serving its own HTTP API. +* Station Control Rest Api, serving the Control Rest Api. Currently Used for Controlling Antenna Statuses. ## Development diff --git a/datasources/restcontrolserver.yaml b/datasources/restcontrolserver.yaml new file mode 100644 index 0000000000000000000000000000000000000000..0dfedd36bbd688ecb0abe84dd466ccdd30f2af75 --- /dev/null +++ b/datasources/restcontrolserver.yaml @@ -0,0 +1,42 @@ +apiVersion: 1 + +datasources: + # <string, required> name of the datasource. Required + - name: Station Control Rest Api + # <string, required> datasource type. Required + type: yesoreyeram-infinity-datasource + # <string, required> access mode. proxy or direct (Server or Browser in the UI). Required + access: proxy + # <int> org id. will default to orgId 1 if not specified + orgId: 1 + # <string> custom UID which can be used to reference this datasource in other parts of the configuration, if not specified will be generated automatically + uid: controlrestapi + # <string> url + # What we use here : http:// the consul name for the restapi / version of api / the consul address of the rpc service + # So that calls like "/v1/<station_name>/antenna/<antennafield_name>/<antenna_name>/use/<int:use> have the station name already filled on + # (The station name is used in the code to call to the Station grpc service) + url: http://controlrestapi.service.consul:50053/v1/ + # <string> Deprecated, use secureJsonData.password + password: + # <string> database user, if used + user: + # <string> database name, if used + database: + # <bool> enable/disable basic auth + basicAuth: false + # <string> basic auth username + basicAuthUser: + # <string> Deprecated, use secureJsonData.basicAuthPassword + basicAuthPassword: + # <bool> enable/disable with credentials headers + withCredentials: + # <bool> mark as default datasource. Max one per org + isDefault: false + # <map> fields that will be converted to json and stored in jsonData + jsonData: + # <string> json object of data that will be encrypted. + secureJsonData: + version: 1 + # <bool> allow users to edit datasources from the UI. + editable: false +