Skip to content

Commit 80b0392

Browse files
authored
fix: Logs and Graph fixes (#23)
* fix: fixed logs full range volume * fix: fixed logs and volume caching * fix: fixed logs volume and dashboard chart * fix: refactored cache and partition code * fix: removed console log * fix: build errors * fix: changed zincobserve to openobserve * fix: changed zincobserve to openobserve * fix: updated packages and fixed type errors * fix: added checks for dashboard to get graph type dataframe * fix: updated node version * fix: changed zinclabs to openobserve
1 parent 6e04d6c commit 80b0392

16 files changed

+12111
-11161
lines changed

.github/workflows/is-compatible.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
- name: Setup Node.js environment
1010
uses: actions/setup-node@v3
1111
with:
12-
node-version: '16'
12+
node-version: '22.13.0'
1313
cache: 'npm'
1414
- name: Install dependencies
1515
run: npm ci

.vscode/settings.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"cSpell.words": [
3-
"zincobserve"
3+
"openobserve"
44
]
55
}

deployment/grafana.ini

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
[date_formats]
22
default_timezone = UTC
33
[server]
4-
root_url = https://g2.gke.zinclabs.dev
4+
root_url = https://g2.gke.openobserve.dev
55
[auth.google]
66
enabled = true
77
client_id = 66265839154-evvpnbl5246gau96gflonsdg15od5hs8.apps.googleusercontent.com
88
client_secret = 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
99
scopes = https://www.googleapis.com/auth/userinfo.profile https://www.googleapis.com/auth/userinfo.email
1010
auth_url = https://accounts.google.com/o/oauth2/auth
1111
token_url = https://accounts.google.com/o/oauth2/token
12-
allowed_domains = zinclabs.io
12+
allowed_domains = openobserve.io
1313
allow_sign_up = true
1414

1515
[plugins]
1616
enable_alpha = true
1717
app_tls_skip_verify_insecure = false
1818
# Enter a comma-separated list of plugin identifiers to identify plugins to load even if they are unsigned. Plugins with modified signatures are never loaded.
19-
allow_loading_unsigned_plugins = zinclabs_openobserve
19+
allow_loading_unsigned_plugins = openobserve

deployment/grafana_statefulset.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ metadata:
44
name: letsencrypt-prod
55
spec:
66
acme:
7-
email: admin@zinclabs.io
7+
email: admin@openobserve.io
88
privateKeySecretRef:
99
name: letsencrypt-prod
1010
server: https://acme-v02.api.letsencrypt.org/directory
@@ -33,7 +33,7 @@ spec:
3333
runAsUser: 10000
3434
runAsGroup: 3000
3535
initContainers:
36-
- name: zincobserve-plugin-loader
36+
- name: openobserve-plugin-loader
3737
image: wbitt/network-multitool
3838
imagePullPolicy: IfNotPresent
3939
command:
@@ -105,10 +105,10 @@ metadata:
105105
annotations:
106106
cert-manager.io/issuer: letsencrypt-prod
107107
kubernetes.io/ingress.class: nginx
108-
name: g2.gke.zinclabs.dev
108+
name: g2.gke.openobserve.dev
109109
spec:
110110
rules:
111-
- host: g2.gke.zinclabs.dev
111+
- host: g2.gke.openobserve.dev
112112
http:
113113
paths:
114114
- pathType: Prefix
@@ -120,5 +120,5 @@ spec:
120120
path: /
121121
tls:
122122
- hosts:
123-
- g2.gke.zinclabs.dev
124-
secretName: g2.gke.zinclabs.dev
123+
- g2.gke.openobserve.dev
124+
secretName: g2.gke.openobserve.dev

docker-compose.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@ version: '3.0'
22

33
services:
44
grafana:
5-
container_name: 'zinclabs-zincobserve'
5+
container_name: 'openobserve'
66
build:
77
context: ./.config
88
args:
99
grafana_version: ${GRAFANA_VERSION:-9.3.8}
1010
ports:
1111
- 3000:3000/tcp
1212
volumes:
13-
- ./dist:/var/lib/grafana/plugins/zinclabs-zincobserve
13+
- ./dist:/var/lib/grafana/plugins/openobserve
1414
- ./provisioning:/etc/grafana/provisioning

0 commit comments

Comments
 (0)