mirror of
https://git.mirrors.martin98.com/https://github.com/SigNoz/signoz
synced 2025-08-14 06:55:58 +08:00
Merge branch 'develop' into chore/hotrod-locust
This commit is contained in:
commit
340f14be3d
@ -272,7 +272,7 @@ function LogsExplorerViews(): JSX.Element {
|
||||
Panel limit exceeded for {DataSource.LOGS} in community edition. Please
|
||||
checkout our paid plans{' '}
|
||||
<a
|
||||
href="https://signoz.io/pricing"
|
||||
href="https://signoz.io/pricing/?utm_source=product&utm_medium=dashboard-limit"
|
||||
rel="noreferrer noopener"
|
||||
target="_blank"
|
||||
>
|
||||
|
@ -105,7 +105,7 @@ function TracesExplorer(): JSX.Element {
|
||||
Panel limit exceeded for {DataSource.TRACES} in community edition.
|
||||
Please checkout our paid plans{' '}
|
||||
<a
|
||||
href="https://signoz.io/pricing"
|
||||
href="https://signoz.io/pricing/?utm_source=product&utm_medium=dashboard-limit"
|
||||
rel="noreferrer noopener"
|
||||
target="_blank"
|
||||
>
|
||||
|
@ -3958,7 +3958,10 @@ func (r *ClickHouseReader) GetLogAttributeValues(ctx context.Context, req *v3.Fi
|
||||
|
||||
// if dataType or tagType is not present return empty response
|
||||
if len(req.FilterAttributeKeyDataType) == 0 || len(req.TagType) == 0 || req.FilterAttributeKey == "body" {
|
||||
return &v3.FilterAttributeValueResponse{}, nil
|
||||
// also check if it is not a top level key
|
||||
if _, ok := constants.StaticFieldsLogsV3[req.FilterAttributeKey]; !ok {
|
||||
return &v3.FilterAttributeValueResponse{}, nil
|
||||
}
|
||||
}
|
||||
|
||||
// if data type is bool, return true and false
|
||||
|
Loading…
x
Reference in New Issue
Block a user