Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Dockerfile.dev
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ RUN make install-frontend-ci-clean
COPY web/ web/
RUN make build-frontend

FROM quay.io/redhat-cne/openshift-origin-release:rhel-9-golang-1.22-openshift-4.17 as go-builder
FROM brew.registry.redhat.io/rh-osbs/openshift-golang-builder:rhel_9_golang_1.23 as go-builder

WORKDIR /opt/app-root

Expand Down
24 changes: 16 additions & 8 deletions web/console-extensions.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,4 @@
[
{
"type": "console.page/route",
"properties": {
"exact": false,
"path": "/observe/traces",
"component": { "$codeRef": "TracingUI" }
}
},
{
"type": "console.navigation/href",
"properties": {
Expand All @@ -16,5 +8,21 @@
"perspective": "admin",
"section": "observe"
}
},
{
"type": "console.page/route",
"properties": {
"exact": true,
"path": "/observe/traces",
"component": { "$codeRef": "TracesPage" }
}
},
{
"type": "console.page/route",
"properties": {
"exact": true,
"path": "/observe/traces/:traceId",
"component": { "$codeRef": "TraceDetailPage" }
}
}
]
10 changes: 10 additions & 0 deletions web/jest.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
/* eslint-disable no-undef */
module.exports = {
preset: 'ts-jest',
testEnvironment: 'node',
transform: {
'\\.[jt]sx?$': 'ts-jest',
},
transformIgnorePatterns: ['<rootDir>/node_modules/(?!(@openshift-console|@patternfly))'],
coverageDirectory: '<rootDir>/coverage/cov-jest',
};
31 changes: 21 additions & 10 deletions web/locales/en/plugin__distributed-tracing-console-plugin.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,28 +7,39 @@
"Last 12 hours": "Last 12 hours",
"Last 1 day": "Last 1 day",
"Last 7 days": "Last 7 days",
"Time Range": "Time Range",
"Select a Time Range": "Select a Time Range",
"Time range": "Time range",
"Select a time range": "Select a time range",
"No Tempo instance selected": "No Tempo instance selected",
"To explore data, select a Tempo instance and run a query.": "To explore data, select a Tempo instance and run a query.",
"Tempo Instance": "Tempo Instance",
"Tempo instance": "Tempo instance",
"Select a Tempo instance": "Select a Tempo instance",
"tempoinstance_helptext": "TempoStack and TempoMonolithic instances with multi-tenancy are supported. Instances without multi-tenancy are not supported.",
"TempoStack and TempoMonolithic instances with multi-tenancy are supported. Instances without multi-tenancy are not supported.": "TempoStack and TempoMonolithic instances with multi-tenancy are supported. Instances without multi-tenancy are not supported.",
"Tenant": "Tenant",
"Select a tenant": "Select a tenant",
"No results found for {{value}}": "No results found for {{value}}",
"Trace": "Trace",
"Tracing": "Tracing",
"Traces": "Traces",
"Trace details": "Trace details",
"Query": "Query",
"Max Traces": "Max Traces",
"The number of search results must be between 1 and {{max}}": "The number of search results must be between 1 and {{max}}",
"Run query": "Run query",
"TraceQL Query": "TraceQL Query",
"Limit traces": "Limit traces",
"No datapoints found.": "No datapoints found.",
"Hide graph": "Hide graph",
"Show graph": "Show graph",
"Filter": "Filter",
"between {{min}} and {{max}}": "between {{min}} and {{max}}",
"greater than {{min}}": "greater than {{min}}",
"less than {{max}}": "less than {{max}}",
"Min duration": "Min duration",
"e.g. 100ms": "e.g. 100ms",
"Max duration": "Max duration",
"Invalid format. Accepted format e.g. 100ms, accepted units: ns, ms, s, m, h": "Invalid format. Accepted format e.g. 100ms, accepted units: ns, ms, s, m, h",
"Custom attributes": "Custom attributes",
"Filter by attributes": "Filter by attributes",
"Attributes are written in the form key=value and are combined via AND. Multiple attributes can be separated via space. String values must be quoted. Example:": "Attributes are written in the form key=value and are combined via AND. Multiple attributes can be separated via space. String values must be quoted. Example:",
"Show query": "Show query",
"Hide query": "Hide query",
"TraceQL Query": "TraceQL Query",
"Query": "Query",
"Run query": "Run query",
"Tempo operator isn't installed yet": "Tempo operator isn't installed yet",
"To get started, install the Tempo operator and create a TempoStack or TempoMonolithic instance with multi-tenancy enabled.": "To get started, install the Tempo operator and create a TempoStack or TempoMonolithic instance with multi-tenancy enabled.",
"Install Tempo operator": "Install Tempo operator",
Expand Down
Loading