Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
phsl
/
new-api
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
5db25f47
authored
Mar 17, 2026
by
Seefs
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat: add param override audit modal for usage logs
parent
a4fd2246
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
341 additions
and
1 deletions
+341
-1
relay/common/override.go
+0
-0
relay/common/relay_info.go
+1
-0
service/log_info_generate.go
+8
-0
web/src/components/table/usage-logs/index.jsx
+2
-0
web/src/components/table/usage-logs/modals/ParamOverrideModal.jsx
+278
-0
web/src/hooks/usage-logs/useUsageLogsData.jsx
+52
-1
No files found.
relay/common/override.go
View file @
5db25f47
This diff is collapsed.
Click to expand it.
relay/common/relay_info.go
View file @
5db25f47
...
@@ -149,6 +149,7 @@ type RelayInfo struct {
...
@@ -149,6 +149,7 @@ type RelayInfo struct {
LastError
*
types
.
NewAPIError
LastError
*
types
.
NewAPIError
RuntimeHeadersOverride
map
[
string
]
interface
{}
RuntimeHeadersOverride
map
[
string
]
interface
{}
UseRuntimeHeadersOverride
bool
UseRuntimeHeadersOverride
bool
ParamOverrideAudit
[]
string
PriceData
types
.
PriceData
PriceData
types
.
PriceData
...
...
service/log_info_generate.go
View file @
5db25f47
...
@@ -74,9 +74,17 @@ func GenerateTextOtherInfo(ctx *gin.Context, relayInfo *relaycommon.RelayInfo, m
...
@@ -74,9 +74,17 @@ func GenerateTextOtherInfo(ctx *gin.Context, relayInfo *relaycommon.RelayInfo, m
appendRequestPath
(
ctx
,
relayInfo
,
other
)
appendRequestPath
(
ctx
,
relayInfo
,
other
)
appendRequestConversionChain
(
relayInfo
,
other
)
appendRequestConversionChain
(
relayInfo
,
other
)
appendBillingInfo
(
relayInfo
,
other
)
appendBillingInfo
(
relayInfo
,
other
)
appendParamOverrideInfo
(
relayInfo
,
other
)
return
other
return
other
}
}
func
appendParamOverrideInfo
(
relayInfo
*
relaycommon
.
RelayInfo
,
other
map
[
string
]
interface
{})
{
if
relayInfo
==
nil
||
other
==
nil
||
len
(
relayInfo
.
ParamOverrideAudit
)
==
0
{
return
}
other
[
"po"
]
=
relayInfo
.
ParamOverrideAudit
}
func
appendBillingInfo
(
relayInfo
*
relaycommon
.
RelayInfo
,
other
map
[
string
]
interface
{})
{
func
appendBillingInfo
(
relayInfo
*
relaycommon
.
RelayInfo
,
other
map
[
string
]
interface
{})
{
if
relayInfo
==
nil
||
other
==
nil
{
if
relayInfo
==
nil
||
other
==
nil
{
return
return
...
...
web/src/components/table/usage-logs/index.jsx
View file @
5db25f47
...
@@ -25,6 +25,7 @@ import LogsFilters from './UsageLogsFilters';
...
@@ -25,6 +25,7 @@ import LogsFilters from './UsageLogsFilters';
import
ColumnSelectorModal
from
'./modals/ColumnSelectorModal'
;
import
ColumnSelectorModal
from
'./modals/ColumnSelectorModal'
;
import
UserInfoModal
from
'./modals/UserInfoModal'
;
import
UserInfoModal
from
'./modals/UserInfoModal'
;
import
ChannelAffinityUsageCacheModal
from
'./modals/ChannelAffinityUsageCacheModal'
;
import
ChannelAffinityUsageCacheModal
from
'./modals/ChannelAffinityUsageCacheModal'
;
import
ParamOverrideModal
from
'./modals/ParamOverrideModal'
;
import
{
useLogsData
}
from
'../../../hooks/usage-logs/useUsageLogsData'
;
import
{
useLogsData
}
from
'../../../hooks/usage-logs/useUsageLogsData'
;
import
{
useIsMobile
}
from
'../../../hooks/common/useIsMobile'
;
import
{
useIsMobile
}
from
'../../../hooks/common/useIsMobile'
;
import
{
createCardProPagination
}
from
'../../../helpers/utils'
;
import
{
createCardProPagination
}
from
'../../../helpers/utils'
;
...
@@ -39,6 +40,7 @@ const LogsPage = () => {
...
@@ -39,6 +40,7 @@ const LogsPage = () => {
<
ColumnSelectorModal
{
...
logsData
}
/>
<
ColumnSelectorModal
{
...
logsData
}
/>
<
UserInfoModal
{
...
logsData
}
/>
<
UserInfoModal
{
...
logsData
}
/>
<
ChannelAffinityUsageCacheModal
{
...
logsData
}
/>
<
ChannelAffinityUsageCacheModal
{
...
logsData
}
/>
<
ParamOverrideModal
{
...
logsData
}
/>
{
/* Main Content */
}
{
/* Main Content */
}
<
CardPro
<
CardPro
...
...
web/src/components/table/usage-logs/modals/ParamOverrideModal.jsx
0 → 100644
View file @
5db25f47
/*
Copyright (C) 2025 QuantumNous
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as
published by the Free Software Foundation, either version 3 of the
License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
For commercial licensing, please contact support@quantumnous.com
*/
import
React
,
{
useMemo
}
from
'react'
;
import
{
Modal
,
Button
,
Empty
,
Space
,
Tag
,
Typography
,
}
from
'@douyinfe/semi-ui'
;
import
{
IconCopy
}
from
'@douyinfe/semi-icons'
;
import
{
copy
,
showError
,
showSuccess
}
from
'../../../../helpers'
;
const
{
Text
}
=
Typography
;
const
parseAuditLine
=
(
line
)
=>
{
if
(
typeof
line
!==
'string'
)
{
return
null
;
}
const
colonIndex
=
line
.
indexOf
(
': '
);
const
arrowIndex
=
line
.
indexOf
(
' -> '
,
colonIndex
+
2
);
if
(
colonIndex
<=
0
||
arrowIndex
<=
colonIndex
)
{
return
null
;
}
return
{
field
:
line
.
slice
(
0
,
colonIndex
),
before
:
line
.
slice
(
colonIndex
+
2
,
arrowIndex
),
after
:
line
.
slice
(
arrowIndex
+
4
),
raw
:
line
,
};
};
const
ValuePanel
=
({
label
,
value
,
tone
})
=>
(
<
div
style=
{
{
flex
:
1
,
minWidth
:
0
,
padding
:
12
,
borderRadius
:
12
,
border
:
'1px solid var(--semi-color-border)'
,
background
:
tone
===
'after'
?
'rgba(var(--semi-blue-5), 0.08)'
:
'var(--semi-color-fill-0)'
,
}
}
>
<
div
style=
{
{
marginBottom
:
6
,
fontSize
:
12
,
fontWeight
:
600
,
color
:
'var(--semi-color-text-2)'
,
}
}
>
{
label
}
</
div
>
<
Text
style=
{
{
display
:
'block'
,
fontFamily
:
'ui-monospace, SFMono-Regular, SF Mono, Menlo, Consolas, monospace'
,
fontSize
:
13
,
lineHeight
:
1.65
,
whiteSpace
:
'pre-wrap'
,
wordBreak
:
'break-word'
,
}
}
>
{
value
}
</
Text
>
</
div
>
);
const
ParamOverrideModal
=
({
showParamOverrideModal
,
setShowParamOverrideModal
,
paramOverrideTarget
,
t
,
})
=>
{
const
lines
=
Array
.
isArray
(
paramOverrideTarget
?.
lines
)
?
paramOverrideTarget
.
lines
:
[];
const
parsedLines
=
useMemo
(()
=>
{
return
lines
.
map
(
parseAuditLine
);
},
[
lines
]);
const
copyAll
=
async
()
=>
{
const
content
=
lines
.
join
(
'\n'
);
if
(
!
content
)
{
return
;
}
if
(
await
copy
(
content
))
{
showSuccess
(
t
(
'参数覆盖已复制'
));
return
;
}
showError
(
t
(
'无法复制到剪贴板,请手动复制'
));
};
return
(
<
Modal
title=
{
t
(
'参数覆盖详情'
)
}
visible=
{
showParamOverrideModal
}
onCancel=
{
()
=>
setShowParamOverrideModal
(
false
)
}
footer=
{
null
}
centered
closable
maskClosable
width=
{
760
}
>
<
div
style=
{
{
padding
:
20
}
}
>
<
div
style=
{
{
marginBottom
:
16
,
padding
:
16
,
borderRadius
:
16
,
background
:
'linear-gradient(135deg, rgba(var(--semi-blue-5), 0.08), rgba(var(--semi-teal-5), 0.12))'
,
border
:
'1px solid rgba(var(--semi-blue-5), 0.16)'
,
}
}
>
<
div
style=
{
{
display
:
'flex'
,
justifyContent
:
'space-between'
,
gap
:
12
,
flexWrap
:
'wrap'
,
alignItems
:
'flex-start'
,
}
}
>
<
div
>
<
div
style=
{
{
fontSize
:
18
,
fontWeight
:
700
,
color
:
'var(--semi-color-text-0)'
,
marginBottom
:
8
,
}
}
>
{
t
(
'已应用参数覆盖'
)
}
</
div
>
<
Space
wrap
spacing=
{
8
}
>
<
Tag
color=
'blue'
size=
'large'
>
{
t
(
'
{{
count
}}
项变更'
,
{
count
:
lines
.
length
})
}
</
Tag
>
{
paramOverrideTarget
?.
modelName
?
(
<
Tag
color=
'cyan'
size=
'large'
>
{
paramOverrideTarget
.
modelName
}
</
Tag
>
)
:
null
}
{
paramOverrideTarget
?.
requestId
?
(
<
Tag
color=
'grey'
size=
'large'
>
{
t
(
'Request ID'
)
}
:
{
paramOverrideTarget
.
requestId
}
</
Tag
>
)
:
null
}
</
Space
>
</
div
>
<
Button
icon=
{
<
IconCopy
/>
}
theme=
'solid'
type=
'tertiary'
onClick=
{
copyAll
}
disabled=
{
lines
.
length
===
0
}
>
{
t
(
'复制全部'
)
}
</
Button
>
</
div
>
{
paramOverrideTarget
?.
requestPath
?
(
<
div
style=
{
{
marginTop
:
12
}
}
>
<
Text
type=
'tertiary'
size=
'small'
>
{
t
(
'请求路径'
)
}
:
{
paramOverrideTarget
.
requestPath
}
</
Text
>
</
div
>
)
:
null
}
</
div
>
{
lines
.
length
===
0
?
(
<
Empty
description=
{
t
(
'暂无参数覆盖记录'
)
}
style=
{
{
padding
:
'32px 0 12px'
}
}
/>
)
:
(
<
div
style=
{
{
display
:
'flex'
,
flexDirection
:
'column'
,
gap
:
12
,
maxHeight
:
'60vh'
,
overflowY
:
'auto'
,
paddingRight
:
4
,
}
}
>
{
parsedLines
.
map
((
item
,
index
)
=>
{
if
(
!
item
)
{
return
(
<
div
key=
{
`raw-${index}`
}
style=
{
{
padding
:
14
,
borderRadius
:
14
,
border
:
'1px solid var(--semi-color-border)'
,
background
:
'var(--semi-color-fill-0)'
,
}
}
>
<
Text
style=
{
{
fontFamily
:
'ui-monospace, SFMono-Regular, SF Mono, Menlo, Consolas, monospace'
,
fontSize
:
13
,
lineHeight
:
1.65
,
whiteSpace
:
'pre-wrap'
,
wordBreak
:
'break-word'
,
}
}
>
{
lines
[
index
]
}
</
Text
>
</
div
>
);
}
return
(
<
div
key=
{
`${item.field}-${index}`
}
style=
{
{
padding
:
14
,
borderRadius
:
16
,
border
:
'1px solid var(--semi-color-border)'
,
background
:
'var(--semi-color-bg-0)'
,
boxShadow
:
'0 8px 24px rgba(15, 23, 42, 0.04)'
,
}
}
>
<
div
style=
{
{
marginBottom
:
12
}
}
>
<
Tag
color=
'blue'
shape=
'circle'
size=
'large'
>
{
item
.
field
}
</
Tag
>
</
div
>
<
div
style=
{
{
display
:
'flex'
,
gap
:
12
,
flexWrap
:
'wrap'
,
alignItems
:
'stretch'
,
}
}
>
<
ValuePanel
label=
{
t
(
'变更前'
)
}
value=
{
item
.
before
}
/>
<
ValuePanel
label=
{
t
(
'变更后'
)
}
value=
{
item
.
after
}
tone=
'after'
/>
</
div
>
</
div
>
);
})
}
</
div
>
)
}
</
div
>
</
Modal
>
);
};
export
default
ParamOverrideModal
;
web/src/hooks/usage-logs/useUsageLogsData.jsx
View file @
5db25f47
...
@@ -19,7 +19,7 @@ For commercial licensing, please contact support@quantumnous.com
...
@@ -19,7 +19,7 @@ For commercial licensing, please contact support@quantumnous.com
import
{
useState
,
useEffect
}
from
'react'
;
import
{
useState
,
useEffect
}
from
'react'
;
import
{
useTranslation
}
from
'react-i18next'
;
import
{
useTranslation
}
from
'react-i18next'
;
import
{
Modal
}
from
'@douyinfe/semi-ui'
;
import
{
Modal
,
Button
,
Tag
}
from
'@douyinfe/semi-ui'
;
import
{
import
{
API
,
API
,
getTodayStartTimestamp
,
getTodayStartTimestamp
,
...
@@ -181,6 +181,8 @@ export const useLogsData = () => {
...
@@ -181,6 +181,8 @@ export const useLogsData = () => {
]
=
useState
(
false
);
]
=
useState
(
false
);
const
[
channelAffinityUsageCacheTarget
,
setChannelAffinityUsageCacheTarget
]
=
const
[
channelAffinityUsageCacheTarget
,
setChannelAffinityUsageCacheTarget
]
=
useState
(
null
);
useState
(
null
);
const
[
showParamOverrideModal
,
setShowParamOverrideModal
]
=
useState
(
false
);
const
[
paramOverrideTarget
,
setParamOverrideTarget
]
=
useState
(
null
);
// Initialize default column visibility
// Initialize default column visibility
const
initDefaultColumns
=
()
=>
{
const
initDefaultColumns
=
()
=>
{
...
@@ -345,6 +347,20 @@ export const useLogsData = () => {
...
@@ -345,6 +347,20 @@ export const useLogsData = () => {
setShowChannelAffinityUsageCacheModal
(
true
);
setShowChannelAffinityUsageCacheModal
(
true
);
};
};
const
openParamOverrideModal
=
(
log
,
other
)
=>
{
const
lines
=
Array
.
isArray
(
other
?.
po
)
?
other
.
po
.
filter
(
Boolean
)
:
[];
if
(
lines
.
length
===
0
)
{
return
;
}
setParamOverrideTarget
({
lines
,
modelName
:
log
?.
model_name
||
''
,
requestId
:
log
?.
request_id
||
''
,
requestPath
:
other
?.
request_path
||
''
,
});
setShowParamOverrideModal
(
true
);
};
// Format logs data
// Format logs data
const
setLogsFormat
=
(
logs
)
=>
{
const
setLogsFormat
=
(
logs
)
=>
{
const
requestConversionDisplayValue
=
(
conversionChain
)
=>
{
const
requestConversionDisplayValue
=
(
conversionChain
)
=>
{
...
@@ -584,6 +600,37 @@ export const useLogsData = () => {
...
@@ -584,6 +600,37 @@ export const useLogsData = () => {
value
:
other
.
request_path
,
value
:
other
.
request_path
,
});
});
}
}
if
(
Array
.
isArray
(
other
?.
po
)
&&
other
.
po
.
length
>
0
)
{
expandDataLocal
.
push
({
key
:
t
(
'参数覆盖'
),
value
:
(
<
div
style=
{
{
display
:
'flex'
,
alignItems
:
'center'
,
gap
:
10
,
flexWrap
:
'wrap'
,
}
}
>
<
Tag
color=
'blue'
shape=
'circle'
>
{
t
(
'
{{
count
}}
项变更'
,
{
count
:
other
.
po
.
length
})
}
</
Tag
>
<
Button
theme=
'borderless'
type=
'primary'
size=
'small'
style=
{
{
paddingLeft
:
0
}
}
onClick=
{
(
event
)
=>
{
event
.
stopPropagation
();
openParamOverrideModal
(
logs
[
i
],
other
);
}
}
>
{
t
(
'查看详情'
)
}
</
Button
>
</
div
>
),
});
}
if
(
other
?.
billing_source
===
'subscription'
)
{
if
(
other
?.
billing_source
===
'subscription'
)
{
const
planId
=
other
?.
subscription_plan_id
;
const
planId
=
other
?.
subscription_plan_id
;
const
planTitle
=
other
?.
subscription_plan_title
||
''
;
const
planTitle
=
other
?.
subscription_plan_title
||
''
;
...
@@ -811,6 +858,9 @@ export const useLogsData = () => {
...
@@ -811,6 +858,9 @@ export const useLogsData = () => {
setShowChannelAffinityUsageCacheModal
,
setShowChannelAffinityUsageCacheModal
,
channelAffinityUsageCacheTarget
,
channelAffinityUsageCacheTarget
,
openChannelAffinityUsageCacheModal
,
openChannelAffinityUsageCacheModal
,
showParamOverrideModal
,
setShowParamOverrideModal
,
paramOverrideTarget
,
// Functions
// Functions
loadLogs
,
loadLogs
,
...
@@ -822,6 +872,7 @@ export const useLogsData = () => {
...
@@ -822,6 +872,7 @@ export const useLogsData = () => {
setLogsFormat
,
setLogsFormat
,
hasExpandableRows
,
hasExpandableRows
,
setLogType
,
setLogType
,
openParamOverrideModal
,
// Translation
// Translation
t
,
t
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment