1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
| function resource(count) {
| // const restServerBaseURL='http://71.3.21.232:8081';
| $.get(restServerBaseURL + '/log/action/analyseResource?count=' + (count != undefined ? count : 5),
| function (data) {
|
| // var map = JSON.parse(data);
| var map = data.actionTypes;
|
|
| resourceChart.setOption(option = {
| /* color: 'blue', */
| title: {
| show: false,
| text: '资源调用统计',
| left: '3%',
| textStyle: {
| color: '#73879a',
| fontSize: 25
| },
| },
|
| tooltip: {
| trigger: 'axis'
| },
| grid: {
| // left: '10%',
| // right: '5%',
| // bottom: '40%'
| // x:"-20",
| // y:"-20"
| },
| xAxis: {
|
| axisLabel: {
| rotate: 50,
| textStyle: {
| color: '#73879a',
| fontSize: 10
| },
| axisLine: {
| lineStyle: {
| color: '#73879a'
|
| }
| }
| },
| data: map.map(function (item) {
| return item.title;
| })
| },
| yAxis: {
| type: 'value',
| // max: 20,
| axisLabel: {
| textStyle: {
| color: '#73879a',
| fontSize: 14
| }
| }
| },
|
| series: {
| name: '资源调用次数',
| type: 'bar',
| data: map.map(function (item) {
| return item.count;
| }),
| markLine: {
| silent: true,
| lineStyle: {
| color: '#333'
| }
|
| }
| }
| });
| });
|
| // useractionchart.on("click", function (params) {
| // console.log("iframe 用户行为页面");
| // var frameSrc = "./useraction.html?username=" + $("#UserName").val();
| // $("#serverstatusiframe").attr("src", frameSrc);
| // $('#serverstatusModal').modal({
| // show: true,
| // backdrop: 'static'
| // });
| // })
|
| }
|
|