Skip to content

Commit 746b130

Browse files
author
bibinbin
committed
修复不存在用户认证时,查询报错
1 parent f3afd74 commit 746b130

File tree

5 files changed

+56
-18
lines changed

5 files changed

+56
-18
lines changed

main/search/search.go

+26-8
Original file line numberDiff line numberDiff line change
@@ -194,8 +194,12 @@ func (se *Search) handleTemplate(w http.ResponseWriter, r *http.Request) {
194194
return
195195
}
196196
c := elastigo.NewConn()
197-
c.Username = u.User.Username()
198-
c.Password, _ = u.User.Password()
197+
if u.User != nil {
198+
c.Username = u.User.Username()
199+
if pwd, bool := u.User.Password(); bool {
200+
c.Password = pwd
201+
}
202+
}
199203
c.Domain = strings.Split(u.Host, ":")[0]
200204
c.Port = strings.Split(u.Host, ":")[1]
201205
c.DecayDuration = 0
@@ -316,8 +320,12 @@ func (se *Search) search(w http.ResponseWriter, r *http.Request) {
316320
return
317321
}
318322
c := elastigo.NewConn()
319-
c.Username = u.User.Username()
320-
c.Password, _ = u.User.Password()
323+
if u.User != nil {
324+
c.Username = u.User.Username()
325+
if pwd, bool := u.User.Password(); bool {
326+
c.Password = pwd
327+
}
328+
}
321329
c.Domain = strings.Split(u.Host, ":")[0]
322330
c.Port = strings.Split(u.Host, ":")[1]
323331
c.DecayDuration = 0
@@ -360,20 +368,26 @@ func (se *Search) uploadTemplate(w http.ResponseWriter, r *http.Request) {
360368
return
361369
}
362370
}
371+
363372
filename := strings.Split(handler.Filename, ".json")[0]
364373
data, err := ioutil.ReadAll(file)
365374
if err != nil {
366375
http.Error(w, err.Error(), 500)
367376
return
368377
}
378+
369379
u, err := url.Parse(r.FormValue(`serverhost`))
370380
if err != nil {
371381
w.Write(jsonEncode(1, map[string]interface{}{"info": err.Error()}))
372382
return
373383
}
374384
c := elastigo.NewConn()
375-
c.Username = u.User.Username()
376-
c.Password, _ = u.User.Password()
385+
if u.User != nil {
386+
c.Username = u.User.Username()
387+
if pwd, bool := u.User.Password(); bool {
388+
c.Password = pwd
389+
}
390+
}
377391
c.Domain = strings.Split(u.Host, ":")[0]
378392
c.Port = strings.Split(u.Host, ":")[1]
379393
c.DecayDuration = 0
@@ -414,8 +428,12 @@ func (se *Search) indexDelete(w http.ResponseWriter, r *http.Request) {
414428
return
415429
}
416430
c := elastigo.NewConn()
417-
c.Username = u.User.Username()
418-
c.Password, _ = u.User.Password()
431+
if u.User != nil {
432+
c.Username = u.User.Username()
433+
if pwd, bool := u.User.Password(); bool {
434+
c.Password = pwd
435+
}
436+
}
419437
c.Domain = strings.Split(u.Host, ":")[0]
420438
c.Port = strings.Split(u.Host, ":")[1]
421439
c.DecayDuration = 0

main/statik/statik.go

+1-1
Large diffs are not rendered by default.

src/components/mapping.vue

+3-2
Original file line numberDiff line numberDiff line change
@@ -145,10 +145,11 @@ export default {
145145
this.$store.dispatch('HandleIndexTemplate', tmp)
146146
},
147147
fileUploadError (file, error) {
148-
this.$message.error(file.name + ' 模板部署失败,请打开开发者模式查看错误信息提示')
148+
this.$message.error(error.name + ' 模板部署失败,请打开开发者模式查看错误信息提示')
149149
},
150150
fileUploadSuccess (file) {
151-
this.$message.success(file.name + '模板部署成功')
151+
console.log(file)
152+
this.$message.success(file.name + ' 模板部署成功')
152153
},
153154
handleChange (file, fileList) {
154155
this.fileList = fileList.slice(-3)

src/components/overview.vue

+23-6
Original file line numberDiff line numberDiff line change
@@ -237,6 +237,12 @@ export default {
237237
tooltip: {
238238
trigger: 'item',
239239
formatter: function (params) {
240+
if (params.name === 'CPU') {
241+
return 'CPU利用率: ' + charts.cpuused + '%'
242+
}
243+
if (params.name === 'CPUFree') {
244+
return 'CPU剩余利用率: ' + (100 - charts.cpuused) + '%'
245+
}
240246
if (params.name === 'Jvm') {
241247
return 'JVM已用内存: ' + b2b(params.value)
242248
}
@@ -268,7 +274,7 @@ export default {
268274
x: 'center',
269275
y: 'bottom',
270276
data: [
271-
'Jvm', 'Mem', 'Fs', 'FieldData', 'QueryCache'
277+
'Jvm', 'Mem', 'Fs', 'FieldData', 'QueryCache', 'CPU'
272278
]
273279
},
274280
title: {
@@ -279,7 +285,7 @@ export default {
279285
series: [
280286
{
281287
type: 'pie',
282-
center: ['13%', '50%'],
288+
center: ['7%', '50%'],
283289
radius: [40, 55],
284290
x: '0%',
285291
itemStyle: labelFromatter,
@@ -290,7 +296,7 @@ export default {
290296
},
291297
{
292298
type: 'pie',
293-
center: ['31%', '50%'],
299+
center: ['23%', '50%'],
294300
radius: [40, 55],
295301
x: '0%',
296302
itemStyle: labelFromatter,
@@ -301,7 +307,7 @@ export default {
301307
},
302308
{
303309
type: 'pie',
304-
center: ['49%', '50%'],
310+
center: ['39%', '50%'],
305311
radius: [40, 55],
306312
x: '0%',
307313
itemStyle: labelFromatter,
@@ -312,7 +318,7 @@ export default {
312318
},
313319
{
314320
type: 'pie',
315-
center: ['67%', '50%'],
321+
center: ['55%', '50%'],
316322
radius: [40, 55],
317323
x: '0%',
318324
itemStyle: labelFromatter,
@@ -323,14 +329,25 @@ export default {
323329
},
324330
{
325331
type: 'pie',
326-
center: ['85%', '50%'],
332+
center: ['71%', '50%'],
327333
radius: [40, 55],
328334
x: '0%',
329335
itemStyle: labelFromatter,
330336
data: [
331337
{name: 'QueryCache-mem', value: charts.memfree, itemStyle: labelBottom},
332338
{name: 'QueryCache', value: charts.query_cache_memory_size, itemStyle: labelTop}
333339
]
340+
},
341+
{
342+
type: 'pie',
343+
center: ['87%', '50%'],
344+
radius: [40, 55],
345+
x: '0%',
346+
itemStyle: labelFromatter,
347+
data: [
348+
{name: 'CPUFree', value: charts.cpufree, itemStyle: labelBottom},
349+
{name: 'CPU', value: charts.cpuused, itemStyle: labelTop}
350+
]
334351
}
335352
]
336353
}

src/store/modules/overviewx.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,9 @@ const overviewx = {
3838
fstotal: 0,
3939
fsfree: 0,
4040
fielddata_mem_used: 0,
41-
query_cache_memory_size: 0
41+
query_cache_memory_size: 0,
42+
cpufree: 100,
43+
cpuused: 0
4244
},
4345
templateInfo: {
4446
count: 0,

0 commit comments

Comments
 (0)