Skip to content
Open
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
4 changes: 2 additions & 2 deletions datahub-web-react/src/app/ingest/source/builder/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ import qlikLogo from '@images/qliklogo.png';
import redshiftLogo from '@images/redshiftlogo.png';
import sacLogo from '@images/saclogo.svg';
import sigmaLogo from '@images/sigmalogo.png';
import snaplogic from '@images/snaplogic.png';
import snaplogicLogo from '@images/snaplogic.png';
import snowflakeLogo from '@images/snowflakelogo.png';
import streamlitLogo from '@images/streamlitlogo.png';
import supersetLogo from '@images/supersetlogo.png';
Expand Down Expand Up @@ -205,7 +205,7 @@ export const PLATFORM_URN_TO_LOGO = {
[DATAHUB_URN]: datahubLogo,
[NEO4J_URN]: neo4j,
[VERTEXAI_URN]: vertexAI,
[SNAPLOGIC_URN]: snaplogic,
[SNAPLOGIC_URN]: snaplogicLogo,
[GOOGLE_SHEETS_URN]: googleSheetsLogo,
[STREAMLIT_URN]: streamlitLogo,
};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"name": "snaplogic",
"displayName": "SnapLogic",
"description": "Import lineage from SnapLogic.",
"docsUrl": "https://docs.datahub.com/docs/quick-ingestion-guides/snaplogic/overview",
"docsUrl": "https://docs.datahub.com/docs/generated/ingestion/sources/snaplogic",
"recipe": "source:\n type: snaplogic\n config:\n username: # username\n password: # password\n base_url: https://elastic.snaplogic.com\n org_name: # Organization name from SnapLogic instance\n stateful_ingestion:\n enabled: True\n remove_stale_metadata: False\n"
},
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ import qlikLogo from '@images/qliklogo.png';
import redshiftLogo from '@images/redshiftlogo.png';
import sacLogo from '@images/saclogo.svg';
import sigmaLogo from '@images/sigmalogo.png';
import snaplogicLogo from '@images/snaplogic.png';
import snowflakeLogo from '@images/snowflakelogo.png';
import streamlitLogo from '@images/streamlitlogo.png';
import supersetLogo from '@images/supersetlogo.png';
Expand Down Expand Up @@ -148,6 +149,8 @@ export const NEO4J = 'neo4j';
export const NEO4J_URN = `urn:li:dataPlatform:${NEO4J}`;
export const VERTEX_AI = 'vertexai';
export const VERTEXAI_URN = `urn:li:dataPlatform:${VERTEX_AI}`;
export const SNAPLOGIC = 'snaplogic';
export const SNAPLOGIC_URN = `urn:li:dataPlatform:${SNAPLOGIC}`;

export const PLATFORM_URN_TO_LOGO = {
[ATHENA_URN]: athenaLogo,
Expand Down Expand Up @@ -195,6 +198,7 @@ export const PLATFORM_URN_TO_LOGO = {
[DATAHUB_URN]: datahubLogo,
[NEO4J_URN]: neo4j,
[VERTEXAI_URN]: vertexAI,
[SNAPLOGIC_URN]: snaplogicLogo,
};

export const SOURCE_TO_PLATFORM_URN = {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"name": "snaplogic",
"displayName": "SnapLogic",
"description": "Import lineage from SnapLogic.",
"docsUrl": "https://docs.datahub.com/docs/quick-ingestion-guides/snaplogic/overview",
"docsUrl": "https://docs.datahub.com/docs/generated/ingestion/sources/snaplogic",
"recipe": "source:\n type: snaplogic\n config:\n username: # username\n password: # password\n base_url: https://elastic.snaplogic.com\n org_name: # Organization name from SnapLogic instance\n stateful_ingestion:\n enabled: True\n remove_stale_metadata: False\n"
},
{
Expand Down
Loading