|
@@ -19,8 +19,8 @@ import useOrganization from 'sentry/utils/useOrganization';
|
|
import {
|
|
import {
|
|
NumberOfPipelinesChart,
|
|
NumberOfPipelinesChart,
|
|
PipelineDurationChart,
|
|
PipelineDurationChart,
|
|
-} from 'sentry/views/aiAnalytics/aiAnalyticsCharts';
|
|
|
|
-import {PipelineSpansTable} from 'sentry/views/aiAnalytics/pipelineSpansTable';
|
|
|
|
|
|
+} from 'sentry/views/aiMonitoring/aiMonitoringCharts';
|
|
|
|
+import {PipelineSpansTable} from 'sentry/views/aiMonitoring/pipelineSpansTable';
|
|
import {MetricReadout} from 'sentry/views/performance/metricReadout';
|
|
import {MetricReadout} from 'sentry/views/performance/metricReadout';
|
|
import * as ModuleLayout from 'sentry/views/performance/moduleLayout';
|
|
import * as ModuleLayout from 'sentry/views/performance/moduleLayout';
|
|
import {useSpanMetrics} from 'sentry/views/starfish/queries/useSpanMetrics';
|
|
import {useSpanMetrics} from 'sentry/views/starfish/queries/useSpanMetrics';
|
|
@@ -44,7 +44,7 @@ interface Props {
|
|
};
|
|
};
|
|
}
|
|
}
|
|
|
|
|
|
-export default function AiAnalyticsPage({params}: Props) {
|
|
|
|
|
|
+export default function AiMonitoringPage({params}: Props) {
|
|
const organization = useOrganization();
|
|
const organization = useOrganization();
|
|
const {groupId} = params;
|
|
const {groupId} = params;
|
|
|
|
|
|
@@ -81,7 +81,7 @@ export default function AiAnalyticsPage({params}: Props) {
|
|
return (
|
|
return (
|
|
<PageFiltersContainer>
|
|
<PageFiltersContainer>
|
|
<SentryDocumentTitle
|
|
<SentryDocumentTitle
|
|
- title={`AI Analytics — ${spanMetrics['span.description'] ?? t('(no name)')}`}
|
|
|
|
|
|
+ title={`AI Monitoring — ${spanMetrics['span.description'] ?? t('(no name)')}`}
|
|
>
|
|
>
|
|
<Layout.Page>
|
|
<Layout.Page>
|
|
<Feature
|
|
<Feature
|
|
@@ -93,12 +93,12 @@ export default function AiAnalyticsPage({params}: Props) {
|
|
<Layout.Header>
|
|
<Layout.Header>
|
|
<Layout.HeaderContent>
|
|
<Layout.HeaderContent>
|
|
<Layout.Title>
|
|
<Layout.Title>
|
|
- {`${t('AI Analytics')} - ${spanMetrics['span.description'] ?? t('(no name)')}`}
|
|
|
|
|
|
+ {`${t('AI Monitoring')} - ${spanMetrics['span.description'] ?? t('(no name)')}`}
|
|
<PageHeadingQuestionTooltip
|
|
<PageHeadingQuestionTooltip
|
|
title={t(
|
|
title={t(
|
|
'If this name is too generic, read the docs to learn how to change it.'
|
|
'If this name is too generic, read the docs to learn how to change it.'
|
|
)}
|
|
)}
|
|
- docsUrl="https://docs.sentry.io/product/ai-analytics/"
|
|
|
|
|
|
+ docsUrl="https://docs.sentry.io/product/ai-monitoring/"
|
|
/>
|
|
/>
|
|
</Layout.Title>
|
|
</Layout.Title>
|
|
</Layout.HeaderContent>
|
|
</Layout.HeaderContent>
|