Merge pull request #3743 from SigNoz/release/v0.31.1

Release/v0.31.1
This commit is contained in:
Prashant Shahi 2023-10-13 13:34:13 +05:45 committed by GitHub
commit ad62106cad
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 6 deletions

View File

@ -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

View File

@ -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:

View File

@ -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>
); );
}, },