From b097f3c13ddfa51551bce9ca9344c796e5cea9cb Mon Sep 17 00:00:00 2001 From: clarkzjw Date: Thu, 23 Feb 2023 23:42:50 -0800 Subject: deploy: add krakend api gateway --- contrib/krakend.json | 90 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 90 insertions(+) create mode 100644 contrib/krakend.json (limited to 'contrib/krakend.json') diff --git a/contrib/krakend.json b/contrib/krakend.json new file mode 100644 index 0000000..1f89340 --- /dev/null +++ b/contrib/krakend.json @@ -0,0 +1,90 @@ +{ + "$schema": "https://www.krakend.io/schema/v3.json", + "version": 3, + "name": "Checkin.bot API", + "extra_config": { + "telemetry/opencensus": { + "sample_rate": 100, + "reporting_period": 0, + "exporters": { + "prometheus": { + "port": 9091, + "namespace": "krakend", + "tag_host": false, + "tag_path": true, + "tag_method": true, + "tag_statuscode": false + } + } + }, + "telemetry/metrics": { + "collection_time": "60s", + "proxy_disabled": false, + "router_disabled": false, + "backend_disabled": false, + "endpoint_disabled": false, + "listen_address": ":8090" + } + }, + "timeout": "3000ms", + "cache_ttl": "300s", + "output_encoding": "json", + "debug_endpoint": true, + "endpoints": [ + { + "endpoint": "/checkinbot/webhook", + "method": "POST", + "output_encoding": "json", + "backend": [ + { + "url_pattern": "/checkinbot/webhook", + "encoding": "json", + "sd": "static", + "method": "POST", + "host": [ + "http://checkinbot:8080" + ], + "disable_host_sanitize": false + } + ] + }, + { + "endpoint": "/checkinbot/healthcheck", + "method": "GET", + "output_encoding": "string", + "backend": [ + { + "url_pattern": "/checkinbot/healthcheck", + "encoding": "string", + "sd": "static", + "method": "GET", + "host": [ + "http://checkinbot:8080" + ], + "disable_host_sanitize": false + } + ] + }, + { + "endpoint": "/checkinbot/fedi_login_callback", + "method": "GET", + "output_encoding": "string", + "backend": [ + { + "url_pattern": "/checkinbot/fedi_login_callback", + "encoding": "string", + "sd": "static", + "method": "GET", + "disable_host_sanitize": false, + "host": [ + "http://checkinbot:8080" + ] + } + ], + "input_query_strings": [ + "code", + "state" + ] + } + ] +} \ No newline at end of file -- cgit v1.2.3 From 391abe42adf3bf065d9543ada068b696b00efdcd Mon Sep 17 00:00:00 2001 From: clarkzjw Date: Fri, 24 Feb 2023 00:49:12 -0800 Subject: deploy: add krakend monitoring using influxdb and grafana --- contrib/krakend.json | 20 +++++++------------- 1 file changed, 7 insertions(+), 13 deletions(-) (limited to 'contrib/krakend.json') diff --git a/contrib/krakend.json b/contrib/krakend.json index 1f89340..2ed23d8 100644 --- a/contrib/krakend.json +++ b/contrib/krakend.json @@ -3,19 +3,13 @@ "version": 3, "name": "Checkin.bot API", "extra_config": { - "telemetry/opencensus": { - "sample_rate": 100, - "reporting_period": 0, - "exporters": { - "prometheus": { - "port": 9091, - "namespace": "krakend", - "tag_host": false, - "tag_path": true, - "tag_method": true, - "tag_statuscode": false - } - } + "telemetry/influx": { + "address": "http://influx:8086", + "ttl": "25s", + "buffer_size": 100, + "db": "krakend", + "username": "krakend", + "password": "password" }, "telemetry/metrics": { "collection_time": "60s", -- cgit v1.2.3