You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
122 lines
4.4 KiB
122 lines
4.4 KiB
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
|
<title>Overview</title>
|
|
<link rel="stylesheet" type="text/css" href="${make_url('/static/app/DA-ITSI-CP-windows-dashboards/js/common/contrib/bootstrap.min.css')}" />
|
|
<link rel="stylesheet" type="text/css"
|
|
href="${make_url('/static/app/DA-ITSI-CP-windows-dashboards/js/common/contrib/dashboard-simple-bootstrap.min.css')}" />
|
|
<link rel="stylesheet" type="text/css"
|
|
href="${make_url('/static/app/DA-ITSI-CP-windows-dashboards/landing_page.css')}" />
|
|
</head>
|
|
|
|
<body class="locale-en">
|
|
<header>
|
|
<a class="navSkip" href="#navSkip" tabindex="1">Screen reader users, click here to skip the navigation bar</a>
|
|
<div class="header splunk-header">
|
|
<div id="placeholder-splunk-bar">
|
|
<a href="${make_url('/app/launcher/home')}" class="brand"
|
|
title="splunk > listen to your data">splunk<strong>></strong></a>
|
|
</div>
|
|
<div id="placeholder-app-bar"></div>
|
|
</div>
|
|
<a id="navSkip"></a>
|
|
</header>
|
|
<div class="dashboard-body container-fluid main-section-body">
|
|
<div class="dashboard-row" style="flex-grow: unset;">
|
|
<div class="dashboard-cell" style="display:none;" id="windows-container">
|
|
<div class="dashboard-panel">
|
|
<div class="dashboard-element">
|
|
<div class="panel-head">
|
|
<h1>Windows</h1>
|
|
</div>
|
|
<div class="panel-body">
|
|
<div class="launchpad icon-gauge-filler"> <a href="windows_operationsdashboard">Health</a>
|
|
</div>
|
|
<div class="launchpad icon-gauge-radial"> <a href="windows_performance">Resource Utilization</a>
|
|
</div>
|
|
<div class="launchpad icon-alert-circle"> <a href="windows_windowsupdate">Updates</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="dashboard-cell" style="display:none;" id="ad-container">
|
|
<div class="dashboard-panel">
|
|
<div class="dashboard-element">
|
|
<div class="panel-head">
|
|
<h1>Active Directory</h1>
|
|
</div>
|
|
<div class="panel-body">
|
|
<div class="launchpad icon-gauge-filler"> <a href="ad_ops_topology">Health</a>
|
|
</div>
|
|
<div class="launchpad icon-lock"> <a href="ad_sec_logon_fail">Security</a>
|
|
</div>
|
|
<div class="launchpad icon-two-arrows-cycle"> <a href="ad_chg_users">Change Management</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!--
|
|
END LAYOUT
|
|
-->
|
|
<script src="${make_url('/config?autoload=1')}"></script>
|
|
<script src="${make_url('/static/js/i18n.js')}"></script>
|
|
<script src="${make_url('/i18ncatalog?autoload=1')}"></script>
|
|
<script src="${make_url('/static/app/DA-ITSI-CP-windows-dashboards/js/common/contrib/require.js')}"></script>
|
|
|
|
<script type="text/javascript">
|
|
// <![CDATA[
|
|
require.config({
|
|
paths: {
|
|
"common": "${make_url('/static/app/DA-ITSI-CP-windows-dashboards/js/common')}",
|
|
"DA-ITSI-CP-windows-dashboards": "${make_url('/static/app/DA-ITSI-CP-windows-dashboards/js/DA-ITSI-CP-windows-dashboards')}",
|
|
"swc-windows-cp": "${make_url('/static/app/DA-ITSI-CP-windows-dashboards/js/swc-windows-cp')}",
|
|
},
|
|
waitSeconds: 0,
|
|
baseUrl: "${make_url('/static/app/DA-ITSI-CP-windows-dashboards/js/common/contrib')}",
|
|
urlArgs: "bust=897"
|
|
});
|
|
|
|
|
|
require([
|
|
'/static/app/DA-ITSI-CP-windows-dashboards/js/swc-windows-cp/index.js',
|
|
'/static/app/DA-ITSI-CP-windows-dashboards/js/common/contrib/jquery-3.5.0.min.js',
|
|
],
|
|
function(
|
|
index
|
|
) {
|
|
const LayoutView = index.LayoutView;
|
|
//
|
|
// SPLUNK HEADER AND FOOTER
|
|
//
|
|
|
|
$('header').remove();
|
|
new LayoutView({
|
|
"hideAppBar": false,
|
|
"hideAppsList": false,
|
|
"hideChrome": false,
|
|
"hideSplunkBar": false,
|
|
"hideFooter": false,
|
|
"layout": "scrolling"
|
|
},{ tokens: true }).render().getContainerElement()
|
|
.appendChild($('.dashboard-body')[0]);
|
|
|
|
var width = parseInt(100.0 / 2) + '%';
|
|
$('#windows-container').show();
|
|
$('#windows-container').css('width', width);
|
|
$('#ad-container').show();
|
|
$('#ad-container').css('width', width);
|
|
}
|
|
);
|
|
// ]]>
|
|
</script>
|
|
</body>
|
|
|
|
</html> |