Skip to content
Merged
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
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
import { useContext, useState } from "react";
import { useTheme } from "styled-components";
import { actions as globalActions } from "../../../actions";
import { CENTRAL_ON_PREM_INSTALLATION_GUIDE_URL } from "../../../constants";
import { getHostnameFromURL } from "../../../utils/getHostNameFromURL";
import { openURLInDefaultBrowser } from "../../../utils/openURLInDefaultBrowser";
import { ConfigContext } from "../../common/App/ConfigContext";
import { getThemeKind } from "../../common/App/styles";
import { EnvironmentType } from "../../common/App/types";
Expand Down Expand Up @@ -42,7 +44,8 @@ export const EnvironmentInstructionsPanel = (
);

const handleOrgDigmaSetupGuideLinkClick = () => {
setIsOrgDigmaSetupGuideVisible(true);
// setIsOrgDigmaSetupGuideVisible(true);
openURLInDefaultBrowser(CENTRAL_ON_PREM_INSTALLATION_GUIDE_URL);
};

const handleAddToRunConfigLinkClick = () => {
Expand Down
3 changes: 3 additions & 0 deletions src/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ export const INSTALL_DIGMA_IN_ORGANIZATION_DOCUMENTATION_URL =
export const SETUP_PLUGIN_TO_ORGANIZATION_DIGMA_URL =
"https://digma.ai/installing-digma-in-your-organization/#Connecting";

export const CENTRAL_ON_PREM_INSTALLATION_GUIDE_URL =
"https://docs.digma.ai/digma-developer-guide/installation/central-on-prem-install";

export const PERCENTILES: {
label: string;
percentile: number;
Expand Down