File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed
static/app/views/explore/logs Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -16,6 +16,8 @@ import {logsPickableDays} from 'sentry/views/explore/logs/utils';
16
16
import { TraceItemDataset } from 'sentry/views/explore/types' ;
17
17
import { usePrefersStackedNav } from 'sentry/views/nav/usePrefersStackedNav' ;
18
18
19
+ import { LOGS_INSTRUCTIONS_URL } from './logsTable' ;
20
+
19
21
function FeedbackButton ( ) {
20
22
const openForm = useFeedbackForm ( ) ;
21
23
@@ -84,7 +86,7 @@ export default function LogsPage() {
84
86
< LinkButton
85
87
icon = { < IconOpen /> }
86
88
priority = "primary"
87
- href = "https://docs.sentry.io/product/explore/logs/getting-started/"
89
+ href = { LOGS_INSTRUCTIONS_URL }
88
90
external
89
91
size = "xs"
90
92
>
Original file line number Diff line number Diff line change @@ -38,7 +38,8 @@ import {EmptyStateText} from 'sentry/views/traces/styles';
38
38
39
39
import { getLogBodySearchTerms , getTableHeaderLabel , logsFieldAlignment } from './utils' ;
40
40
41
- const LOGS_INSTRUCTIONS_URL = 'https://github.com/getsentry/sentry/discussions/86804' ;
41
+ export const LOGS_INSTRUCTIONS_URL =
42
+ 'https://docs.sentry.io/product/explore/logs/getting-started/' ;
42
43
43
44
type LogsTableProps = {
44
45
tableData : UseExploreLogsTableResult ;
You can’t perform that action at this time.
0 commit comments