mirror of
https://git.mirrors.martin98.com/https://github.com/SigNoz/signoz
synced 2025-08-14 06:55:58 +08:00
commit
ad62106cad
@ -144,7 +144,7 @@ services:
|
|||||||
condition: on-failure
|
condition: on-failure
|
||||||
|
|
||||||
query-service:
|
query-service:
|
||||||
image: signoz/query-service:0.31.0
|
image: signoz/query-service:0.31.1
|
||||||
command:
|
command:
|
||||||
[
|
[
|
||||||
"-config=/root/config/prometheus.yml",
|
"-config=/root/config/prometheus.yml",
|
||||||
@ -184,7 +184,7 @@ services:
|
|||||||
<<: *clickhouse-depend
|
<<: *clickhouse-depend
|
||||||
|
|
||||||
frontend:
|
frontend:
|
||||||
image: signoz/frontend:0.31.0
|
image: signoz/frontend:0.31.1
|
||||||
deploy:
|
deploy:
|
||||||
restart_policy:
|
restart_policy:
|
||||||
condition: on-failure
|
condition: on-failure
|
||||||
|
@ -162,7 +162,7 @@ services:
|
|||||||
# Notes for Maintainers/Contributors who will change Line Numbers of Frontend & Query-Section. Please Update Line Numbers in `./scripts/commentLinesForSetup.sh` & `./CONTRIBUTING.md`
|
# Notes for Maintainers/Contributors who will change Line Numbers of Frontend & Query-Section. Please Update Line Numbers in `./scripts/commentLinesForSetup.sh` & `./CONTRIBUTING.md`
|
||||||
|
|
||||||
query-service:
|
query-service:
|
||||||
image: signoz/query-service:${DOCKER_TAG:-0.31.0}
|
image: signoz/query-service:${DOCKER_TAG:-0.31.1}
|
||||||
container_name: signoz-query-service
|
container_name: signoz-query-service
|
||||||
command:
|
command:
|
||||||
[
|
[
|
||||||
@ -201,7 +201,7 @@ services:
|
|||||||
<<: *clickhouse-depend
|
<<: *clickhouse-depend
|
||||||
|
|
||||||
frontend:
|
frontend:
|
||||||
image: signoz/frontend:${DOCKER_TAG:-0.31.0}
|
image: signoz/frontend:${DOCKER_TAG:-0.31.1}
|
||||||
container_name: signoz-frontend
|
container_name: signoz-frontend
|
||||||
restart: on-failure
|
restart: on-failure
|
||||||
depends_on:
|
depends_on:
|
||||||
|
@ -63,7 +63,7 @@ function TableView({
|
|||||||
.map((key) => ({
|
.map((key) => ({
|
||||||
key,
|
key,
|
||||||
field: key,
|
field: key,
|
||||||
value: removeEscapeCharacters(JSON.stringify(flattenLogData[key])),
|
value: JSON.stringify(flattenLogData[key]),
|
||||||
}));
|
}));
|
||||||
|
|
||||||
const onTraceHandler = (record: DataType) => (): void => {
|
const onTraceHandler = (record: DataType) => (): void => {
|
||||||
@ -182,7 +182,7 @@ function TableView({
|
|||||||
|
|
||||||
return (
|
return (
|
||||||
<CopyClipboardHOC textToCopy={textToCopy}>
|
<CopyClipboardHOC textToCopy={textToCopy}>
|
||||||
<span style={{ color: orange[6] }}>{field}</span>
|
<span style={{ color: orange[6] }}>{removeEscapeCharacters(field)}</span>
|
||||||
</CopyClipboardHOC>
|
</CopyClipboardHOC>
|
||||||
);
|
);
|
||||||
},
|
},
|
||||||
|
Loading…
x
Reference in New Issue
Block a user