Skip to content

Commit 5b8bf02

Browse files
authored
Merge pull request #97 from xyctruth/expiration-time
fix: expired data still exists in disk
2 parents 501e919 + 70972f4 commit 5b8bf02

File tree

7 files changed

+7
-47
lines changed

7 files changed

+7
-47
lines changed

.github/workflows/deployment.yml

Lines changed: 0 additions & 41 deletions
This file was deleted.

README-EN.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
- **Detailed Analysis**
2424
- Click the bubbles in the charts to jump to the detailed page of Profile and Trace for further detailed analysis
2525

26-
### [Demo](https://profiler.gytycn.com/)
26+
### [Demo](https://profiler.xyctruth.work/)
2727

2828
<table>
2929
<tr>

README-ZH.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
- **详细分析**
2424
- 点击图表中的气泡跳转到 Profile 与 Trace 的详细页面进行进一步详细的分析
2525

26-
### [演示](https://profiler.gytycn.com/)
26+
### [演示](https://profiler.xyctruth.work/)
2727

2828
<table>
2929
<tr>

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
- **详细分析**
2424
- 点击图表中的气泡跳转到 Profile 与 Trace 的详细页面进行进一步详细的分析
2525

26-
### [演示](https://profiler.gytycn.com/)
26+
### [演示](https://profiler.xyctruth.work/)
2727

2828
<table>
2929
<tr>

charts/profiler/values.dev.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -116,13 +116,13 @@ ingress:
116116
kubernetes.io/ingress.class: nginx
117117
cert-manager.io/cluster-issuer: letsencrypt-nginx
118118
hosts:
119-
- host: profiler.gytycn.com
119+
- host: profiler.xyctruth.work
120120
paths:
121121
- path: /
122122
pathType: Prefix
123123
tls:
124124
- secretName: profiler-tls
125125
hosts:
126-
- profiler.gytycn.com
126+
- profiler.xyctruth.work
127127

128128

pkg/storage/badger/store.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ func NewStore(opt Options) storage.Store {
2626
badger.DefaultOptions(opt.Path).
2727
WithLoggingLevel(3).
2828
WithBypassLockGuard(true).
29+
WithNumVersionsToKeep(0).
2930
WithValueThreshold(1 << 10))
3031

3132
if err != nil {

ui/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"version": "0.0.0",
44
"scripts": {
55
"dev": "vite",
6-
"test": "npm run dev --base_api_url=https://profiler.gytycn.com/",
6+
"test": "npm run dev --base_api_url=https://profiler.xyctruth.work/",
77
"build": "vite build",
88
"preview": "vite preview"
99
},

0 commit comments

Comments
 (0)