Text corrections and unneeded key removal (#3065)
* text corrections for analytics/application dashboard creation * create dashboard/select metric definition correction * untitled panel and panel group removed from translation due to error in querying * handle function revert Signed-off-by: Ritik Srivastava <ritik@chaosnative.com>
This commit is contained in:
parent
6049151a16
commit
ae15a1fe1c
|
|
@ -365,12 +365,12 @@ analyticsDashboard:
|
||||||
addApplication: Add application
|
addApplication: Add application
|
||||||
selectTheMetrics:
|
selectTheMetrics:
|
||||||
header: Select metrics
|
header: Select metrics
|
||||||
description: Based on the namespaces and application these are the possible metrics that can be plotted.
|
description: Based upon the selected dashboard type these are the possible metrics that can be plotted.
|
||||||
errorMessage: No panel groups or panels were found. Re-upload the dashboard.
|
errorMessage: No panel groups or panels were found. Re-upload the dashboard.
|
||||||
tuneTheQueries:
|
tuneTheQueries:
|
||||||
header: Tune the queries
|
header: Tune the queries
|
||||||
description: Edit queries to the data source for fetching relevant metrics.
|
description: Edit queries in the panels for fetching the relevant metrics.
|
||||||
addMetric: + Add Metric
|
addPanel: + Add Panel
|
||||||
query: Query
|
query: Query
|
||||||
queries: Queries
|
queries: Queries
|
||||||
visualization: Visualization
|
visualization: Visualization
|
||||||
|
|
|
||||||
|
|
@ -221,7 +221,7 @@ const EditPanelsWizard: React.FC<EditPanelsWizardProps> = ({
|
||||||
panel_id: '',
|
panel_id: '',
|
||||||
panel_group_id: '',
|
panel_group_id: '',
|
||||||
created_at: '',
|
created_at: '',
|
||||||
panel_group_name: 'Untitled Group name',
|
panel_group_name: 'Untitled Panel Group',
|
||||||
ds_url: dashboardVars.dataSourceURL ?? '',
|
ds_url: dashboardVars.dataSourceURL ?? '',
|
||||||
prom_queries: [
|
prom_queries: [
|
||||||
{
|
{
|
||||||
|
|
@ -240,7 +240,7 @@ const EditPanelsWizard: React.FC<EditPanelsWizardProps> = ({
|
||||||
grids: true,
|
grids: true,
|
||||||
left_axis: true,
|
left_axis: true,
|
||||||
},
|
},
|
||||||
panel_name: 'Untitled Metric',
|
panel_name: 'Untitled Panel',
|
||||||
y_axis_left: '',
|
y_axis_left: '',
|
||||||
y_axis_right: '',
|
y_axis_right: '',
|
||||||
x_axis_down: '',
|
x_axis_down: '',
|
||||||
|
|
@ -496,10 +496,9 @@ const EditPanelsWizard: React.FC<EditPanelsWizardProps> = ({
|
||||||
))}
|
))}
|
||||||
<StyledTab
|
<StyledTab
|
||||||
label={t(
|
label={t(
|
||||||
'analyticsDashboard.applicationDashboards.tuneTheQueries.addMetric'
|
'analyticsDashboard.applicationDashboards.tuneTheQueries.addPanel'
|
||||||
)}
|
)}
|
||||||
{...a11yProps(dashboardDetails.selectedPanels?.length)}
|
{...a11yProps(dashboardDetails.selectedPanels?.length)}
|
||||||
key="tab-addMetric"
|
|
||||||
/>
|
/>
|
||||||
</Tabs>
|
</Tabs>
|
||||||
</AppBar>
|
</AppBar>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue