summaryrefslogtreecommitdiffstats
path: root/usecaseui-monitor/src/main/webapp/app/uui/fusion/scripts/view-models/performance-chart.html
blob: 9f9ccbb37a619fd64bacad92d91d96073890e1ad (plain)
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
<!--
    Copyright (C) 2017 CMCC, Inc. and others. All rights reserved.

    Licensed under the Apache License, Version 2.0 (the "License");
    you may not use this file except in compliance with the License.
    You may obtain a copy of the License at

            http://www.apache.org/licenses/LICENSE-2.0

    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
-->
<style>
        body {
            overflow-y:scroll;
        }
        text {
            font: 12px sans-serif;
        }
        svg {
            display: block;
        }
        #chart svg {
            height: 200px;
            width:  400px;
            min-width: 100px;
            min-height: 100px;
        }
        tr.z-row-over > td.z-row-inner, tr.z-row-over > .z-cell { background-color: rgb(255, 255, 255); }
        .nodatadiv {
            display: table-cell;
            width: 600px;
            height:300px;
            text-align:center;
            vertical-align: middle;
        }
        .nodatainner {
            padding: 10px;
        }
    </style>
        <!--/.navbar-collapse -->
        <div class="templatemo-content-wrapper">
            <div class="templatemo-content">
                <h1>Performance Chart</h1>
				   <div class="row" style="min-height: 500px" ng-controller="pertabCtrl">
                    <div class="col-md-12 col-sm-12">
                        <div class="row">
                            <div class="col-md-6">
                                <p class="input-group" style="float:left">
                                    <label style="float:left;width:80px;line-height:100px">startTime:</label>
									<div style="float:left;width:100px;padding-top:33px">
                                    <input type="text" class="form-control" readonly ng-change="startTimeChanged()" uib-datepicker-popup ng-click="open1()" ng-model="startTime" is-open="popup1.opened" datepicker-options ng-required="true" close-text="Close"  />
                                    </div>
									<div style="display:block;float:left" uib-timepicker ng-model="startTime" ng-change="startTimeChanged()" hour-step minute-step show-meridian></div>
                                </p>
                            </div>

                            <div class="col-md-6" style="float:left">
                                <p class="input-group" style="float:left">
                                    <label style="float:left;width:80px;line-height:100px">endTime:</label>
									<div style="float:left;width:100px;padding-top:33px;">
                                    <input type="text" class="form-control" readonly ng-change="endTimeChanged()" ng-click="open2()" uib-datepicker-popup ng-model="endTime" is-open="popup2.opened" datepicker-options ng-required="true" close-text="Close" />
                                    </div>
									<div style="display:block;float:left" uib-timepicker ng-model="endTime" ng-change="endTimeChanged()" hour-step minute-step show-meridian></div>
                                </p>
                            </div>
							<div class="col-md-6" style="width:100%;padding-bottom:20px;">
								<p>
									<div style="float:left;padding-right:30px;">
										<label style="float:left;width:80px;line-height:30px;">sourceId:</label>
										<div style="float:left;width:130px;">
										<select class="form-control" ng-change="sourceIdChanged()" ng-model="sourceId" ng-options="s for s in sourceIds" >
											<option value="">--- chose ---</option>
										</select>
										</div>
									</div>
									<div style="float:left;padding-right:30px" ng-show="namesPIsShow">
										<label style="float:left;width:50px;line-height:30px;">name:</label>
										<div style="float:left;width:130px;">
										<select class="form-control" ng-change="namePChanged()" ng-model="nameP" ng-options="np for np in namePs" >
											<option value="">--- chose ---</option>
										</select>
										</div>
									</div>
									<div style="float:left;padding-right:30px" ng-show="namesCIsShow" style="float:left">
										<label style="float:left;width:50px;line-height:30px;">name:</label>
										<div style="float:left;width:130px;">
										<select class="form-control" ng-model="nameC" ng-change="nameCChanged()" ng-options="nc for nc in nameCs" >
											<option value="">--- chose ---</option>
										</select>
										</div>
									</div>
									<div ng-show="goIsShow" style="float:left">
										<button style="padding-top:6px;" class="btn btn-default" ng-click="genDiagram()">Go</button>
									</div>
								</p>
							</div>
						
							<div class="col-md-12 col-sm-12" >
								<div class="panel panel-success">
									<div class="panel-heading">Chart
										<button ng-click="generateCsv('cpu');" class="btn btn-primary" style="float: right;margin-top:-7px;display: none ">CSV</button>
									</div>
									<div id="chart_performance"> <svg></svg> </div>
								</div>
							</div>
						</div>
                    </div>
                    <br />
                    <br />
                    <br />
                    <br />
                </div>
            </div>
        </div>