Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
hcymysql authored Nov 28, 2019
1 parent e6fbda9 commit 0b216f3
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions show_graph.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
<?php

$ip = $_GET['ip'];
$dbname = $_GET['dbname'];
$port = $_GET['port'];

?>


<!DOCTYPE html>
<head>
<meta charset="utf-8">
<title>图形展示</title>
<script src="js/echarts.common.min.js"></script>
<script src="js/jquery-3.3.1.min.js"></script>
<script src="js/shine.js"></script>
</head>
<body style="height: 100%; margin: 0">
<div id="connect" style="height:400px"></div>
<?php include 'js/show_connect.php';?>
<div id="qps" style="height:400px"></div>
<?php include 'js/show_graph_qps.php';?>
<br><br>
<div id="index" style="height:400px"></div>
<?php include 'js/show_graph_index.php';?>
<br><br>
</body>
</html>

0 comments on commit 0b216f3

Please sign in to comment.