mirror of
https://github.com/umami-software/umami.git
synced 2026-02-19 03:55:37 +01:00
fix missing columns in getPageview CH. fix Kafka SSL Pathing
This commit is contained in:
parent
ad1eea98b1
commit
9c642a6e9e
3 changed files with 7 additions and 5 deletions
3
.gitignore
vendored
3
.gitignore
vendored
|
|
@ -38,3 +38,6 @@ yarn-error.log*
|
|||
|
||||
*.dev.yml
|
||||
|
||||
# cert
|
||||
/lib/cert
|
||||
|
||||
|
|
|
|||
|
|
@ -15,9 +15,9 @@ function getClient() {
|
|||
? {
|
||||
ssl: {
|
||||
checkServerIdentity: () => undefined,
|
||||
ca: [fs.readFileSync('./cert/ca_cert.pem', 'utf-8')],
|
||||
key: fs.readFileSync('./cert/client_key.pem', 'utf-8'),
|
||||
cert: fs.readFileSync('./cert/client_cert.pem', 'utf-8'),
|
||||
ca: [fs.readFileSync('./lib/cert/ca_cert.pem', 'utf-8')],
|
||||
key: fs.readFileSync('./lib/cert/client_key.pem', 'utf-8'),
|
||||
cert: fs.readFileSync('./lib/cert/client_cert.pem', 'utf-8'),
|
||||
},
|
||||
sasl: {
|
||||
mechanism: 'plain',
|
||||
|
|
|
|||
|
|
@ -27,9 +27,8 @@ async function relationalQuery(websites, start_at) {
|
|||
async function clickhouseQuery(websites, start_at) {
|
||||
return clickhouse.rawQuery(
|
||||
`select
|
||||
view_id,
|
||||
website_id,
|
||||
session_id,
|
||||
session_uuid,
|
||||
created_at,
|
||||
url
|
||||
from event
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue