Skip to content

Commit

Permalink
fix: Adding ingestor docs link (#3383)
Browse files Browse the repository at this point in the history
  • Loading branch information
xoscar authored and schoren committed Nov 21, 2023
1 parent a26aedd commit a265a84
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import {Form, Switch} from 'antd';
import DocsBanner from 'components/DocsBanner/DocsBanner';
import {TCollectorDataStores, TDraftDataStore} from 'types/DataStore.types';
import {INGESTOR_ENDPOINT_URL} from 'constants/Common.constants';
import * as S from './Agent.styled';

const Ingestor = () => {
Expand Down Expand Up @@ -29,7 +30,7 @@ const Ingestor = () => {
</S.SwitchContainer>
<DocsBanner>
Need more information about setting up the agent ingestion endpoint?{' '}
<a target="_blank" href="">
<a target="_blank" href={INGESTOR_ENDPOINT_URL}>
Go to our docs
</a>
</DocsBanner>
Expand Down
2 changes: 1 addition & 1 deletion web/src/constants/Common.constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export const OCTOLIINT_ISSUE_URL = 'https://github.com/kubeshop/tracetest/issues
export const CLI_RUNNING_TESTS_URL = 'https://docs.tracetest.io/cli/running-tests';
export const CLI_RUNNING_TEST_SUITES_URL = 'https://docs.tracetest.io/cli/running-test-suites';

export const INGESTOR_ENDPOINT_URL = 'https://docs.tracetest.io/configuration/ingestor-endpoint';
export const INGESTOR_ENDPOINT_URL = 'https://docs.tracetest.io/configuration/opentelemetry-collector-configuration-file-reference';

export const TRACE_SEMANTIC_CONVENTIONS_URL =
'https://github.com/open-telemetry/opentelemetry-specification/tree/main/specification/trace/semantic_conventions';
Expand Down

0 comments on commit a265a84

Please sign in to comment.