mirror of https://github.com/CIRCL/AIL-framework
				
				
				
			
		
			
				
	
	
		
			196 lines
		
	
	
		
			8.5 KiB
		
	
	
	
		
			HTML
		
	
	
			
		
		
	
	
			196 lines
		
	
	
		
			8.5 KiB
		
	
	
	
		
			HTML
		
	
	
<!DOCTYPE html>
 | 
						|
<html>
 | 
						|
 | 
						|
<head>
 | 
						|
  <meta charset="utf-8">
 | 
						|
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
 | 
						|
 | 
						|
  <title>Analysis Information Leak framework Dashboard</title>
 | 
						|
 | 
						|
  <!-- Core CSS -->
 | 
						|
  <link href="{{ url_for('static', filename='css/bootstrap.min.css') }}" rel="stylesheet">
 | 
						|
  <link href="{{ url_for('static', filename='font-awesome/css/font-awesome.css') }}" rel="stylesheet">
 | 
						|
  <link href="{{ url_for('static', filename='css/sb-admin-2.css') }}" rel="stylesheet">
 | 
						|
  <link href="{{ url_for('static', filename='css/dygraph_gallery.css') }}" rel="stylesheet" type="text/css" />
 | 
						|
  <link href="{{ url_for('static', filename='css/switch_checkbox.css') }}" rel="stylesheet" type="text/css" />
 | 
						|
  <!-- JS -->
 | 
						|
  <script type="text/javascript" src="{{ url_for('static', filename='js/dygraph-combined.js') }}"></script>
 | 
						|
  <script src="{{ url_for('static', filename='js/jquery.js') }}"></script>
 | 
						|
  <script src="{{ url_for('static', filename='js/jquery.flot.js') }}"></script>
 | 
						|
  <script src="{{ url_for('static', filename='js/jquery.flot.time.js') }}"></script>
 | 
						|
  <script>
 | 
						|
      window.default_minute = {{ default_minute }};
 | 
						|
      window.glob_tabvar = []; // Avoid undefined
 | 
						|
      window.threshold_stucked_module = {{ threshold_stucked_module }}
 | 
						|
      function update_values() {
 | 
						|
          $SCRIPT_ROOT = {{ request.script_root|tojson|safe }};
 | 
						|
          $.getJSON($SCRIPT_ROOT+"/_stuff",
 | 
						|
              function(data) {
 | 
						|
                  window.glob_tabvar = data;
 | 
						|
              });
 | 
						|
      };
 | 
						|
      update_values();
 | 
						|
  </script>
 | 
						|
 | 
						|
</head>
 | 
						|
<body>
 | 
						|
 | 
						|
    <div id="wrapper">
 | 
						|
      <nav class="navbar navbar-default navbar-static-top" role="navigation" style="margin-bottom: 0">
 | 
						|
          {% include 'header.html' %}
 | 
						|
          <!-- /.navbar-top-links -->
 | 
						|
          <div class="navbar-default sidebar" role="navigation">
 | 
						|
              <div class="sidebar-collapse">
 | 
						|
                  <ul class="nav" id="side-menu">
 | 
						|
                      <li class="sidebar-search">
 | 
						|
                          <a href="{{ url_for('dashboard.index') }}"><img src="{{ url_for('static', filename='image/AIL.png') }}" /></a>
 | 
						|
                          {% include 'searchbox.html' %}
 | 
						|
                          <!-- /input-group -->
 | 
						|
                      </li>
 | 
						|
                 </ul>
 | 
						|
                  <!-- /#side-menu -->
 | 
						|
              </div>
 | 
						|
              <!-- /.sidebar-collapse -->
 | 
						|
              <div class="panel panel-default">
 | 
						|
                  <div class="panel-heading">
 | 
						|
                      <i class="fa fa-dashboard  fa-fw"></i> Total pastes since {{ default_minute }} min
 | 
						|
                  </div>
 | 
						|
                  <div class="panel-body">
 | 
						|
                       <div id="global" style="height: 90px; padding: 0px; position: relative;"></div>
 | 
						|
                  </div>
 | 
						|
              </div>
 | 
						|
                  <!-- <div id="Graph_paste_num" style="height:90px; width:100%;"></div> -->
 | 
						|
              <div class='pull_right'>
 | 
						|
                  <label class="switch">
 | 
						|
                      <input id="button-toggle-queues" class="switch-input" type="checkbox" checked>
 | 
						|
                      <span class="switch-label" data-on="On" data-off="Off"></span>
 | 
						|
                      <span class="switch-handle"></span>
 | 
						|
                  </label>
 | 
						|
                  <strong style="top: 3px; position: relative;">Display queues</strong>
 | 
						|
              <div>
 | 
						|
              <div>
 | 
						|
                  <table id="queue-color-legend" class="table">
 | 
						|
                  <thead>
 | 
						|
                  </thead>
 | 
						|
                  <tbody>
 | 
						|
                      <tr><td class="legendColorBox" style="vertical-align: ; "><div style="border:1px solid #ccc;padding:1px"><div style="width:100%;height:0;border:5px solid #d0e9c6;overflow:hidden"></div></div></td><td> Working queues</td></tr>
 | 
						|
                      <tr><td class="legendColorBox" style="vertical-align: ;"><div style="border:1px solid #ccc;padding:1px"><div style="width:100%;height:0;border:5px solid #faf2cc;overflow:hidden"></div></div></td><td> Idling queues</td></tr>
 | 
						|
                      <tr><td class="legendColorBox" style="vertical-align: ;"><div style="border:1px solid #ccc;padding:1px"><div style="width:100%;height:0;border:5px solid #ebcccc;overflow:hidden"></div></div></td><td> Stuck queues</td></tr>
 | 
						|
                  </tbody>
 | 
						|
                  </table>
 | 
						|
              </div>
 | 
						|
              <div class="table-responsive", id="queueing" style="margin-top:10px; font-size: small;"></div>
 | 
						|
             <a  href="{{ url_for('dashboard.index') }}"><img src="{{ url_for('static', filename='image/AIL.png') }}" /></a>
 | 
						|
          </div>
 | 
						|
          <!-- /.navbar-static-side -->
 | 
						|
      </nav>
 | 
						|
        <div id="page-wrapper">
 | 
						|
        <div class="row">
 | 
						|
                <div class="col-lg-12">
 | 
						|
		</br>
 | 
						|
                </div>
 | 
						|
        </div>
 | 
						|
 | 
						|
            <div class="row">
 | 
						|
                 <div class="col-lg-6">
 | 
						|
                     <div class="panel panel-default">
 | 
						|
                        <div class="panel-heading">
 | 
						|
                           <i class="fa fa-bar-chart-o fa-fw"></i> Feeder(s) Monitor:
 | 
						|
                        </div>
 | 
						|
                        <div id="panelbody" class="panel-body" style="height:420px;">
 | 
						|
 | 
						|
                       <strong>Processed pastes</strong>
 | 
						|
                       <div id="Proc_feeder" style="height: 230px; padding: 0px; position: relative;"></div>
 | 
						|
                       <hr style="border-top: 2px solid #eee; margin-top: 7px; margin-bottom: 7px;">
 | 
						|
                       <strong>Filtered duplicated</strong>
 | 
						|
                       <div id="Dup_feeder" style="height: 100px; padding: 0px; position: relative;"></div>
 | 
						|
 | 
						|
                        </div>
 | 
						|
                     <!-- /.panel-body -->
 | 
						|
                     </div>
 | 
						|
                      <!-- /.panel -->
 | 
						|
                 </div>
 | 
						|
                 <!-- /.col-lg-6 -->
 | 
						|
                 <div class="col-lg-6">
 | 
						|
                     <div class="panel panel-default">
 | 
						|
                        <div class="panel-heading">
 | 
						|
                           <i class="fa fa-bar-chart-o fa-fw"></i> Queues Monitor
 | 
						|
                        </div>
 | 
						|
                        <div class="panel-body">
 | 
						|
                           <div class="row">
 | 
						|
                               <div class="col-lg-6" id="Graph" style="height:195px; width:88%;"></div>
 | 
						|
                               <div style="height:10px;"></div>
 | 
						|
                               <div class="col-lg-6" id="Graph2" style="height:195px; width:88%;"></div>
 | 
						|
                           </div>
 | 
						|
                        <!-- /.row -->
 | 
						|
                        </div>
 | 
						|
                     <!-- /.panel-body -->
 | 
						|
                     </div>
 | 
						|
                      <!-- /.panel -->
 | 
						|
                 </div>
 | 
						|
                 <!-- /.col-lg-6 -->
 | 
						|
        <div class="col-lg-12">
 | 
						|
        <div class="panel panel-default">
 | 
						|
        <div class="panel-heading">
 | 
						|
            <i class="fa fa-tasks fa-fw"></i> Logs
 | 
						|
            <div class="pull-right">
 | 
						|
                <label style="padding-bottom:2px;">
 | 
						|
		<select class="form-control input-sm" id="log_select">
 | 
						|
		<option value="10">10</option>
 | 
						|
		<option value="25">25</option>
 | 
						|
		<option value="50">50</option>
 | 
						|
		<option value="100">100</option>
 | 
						|
		</select>
 | 
						|
                </label>
 | 
						|
		<input id="checkbox_log_info" type="checkbox" value="info"> INFO
 | 
						|
		<input id="checkbox_log_warning" type="checkbox" value="warning" checked="true"> WARNING
 | 
						|
		<input id="checkbox_log_critical" type="checkbox" value="critical" checked="true"> CRITICAL
 | 
						|
 | 
						|
            </div>
 | 
						|
        </div>
 | 
						|
        <div class="panel-body">
 | 
						|
                    <div class="row">
 | 
						|
			    <div class="col-lg-12">
 | 
						|
				    <table class="table table-bordered table-hover table-striped" id="table_log">
 | 
						|
					<thead>
 | 
						|
						<tr>
 | 
						|
						<th>Time</th>
 | 
						|
						<th>Channel</th>
 | 
						|
						<th>Level</th>
 | 
						|
						<th>Script Name</th>
 | 
						|
						<th>Source</th>
 | 
						|
						<th>Date</th>
 | 
						|
						<th>Paste name</th>
 | 
						|
						<th>Message</th>
 | 
						|
						<th>Actions</th>
 | 
						|
						</tr>
 | 
						|
					</thead>
 | 
						|
					<tbody id="tab_body">
 | 
						|
					</tbody>
 | 
						|
			            </table>
 | 
						|
			    </div>
 | 
						|
                   </div>
 | 
						|
        </div>
 | 
						|
            <!-- /.row -->
 | 
						|
        </div>
 | 
						|
        <!-- /#page-wrapper -->
 | 
						|
 | 
						|
    </div>
 | 
						|
    <script> var url_showSavedPath = "{{ url_for('showsavedpastes.showsavedpaste') }}"; </script>
 | 
						|
    <script type="text/javascript" src="{{ url_for('static', filename='js/indexjavascript.js')}}"></script>
 | 
						|
 | 
						|
    <script>
 | 
						|
        activePage = "page-index";
 | 
						|
        $("#"+activePage).addClass("active");
 | 
						|
    </script>
 | 
						|
 | 
						|
    <script type="text/javascript">
 | 
						|
        initfunc( "{{ url_for('static', filename='csv/wordstrendingdata.csv') }}", {{ request.script_root|tojson|safe }} );
 | 
						|
    </script>
 | 
						|
 | 
						|
    <script src="{{ url_for('static', filename='js/bootstrap.min.js') }}"></script>
 | 
						|
 | 
						|
</body>
 | 
						|
 | 
						|
</html>
 |