kongdeqiang
2023-05-11 d4e6ec0389dd8abbcce4ee4f9e5cdad1633491d5
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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
<!DOCTYPE html>
<html>
<head>
  <div  th:replace="common/header.html"></div>
 
 
</head>
<body th:class="${application.sidebarCollapse}">
<div th:replace="common/chart.html"></div>
 
<div class="wrapper">
 
  <div th:replace="common/navbar.html"></div>
 
  <div th:replace="common/aside.html"></div>
 
  <!-- Content Wrapper. Contains page content -->
  <div class="content-wrapper"  style="font-size:0.90rem">
    <!-- Content Header (Page header) -->
    <section class="content-header">
      <div class="container-fluid">
        <div class="row mb-2">
          <div class="col-sm-6">
            <h1></h1>
          </div>
            <div class="col-sm-6">
                <ol class="breadcrumb float-sm-right">
                    <li class="breadcrumb-item active"></li>
                </ol>
            </div>
        </div>
      </div><!-- /.container-fluid -->
    </section>
 
    <!-- Main content -->
    <section class="content">
      <div class="container-fluid">
        <div class="row">
 
  <div class="col-md-10">
    <div class="card card-primary">
      <div class="card-header">
        <h3 class="card-title">添加服务接口(响应状态码200即为成功)</h3>
          <div class=" float-sm-right">
              <a href="javascript:history.back()">返回</a>
          </div>
      </div>
      <!-- /.card-header -->
      <!-- form start -->
        <form role="form" id="form1" th:action="@{'/heathMonitor/save'}">
            <input type="hidden" name="id" th:value="${heathMonitor.id}"/>
            <div class="card-body">
                <div class="form-group">
                    <label><font color="red">*</font>服务接口名称</label>
                    <input type="text" autocomplete="off"  th:value="${heathMonitor.appName}" class="validate[required,maxSize[50]] form-control" name="appName" id="appName" placeholder="输入服务接口名称">
                </div>
                <div class="form-group">
                    <label><font color="red">*</font>服务接口URL<span class="text-muted">(URL需为http或https接口)</span></label>
                    <input type="text" autocomplete="off"  th:value="${heathMonitor.heathUrl}" class="validate[required,maxSize[255]] form-control" name="heathUrl" id="heathUrl" placeholder="如http://192.168.1.1:9999/tssw/heath">
                </div>
                <div class="form-group clearfix">
                    <label><font color="red">*</font>接口请求方式</label></br>
                    <th:block th:if="${#strings.isEmpty(heathMonitor.method)}" >
                        <div class="icheck-turquoise d-inline">
                            <input type="radio" onclick="hidePostStr()" id="radioPrimary2" name="method" value="GET" checked>
                            <label for="radioPrimary2"> GET </label>
                        </div>
                        <div class="icheck-wisteria d-inline" style="margin-left:10px;">
                            <input type="radio" onclick="showPostStr()" id="radioPrimary4" value="POST" name="method" >
                            <label for="radioPrimary4">POST</label>
                        </div>
                    </th:block>
                    <th:block th:if="${heathMonitor.method  == 'GET'}">
                        <div class="icheck-turquoise d-inline">
                            <input type="radio" onclick="hidePostStr()" id="radioPrimary2" name="method" value="GET" checked>
                            <label for="radioPrimary2"> GET </label>
                        </div>
                        <div class="icheck-wisteria d-inline" style="margin-left:10px;">
                            <input type="radio" onclick="showPostStr()" id="radioPrimary4" value="POST" name="method" >
                            <label for="radioPrimary4">POST</label>
                        </div>
                    </th:block>
                    <th:block th:if="${heathMonitor.method  == 'POST'}">
                        <div class="icheck-turquoise d-inline">
                            <input type="radio"  onclick="hidePostStr()" id="radioPrimary2" value="GET"  name="method" >
                            <label for="radioPrimary2"> GET </label>
                        </div>
                        <div class="icheck-wisteria d-inline" style="margin-left:10px;">
                            <input type="radio" onclick="showPostStr()" id="radioPrimary4" value="POST"  name="method" checked>
                            <label for="radioPrimary4">POST</label>
                        </div>
                    </th:block>
                </div>
                <div id="PostStrDiv" style="display: none" class="form-group">
                    <label><font color="red"></font>Header<span class="text-muted">(可以为空)</span></label>
                    <div class="form-group row">
                        <div class="col-1"><label class="col-form-label">Key:</label></div>
                        <div class="col-5"><input type="text" autocomplete="off"  th:value="${heathMonitor.headerKey}" class="validate[maxSize[50]] form-control" name="headerKey" id="headerKey" placeholder="key"></div>
                        <div class="col-1"><label class="col-form-label">&nbsp;Value:</label></div>
                        <div class="col-5"><input type="text" autocomplete="off"  th:value="${heathMonitor.headerValue}" class="validate[maxSize[300]] form-control" name="headerValue" id="headerValue" placeholder="value"></div>
                    </div>
                    <div class="form-group row">
                        <div class="col-1"><label class="col-form-label">Key:</label></div>
                        <div class="col-5"><input type="text" autocomplete="off"  th:value="${heathMonitor.headerKey2}" class="validate[maxSize[50]] form-control" name="headerKey2" id="headerKey2" placeholder="key"></div>
                        <div class="col-1"><label class="col-form-label">&nbsp;Value:</label></div>
                        <div class="col-5"><input type="text" autocomplete="off"  th:value="${heathMonitor.headerValue2}" class="validate[maxSize[300]] form-control" name="headerValue2" id="headerValue2" placeholder="value"></div>
                    </div>
                    <div class="form-group row">
                        <div class="col-1"><label class="col-form-label">Key:</label></div>
                        <div class="col-5"><input type="text" autocomplete="off"  th:value="${heathMonitor.headerKey3}" class="validate[maxSize[50]] form-control" name="headerKey3" id="headerKey3" placeholder="key"></div>
                        <div class="col-1"><label class="col-form-label">&nbsp;Value:</label></div>
                        <div class="col-5"><input type="text" autocomplete="off"  th:value="${heathMonitor.headerValue3}" class="validate[maxSize[300]] form-control" name="headerValue3" id="headerValue3" placeholder="value"></div>
                    </div>
                    <div class="form-group row">
                        <div class="col-1"><label class="col-form-label">Key:</label></div>
                        <div class="col-5"><input type="text" autocomplete="off"  th:value="${heathMonitor.headerKey4}" class="validate[maxSize[50]] form-control" name="headerKey4" id="headerKey4" placeholder="key"></div>
                        <div class="col-1"><label class="col-form-label">&nbsp;Value:</label></div>
                        <div class="col-5"><input type="text" autocomplete="off"  th:value="${heathMonitor.headerValue4}" class="validate[maxSize[300]] form-control" name="headerValue4" id="headerValue4" placeholder="value"></div>
                    </div>
                    <div class="form-group row">
                        <div class="col-1"><label class="col-form-label">Key:</label></div>
                        <div class="col-5"><input type="text" autocomplete="off"  th:value="${heathMonitor.headerKey5}" class="validate[maxSize[50]] form-control" name="headerKey5" id="headerKey5" placeholder="key"></div>
                        <div class="col-1"><label class="col-form-label">&nbsp;Value:</label></div>
                        <div class="col-5"><input type="text" autocomplete="off"  th:value="${heathMonitor.headerValue5}" class="validate[maxSize[300]] form-control" name="headerValue5" id="headerValue5" placeholder="value"></div>
                    </div>
                    <label><font color="red"></font>POST提交Body内容<span class="text-muted">(可以为空)</span></label>
                    <textarea class="validate[maxSize[2000]] form-control"   name="postStr" id="postStr"
                              th:text="${heathMonitor.postStr}"  rows="8" placeholder='{
"hostname":"192.168.1.2",
"page":1,
"pageSize":10
}'></textarea>
                </div>
                <div class="form-group">
                    <label><font color="red"></font>响应内容需包含的关键字<span class="text-muted">(含此关键字才判定接口正常,否则返回500错误,请尽量用字母数字标识)</span></label>
                    <input type="text" autocomplete="off"  th:value="${heathMonitor.resKeyword}" class="validate[maxSize[200]] form-control" name="resKeyword" id="resKeyword" placeholder="响应内容需包含的关键字,可以为空">
                </div>
                <div class="form-group">
                    <label><font color="red"></font>响应内容不能包含的关键字<span class="text-muted">(含此关键字则返回500错误,多个关键字用英文逗号隔开,请尽量用字母数字标识)</span></label>
                    <input type="text" autocomplete="off"  th:value="${heathMonitor.resNoKeyword}" class="validate[maxSize[200]] form-control" name="resNoKeyword" id="resNoKeyword" placeholder="响应内容不能包含的关键字,可以为空">
                </div>
                <div class="form-group clearfix">
                    <label><font color="red">*</font>监控状态</label></br>
                    <th:block th:if="${#strings.isEmpty(heathMonitor.active)}" >
                        <div class="icheck-primary d-inline">
                            <input type="radio" id="radioPrimary1" name="active" value="1" checked>
                            <label for="radioPrimary1"> 启用监控 </label>
                        </div>
                        <div class="icheck-danger d-inline">
                            <input type="radio" id="radioPrimary3" value="2" name="active" >
                            <label for="radioPrimary3">停止监控</label>
                        </div>
                    </th:block>
                    <th:block th:if="${heathMonitor.active  == '1'}">
                        <div class="icheck-primary d-inline">
                            <input type="radio" id="radioPrimary1" name="active" value="1" checked>
                            <label for="radioPrimary1"> 启用监控 </label>
                        </div>
                        <div class="icheck-danger d-inline">
                            <input type="radio" id="radioPrimary3" value="2" name="active" >
                            <label for="radioPrimary3">停止监控</label>
                        </div>
                    </th:block>
                    <th:block th:if="${heathMonitor.active  == '2'}">
                        <div class="icheck-primary d-inline">
                            <input type="radio" id="radioPrimary1" value="1"  name="active" >
                            <label for="radioPrimary1"> 启用监控 </label>
                        </div>
                        <div class="icheck-danger d-inline">
                            <input type="radio" id="radioPrimary3" value="2"  name="active" checked>
                            <label for="radioPrimary3">停止监控</label>
                        </div>
                    </th:block>
                </div>
            </div>
            <!-- /.card-body -->
 
            <div class="card-footer">
                <button type="submit" class="btn btn-primary btn-sm" style="margin-right:10px;">保 存</button>
                <button type="button"  th:onclick="goback()"  class="btn bg-gradient-danger btn-sm">返 回</button>
            </div>
 
        </form>
      <!-- /.card-body -->
    </div>
    <!-- /.card -->
 
 
  </div>
 
        </div>
      </div>
    </section>
  </div>
 
 
  <div th:replace="common/footer.html"></div>
 
</div>
<!-- ./wrapper -->
<link rel="stylesheet" th:href="@{'/static/js/jQuery/validationEngine.jquery.css'}" type="text/css"/>
<script th:src="@{'/static/js/jQuery/jquery.validationEngine-zh_CN.js'}" type="text/javascript" charset="utf-8"></script>
<script th:src="@{'/static/js/jQuery/jquery.validationEngine.js'}" type="text/javascript" charset="utf-8"></script>
<script th:src="@{'/static/js/heath.js'}"></script>
<script th:inline="javascript">
    $(document).ready(function(){
        $("#form1").validationEngine();
        var method = [[${heathMonitor.method}]];
        if("POST"==method){
            showPostStr();
        }
    });
    function goback() {
        history.back();
    }
</script>
</body>
</html>