找回密码
 注册
查看: 20|回复: 2

elasticsearch安装kibana 组件

[复制链接]

1

主题

0

回帖

12

积分

管理员

积分
12
QQ
发表于 2024-11-1 17:06:08 | 显示全部楼层 |阅读模式
elasticsearch安装kibana 组件
0 l5 @# i8 t# m* j+ F  z. [  }, ~3 ~) x! R
3 N6 W8 E+ I7 A$ o
! y2 [. K* `/ ^
下载安装0 ?3 K$ i% y, S: e
官网下载地址,选择对应版本的elasticsearch和kibana:https://www.elastic.co/cn/downloads/past-releases#kibana: E0 a- i. g( z0 R: B
9 ?0 F2 L3 {, I! x0 \
' A- a# r4 e/ x/ k3 z( M
解压:* G) x% D8 n( k+ d
wget https://artifacts.elastic.co/dow ... linux-x86_64.tar.gz. `8 S" K# \; T# E, R
* N* }0 s: t/ U
[es@it-elassearch-1 elastic-cluster1]$ tar -zxvf kibana-8.15.3-linux-x86_64.tar.gz
1 g& I& ^* X/ k% }0 B: V- n
/ F1 c* c4 O0 h: h' r进入解压后的目录:
) Q- P+ U8 B- e( a) `/ s' ?[es@it-elassearch-1 elastic-cluster1]$ cd kibana-8.15.3/
/ ^, ?& f4 t' L! a4 K/ e% u! I' I+ @- u
修改kibana配置文件:9 L4 @7 a+ }! h6 @
编辑配置文件:[es@it-elassearch-1 kibana-8.15.3]$ vim config/kibana.yml * q! Z( U) e$ R% n: R, d3 u) r: [: E$ x

) ]/ ~3 O* O$ s1 E* J) b0 ?6 x6 a2 y- s0 c2 ~1 P, s/ r3 z
设置kibana的访问端口:server.port: 5601
; |% }9 x5 d$ ~) {& p, d: d主机所在的IP:server.host: ""9 B9 ~, @; `5 t  {8 o) s
指定连接Elasticsearch的连接地址:elasticsearch.hosts: ["http://IP:端口"]- R, Y- x- O$ R$ M, H- r9 F
* P* ]/ M# `( O; @
! q* L' {* x: l8 b) }1 q

  {1 S0 A6 x2 N6 W9 @, n6 A  _当前环境的配置信息如下:
" ]* U& t1 }- _1 W, E$ [0 q' H3 I( G7 b/ ^
[es@it-elassearch-1 kibana-8.15.3]$ egrep -v '^$|^#' config/kibana.yml ) m6 R9 X0 G6 s6 h1 V
server.port: 5601
! f/ @3 F% B6 Y$ o8 w/ Q: aserver.host: "0.0.0.0"
7 |* T' l: Y, \" Uelasticsearch.hosts: ["http://172.24.110.125:9200"]1 O1 G5 y- `/ K) j5 I4 S

# O3 K2 s# v  Q$ q
3 g/ a6 s3 S$ l" @  vserver.port: 5601
% l, ]+ r2 {% q3 h) f( f5 y0 Rserver.host: "0.0.0.0"
- C0 }2 N! C2 D! Rserver.name: "it-elassearch-1"
9 L- d* P  d, F4 d, V. k0 c, gelasticsearch.hosts: ["http://172.24.110.125:9200"]' M% c% v1 K" e" u3 s+ L

2 b1 X# u* ~7 V# }9 h' d1 j1 H# z5 _9 z* ]3 }. P; }
server.port: 5601
; C) @" z! m6 R- C! ]4 {3 Nserver.host: "0.0.0.0"
% Q9 C. v3 s" kelasticsearch.hosts: ["http://172.24.110.125:9200"]    ##和 elasticsearch 建立联系
6 x9 f( M( v0 f+ P1 `elasticsearch.username: "kibana"                  ### 需要添加用户
% m1 a5 \; W! }) }0 v7 zelasticsearch.password: "XXXXXXXXX"          ####添加密码
& _  f) _2 p! E7 W, _+ ~kibana.index: ".kibana"    ###在 elasticsearch 中添加.kibana 索引9 G$ P. P7 p0 ?; W  |5 L3 P

- M4 K: b" B8 l& k1 K% v最终:
0 [# Z' n/ A1 ^( c. I$ ^9 D: v0 K
4 X6 B/ ~/ t$ n  U* I* U5 Userver.port: 56018 i- [5 |; F+ V- Z, B3 F5 P
server.host: "0.0.0.0"0 [# |: z+ x7 x
server.name: "it-elassearch-1"
' e( o' d* G$ M- @/ x4 Felasticsearch.hosts: ["http://172.24.110.125:9200"]
0 W  O. X- O$ T: d2 w. O; `+ Ikibana.index: ".kibana"    8 [( {6 @) T' e% ]
elasticsearch.username: "kibana"
2 h& V7 {7 v! Q3 J2 F2 w) Delasticsearch.password: "xxxxx"2 e; O  B: D; T: _& g$ e9 K

% M" v7 W0 b) g( L8 C
, {. n! L& p! @& Z" N  \) V9 R8 Y启动:; e) \0 n! f. p  ~/ ~0 ^& P8 k

, f6 n" }- R1 z5 y% ], i[es@it-elassearch-1 kibana-8.15.3]$ bin/kibana --allow-root& }) {+ V: J! \4 L" n; r
' ?2 \- y! W2 u* c0 t
/ u# W8 _; [+ D( V7 ?  v
页面访问:
8 ~' _# r, }( V% Hhttp://172.24.110.125:5601/
% e/ Y9 t+ x8 P% I
! B5 b; f) L- A7 Y; g  i! z' o9 ~$ D' J+ u* y1 e) B

% A# M: r' \" _  v; Z7 j6 W* W& u: [8 R5 F3 N- Y9 K2 e4 Z& f3 r1 ]: ^6 |
/ ^0 s5 Q1 |" l$ d4 `

: A# t3 J* ^7 H7 y) M; o2 U% o# q; x& h- U6 o" e: z+ s; A* L! L

1

主题

0

回帖

12

积分

管理员

积分
12
QQ
 楼主| 发表于 2024-11-6 11:53:08 | 显示全部楼层
[root@it-elassearch-1 kibana-8.15.3]# bin/kibana --allow-root/ D  x  ^, c3 C: Z& M4 b
Kibana is currently running with legacy OpenSSL providers enabled! For details and instructions on how to disable see https://www.elastic.co/guide/en/ ... ssl-legacy-provider
. ~. G' |6 e$ l3 L% n- D. P& Y{"log.level":"info","@timestamp":"2024-11-06T03:53:04.520Z","log.logger":"elastic-apm-node","ecs.version":"8.10.0","agentVersion":"4.7.0","env":{"pid":30397,"proctitle":"bin/../node/glibc-217/bin/node","os":"linux 3.10.0-1160.24.1.el7.x86_64","arch":"x64","host":"it-elassearch-1","timezone":"UTC+0800","runtime":"Node.js v20.15.1"},"config":{"active":{"source":"start","value":true},"breakdownMetrics":{"source":"start","value":false},"captureBody":{"source":"start","value":"off","commonName":"capture_body"},"captureHeaders":{"source":"start","value":false},"centralConfig":{"source":"start","value":false},"contextPropagationOnly":{"source":"start","value":true},"environment":{"source":"start","value":"production"},"globalLabels":{"source":"start","value":[["kibana_uuid","6fbb62d2-79e8-4628-9260-b1b2b467192c"],["git_rev","3933429968aafb1ba31319fc38649d0f974044bf"]],"sourceValue":{"kibana_uuid":"6fbb62d2-79e8-4628-9260-b1b2b467192c","git_rev":"3933429968aafb1ba31319fc38649d0f974044bf"}},"logLevel":{"source":"default","value":"info","commonName":"log_level"},"metricsInterval":{"source":"start","value":120,"sourceValue":"120s"},"serverUrl":{"source":"start","value":"https://kibana-cloud-apm.apm.us-east-1.aws.found.io/","commonName":"server_url"},"transactionSampleRate":{"source":"start","value":0.1,"commonName":"transaction_sample_rate"},"captureSpanStackTraces":{"source":"start","sourceValue":false},"secretToken":{"source":"start","value":"[REDACTED]","commonName":"secret_token"},"serviceName":{"source":"start","value":"kibana","commonName":"service_name"},"serviceVersion":{"source":"start","value":"8.15.3","commonName":"service_version"}},"activationMethod":"require","message":"Elastic APM Node.js Agent v4.7.0"}; j7 S) b' p: `
Native global console methods have been overridden in production environment.- h9 ~1 ^% ]" t7 Y1 Z: o' j2 I1 W
[2024-11-06T11:53:06.213+08:00][INFO ][root] Kibana is starting* j/ u: u, x/ K3 E$ g! ?
[2024-11-06T11:53:06.296+08:00][INFO ][node] Kibana process configured with roles: [background_tasks, ui]3 w& Y3 D# z3 K4 n2 G
[2024-11-06T11:53:15.510+08:00][INFO ][plugins-service] The following plugins are disabled: "cloudChat,cloudExperiments,cloudFullStory,profilingDataAccess,profiling,securitySolutionServerless,serverless,serverlessObservability,serverlessSearch".. v' C! Z8 N: O1 M
[2024-11-06T11:53:15.633+08:00][INFO ][http.server.Preboot] http server running at http://0.0.0.0:5601
( M' P# r: R$ o5 y' V[2024-11-06T11:53:15.825+08:00][INFO ][plugins-system.preboot] Setting up [1] plugins: [interactiveSetup]
( C" P' e6 ~) e. ][2024-11-06T11:53:15.884+08:00][WARN ][config.deprecation] Kibana is configured to authenticate to Elasticsearch with the "kibana" user. Use a service account token instead.
- F4 T2 a/ O! j5 Y[2024-11-06T11:53:15.885+08:00][WARN ][config.deprecation] The default mechanism for Reporting privileges will work differently in future versions, which will affect the behavior of this cluster. Set "xpack.reporting.roles.enabled" to "false" to adopt the future behavior before upgrading.
( f: U# b4 i5 ?; o% a/ @0 B# q+ T2 ~[2024-11-06T11:53:16.208+08:00][INFO ][plugins-system.standard] Setting up [166] plugins: [devTools,translations,share,searchConnectors,screenshotMode,usageCollection,telemetryCollectionManager,telemetryCollectionXpack,taskManager,kibanaUsageCollection,cloud,newsfeed,savedObjectsFinder,noDataPage,monitoringCollection,licensing,mapsEms,globalSearch,globalSearchProviders,features,guidedOnboarding,banners,licenseApiGuard,customBranding,ftrApis,fieldsMetadata,fieldFormats,expressions,screenshotting,esUiShared,customIntegrations,contentManagement,dataViews,home,searchprofiler,painlessLab,management,spaces,security,telemetry,licenseManagement,snapshotRestore,lists,files,encryptedSavedObjects,entityManager,eventLog,actions,observabilityAIAssistant,investigate,notifications,cloudDataMigration,aiAssistantManagementSelection,advancedSettings,grokdebugger,console,searchNotebooks,searchHomepage,bfetch,data,savedObjectsTagging,savedObjectsManagement,unifiedSearch,navigation,graph,embeddable,uiActionsEnhanced,savedSearch,presentationUtil,expressionShape,expressionRevealImage,expressionRepeatImage,expressionMetric,expressionImage,controls,alerting,logsDataAccess,fileUpload,ingestPipelines,ecsDataQualityDashboard,dataViewFieldEditor,dataViewManagement,charts,watcher,visualizations,visTypeXy,visTypeVislib,visTypeVega,visTypeTimeseries,visTypeTimelion,visTypeTagcloud,visTypeTable,visTypeMetric,visTypeMarkdown,visTypeHeatmap,inputControlVis,expressionTagcloud,expressionPartitionVis,visTypePie,expressionMetricVis,expressionLegacyMetricVis,expressionHeatmap,expressionGauge,visTypeGauge,eventAnnotation,expressionXY,lens,maps,dataVisualizer,dashboard,triggersActionsUi,transform,stackConnectors,searchPlayground,integrationAssistant,stackAlerts,ruleRegistry,cases,timelines,sessionView,kubernetesSecurity,threatIntelligence,metricsDataAccess,logsShared,aiops,discover,reporting,canvas,ml,searchInferenceEndpoints,elasticAssistant,logsExplorer,fleet,osquery,indexManagement,textBasedLanguages,rollup,remoteClusters,crossClusterReplication,indexLifecycleManagement,enterpriseSearch,observabilityAiAssistantManagement,datasetQuality,dataQuality,cloudSecurityPosture,cloudDefend,securitySolution,securitySolutionEss,observability,uptime,synthetics,slo,observabilityLogsExplorer,observabilityOnboarding,observabilityAIAssistantApp,discoverEnhanced,links,dashboardEnhanced,apmDataAccess,infra,upgradeAssistant,monitoring,logstash,apm,ux,assetsDataAccess]
, M4 _5 A+ ?& V[2024-11-06T11:53:16.664+08:00][INFO ][plugins.taskManager] TaskManager is identified by the Kibana UUID: 6fbb62d2-79e8-4628-9260-b1b2b467192c
' e* v0 o2 {2 H3 j[2024-11-06T11:53:17.258+08:00][INFO ][custom-branding-service] CustomBrandingService registering plugin: customBranding/ w% a/ a( ^& D; X/ @5 X1 v
[2024-11-06T11:53:18.053+08:00][WARN ][plugins.screenshotting.config] Chromium sandbox provides an additional layer of protection, but is not supported for Linux CentOS 7.9.2009 OS. Automatically setting 'xpack.screenshotting.browser.chromium.disableSandbox: true'.6 p, Q9 t4 W( k7 ~0 t& f/ s6 a: B
[2024-11-06T11:53:18.486+08:00][WARN ][plugins.security.config] Generating a random key for xpack.security.encryptionKey. To prevent sessions from being invalidated on restart, please set xpack.security.encryptionKey in the kibana.yml or use the bin/kibana-encryption-keys command.; O  }4 z' p; j# G
[2024-11-06T11:53:18.487+08:00][WARN ][plugins.security.config] Session cookies will be transmitted over insecure connections. This is not recommended.
) d+ E1 m7 r( v. h+ i[2024-11-06T11:53:18.523+08:00][WARN ][plugins.security.config] Generating a random key for xpack.security.encryptionKey. To prevent sessions from being invalidated on restart, please set xpack.security.encryptionKey in the kibana.yml or use the bin/kibana-encryption-keys command.; `- m+ m3 h" E+ \: `
[2024-11-06T11:53:18.524+08:00][WARN ][plugins.security.config] Session cookies will be transmitted over insecure connections. This is not recommended.( T8 P  j* W5 A
[2024-11-06T11:53:18.719+08:00][WARN ][plugins.encryptedSavedObjects] Saved objects encryption key is not set. This will severely limit Kibana functionality. Please set xpack.encryptedSavedObjects.encryptionKey in the kibana.yml or use the bin/kibana-encryption-keys command.: L8 m( Q( A2 u  S$ n0 @
[2024-11-06T11:53:18.839+08:00][WARN ][plugins.actions] APIs are disabled because the Encrypted Saved Objects plugin is missing encryption key. Please set xpack.encryptedSavedObjects.encryptionKey in the kibana.yml or use the bin/kibana-encryption-keys command.: j' b  [2 h) h: L7 i, \0 j8 H3 f
[2024-11-06T11:53:19.017+08:00][INFO ][plugins.notifications] Email Service Error: Email connector not specified.' t4 w* p* p+ Y& N" b3 r! {
[2024-11-06T11:53:19.449+08:00][WARN ][plugins.alerting] APIs are disabled because the Encrypted Saved Objects plugin is missing encryption key. Please set xpack.encryptedSavedObjects.encryptionKey in the kibana.yml or use the bin/kibana-encryption-keys command.! y/ @7 }: I, S, ^% P5 k6 o
[2024-11-06T11:53:19.450+08:00][INFO ][plugins.alerting] using indexes and aliases for persisting alerts
2 _0 E% r6 c  {" O7 i1 z# B. T* _[2024-11-06T11:53:21.722+08:00][WARN ][plugins.reporting.config] Generating a random key for xpack.reporting.encryptionKey. To prevent sessions from being invalidated on restart, please set xpack.reporting.encryptionKey in the kibana.yml or use the bin/kibana-encryption-keys command.% p2 [8 E1 @4 V( ?: o; C' C) W
[2024-11-06T11:53:23.565+08:00][INFO ][plugins.cloudSecurityPosture] Registered task successfully [Task: cloud_security_posture-stats_task]6 `4 ^7 B  n  o2 ^4 }1 F
[2024-11-06T11:53:25.328+08:00][INFO ][plugins.securitySolution.endpoint:user-artifact-packager:1.0.0] Registering endpoint:user-artifact-packager task with timeout of [20m], interval of [60s] and policy update batch size of [25]
% F+ L! @. [, C2 D3 ?, J[2024-11-06T11:53:25.329+08:00][INFO ][plugins.securitySolution.endpoint:complete-external-response-actions] Registering task [endpoint:complete-external-response-actions] with timeout of [5m] and run interval of [60s]
6 z6 D- |7 h+ A[2024-11-06T11:53:27.231+08:00][INFO ][elasticsearch-service] Successfully connected to Elasticsearch after waiting for 63 milliseconds7 b  J# k' u; T; H) j
[2024-11-06T11:53:27.342+08:00][INFO ][savedobjects-service] Waiting until all Elasticsearch nodes are compatible with Kibana before starting saved objects migrations...# y7 L5 A4 O  M  ]
[2024-11-06T11:53:27.343+08:00][INFO ][savedobjects-service] Starting saved objects migrations
! e* D  Z* G1 Z: D5 i[2024-11-06T11:53:27.431+08:00][INFO ][savedobjects-service] [.kibana_alerting_cases] INIT -> CREATE_NEW_TARGET. took: 36ms.
4 }5 l; K6 B3 G' b# x  ~2 |[2024-11-06T11:53:27.437+08:00][INFO ][savedobjects-service] [.kibana_analytics] INIT -> CREATE_NEW_TARGET. took: 51ms.' P. T2 _& d* `) a: p
[2024-11-06T11:53:27.440+08:00][INFO ][savedobjects-service] [.kibana] INIT -> CREATE_NEW_TARGET. took: 63ms.
/ K  B8 y) K* m! l  E9 _) z[2024-11-06T11:53:27.444+08:00][INFO ][savedobjects-service] [.kibana_task_manager] INIT -> CREATE_NEW_TARGET. took: 62ms./ b9 Q* G- e4 h4 z7 E6 N
[2024-11-06T11:53:27.447+08:00][INFO ][savedobjects-service] [.kibana_security_solution] INIT -> CREATE_NEW_TARGET. took: 56ms.& {& S- a1 b& a. p; F
[2024-11-06T11:53:27.450+08:00][INFO ][savedobjects-service] [.kibana_ingest] INIT -> CREATE_NEW_TARGET. took: 51ms.
; r' F' p# [* E! f& D2 J[2024-11-06T11:53:29.106+08:00][INFO ][savedobjects-service] [.kibana_alerting_cases] CREATE_NEW_TARGET -> CHECK_VERSION_INDEX_READY_ACTIONS. took: 1675ms.2 d- X( ?/ T; x/ ?1 x7 V
[2024-11-06T11:53:29.106+08:00][INFO ][savedobjects-service] [.kibana_alerting_cases] CHECK_VERSION_INDEX_READY_ACTIONS -> MARK_VERSION_INDEX_READY. took: 0ms.& `5 |$ E$ x6 f  K. \- H* y) h
[2024-11-06T11:53:29.110+08:00][INFO ][savedobjects-service] [.kibana_analytics] CREATE_NEW_TARGET -> CHECK_VERSION_INDEX_READY_ACTIONS. took: 1673ms.$ \' ]" h3 N; J+ R2 F. ~
[2024-11-06T11:53:29.110+08:00][INFO ][savedobjects-service] [.kibana_analytics] CHECK_VERSION_INDEX_READY_ACTIONS -> MARK_VERSION_INDEX_READY. took: 0ms.4 M: z; }; X" x! k9 v0 q" Y
[2024-11-06T11:53:29.113+08:00][INFO ][savedobjects-service] [.kibana_security_solution] CREATE_NEW_TARGET -> CHECK_VERSION_INDEX_READY_ACTIONS. took: 1666ms.) u+ ^8 t5 M0 s' R1 J& ?
[2024-11-06T11:53:29.113+08:00][INFO ][savedobjects-service] [.kibana_security_solution] CHECK_VERSION_INDEX_READY_ACTIONS -> MARK_VERSION_INDEX_READY. took: 0ms.
+ R$ w% N" y! G/ X[2024-11-06T11:53:29.115+08:00][INFO ][savedobjects-service] [.kibana] CREATE_NEW_TARGET -> CHECK_VERSION_INDEX_READY_ACTIONS. took: 1675ms.
1 ]/ b* f  S1 e5 H9 {[2024-11-06T11:53:29.116+08:00][INFO ][savedobjects-service] [.kibana] CHECK_VERSION_INDEX_READY_ACTIONS -> MARK_VERSION_INDEX_READY. took: 1ms.
2 h1 S+ S  x" ][2024-11-06T11:53:29.350+08:00][INFO ][plugins.screenshotting.chromium] Browser executable: /data/elasticsearch/elastic-cluster1/kibana-8.15.3/node_modules/@kbn/screenshotting-plugin/chromium/headless_shell-linux_x64/headless_shell+ e9 G9 e6 ]8 y& e! T" R$ o
[2024-11-06T11:53:29.476+08:00][INFO ][savedobjects-service] [.kibana_analytics] MARK_VERSION_INDEX_READY -> DONE. took: 366ms.
7 C9 x5 c8 T9 `- z0 C! ^0 T[2024-11-06T11:53:29.477+08:00][INFO ][savedobjects-service] [.kibana_analytics] Migration completed after 2091ms
9 y& w; c  w* j" _$ a[2024-11-06T11:53:29.478+08:00][INFO ][savedobjects-service] [.kibana_alerting_cases] MARK_VERSION_INDEX_READY -> DONE. took: 372ms./ x! w8 C( p5 F9 a
[2024-11-06T11:53:29.478+08:00][INFO ][savedobjects-service] [.kibana_alerting_cases] Migration completed after 2083ms
) e9 R2 J+ R9 d, n( U5 q1 g[2024-11-06T11:53:29.479+08:00][INFO ][savedobjects-service] [.kibana_security_solution] MARK_VERSION_INDEX_READY -> DONE. took: 366ms.
3 B: c0 i$ v6 J# v6 P: D[2024-11-06T11:53:29.479+08:00][INFO ][savedobjects-service] [.kibana_security_solution] Migration completed after 2088ms
! M2 c; h! q8 L[2024-11-06T11:53:29.480+08:00][INFO ][savedobjects-service] [.kibana] MARK_VERSION_INDEX_READY -> DONE. took: 364ms.
: P) y* v9 l7 d" q( j7 {[2024-11-06T11:53:29.480+08:00][INFO ][savedobjects-service] [.kibana] Migration completed after 2103ms
) y* ?+ J' _: h2 i[2024-11-06T11:53:29.600+08:00][INFO ][savedobjects-service] [.kibana_ingest] CREATE_NEW_TARGET -> CHECK_VERSION_INDEX_READY_ACTIONS. took: 2150ms.
: k  O9 z$ {" U+ R' v[2024-11-06T11:53:29.600+08:00][INFO ][savedobjects-service] [.kibana_ingest] CHECK_VERSION_INDEX_READY_ACTIONS -> MARK_VERSION_INDEX_READY. took: 0ms.: R5 G3 h2 X1 T
[2024-11-06T11:53:29.602+08:00][INFO ][savedobjects-service] [.kibana_task_manager] CREATE_NEW_TARGET -> CHECK_VERSION_INDEX_READY_ACTIONS. took: 2158ms.- g2 r* ?  ^. W3 Q
[2024-11-06T11:53:29.603+08:00][INFO ][savedobjects-service] [.kibana_task_manager] CHECK_VERSION_INDEX_READY_ACTIONS -> MARK_VERSION_INDEX_READY. took: 1ms.
; u1 m1 l, Y: n8 o/ A. A[2024-11-06T11:53:29.709+08:00][INFO ][savedobjects-service] [.kibana_ingest] MARK_VERSION_INDEX_READY -> DONE. took: 109ms.
6 I! o. t, i1 u! Z[2024-11-06T11:53:29.710+08:00][INFO ][savedobjects-service] [.kibana_ingest] Migration completed after 2311ms
8 s0 b( R3 S5 N+ s* X3 a[2024-11-06T11:53:29.794+08:00][INFO ][savedobjects-service] [.kibana_task_manager] MARK_VERSION_INDEX_READY -> DONE. took: 191ms.
+ p  ~) X7 J& ^6 f[2024-11-06T11:53:29.795+08:00][INFO ][savedobjects-service] [.kibana_task_manager] Migration completed after 2413ms
' x2 J1 w/ [7 i: x4 q( o1 @; C, P  S[2024-11-06T11:53:29.806+08:00][INFO ][status.core.elasticsearch] elasticsearch service is now available: You're running Kibana 8.15.3 with some different versions of Elasticsearch. Update Kibana or Elasticsearch to the same version to prevent compatibility issues: v8.15.0 @ 172.24.110.125:9200 (172.24.110.125)
' N( o, ]6 ]. n4 _* @* [4 j1 ?- h[2024-11-06T11:53:29.807+08:00][INFO ][status.core.savedObjects] savedObjects service is now available: SavedObjects service has completed migrations and is available
1 _; S: M1 v; O! b- X- E9 S[2024-11-06T11:53:29.808+08:00][INFO ][plugins-system.preboot] Stopping all plugins.
  e* Y3 h( Y) {" O[2024-11-06T11:53:29.809+08:00][INFO ][plugins-system.preboot] All plugins stopped.* Z' h: S  ]2 Y5 p: q1 Y! _
[2024-11-06T11:53:29.810+08:00][INFO ][plugins-system.standard] Starting [166] plugins: [devTools,translations,share,searchConnectors,screenshotMode,usageCollection,telemetryCollectionManager,telemetryCollectionXpack,taskManager,kibanaUsageCollection,cloud,newsfeed,savedObjectsFinder,noDataPage,monitoringCollection,licensing,mapsEms,globalSearch,globalSearchProviders,features,guidedOnboarding,banners,licenseApiGuard,customBranding,ftrApis,fieldsMetadata,fieldFormats,expressions,screenshotting,esUiShared,customIntegrations,contentManagement,dataViews,home,searchprofiler,painlessLab,management,spaces,security,telemetry,licenseManagement,snapshotRestore,lists,files,encryptedSavedObjects,entityManager,eventLog,actions,observabilityAIAssistant,investigate,notifications,cloudDataMigration,aiAssistantManagementSelection,advancedSettings,grokdebugger,console,searchNotebooks,searchHomepage,bfetch,data,savedObjectsTagging,savedObjectsManagement,unifiedSearch,navigation,graph,embeddable,uiActionsEnhanced,savedSearch,presentationUtil,expressionShape,expressionRevealImage,expressionRepeatImage,expressionMetric,expressionImage,controls,alerting,logsDataAccess,fileUpload,ingestPipelines,ecsDataQualityDashboard,dataViewFieldEditor,dataViewManagement,charts,watcher,visualizations,visTypeXy,visTypeVislib,visTypeVega,visTypeTimeseries,visTypeTimelion,visTypeTagcloud,visTypeTable,visTypeMetric,visTypeMarkdown,visTypeHeatmap,inputControlVis,expressionTagcloud,expressionPartitionVis,visTypePie,expressionMetricVis,expressionLegacyMetricVis,expressionHeatmap,expressionGauge,visTypeGauge,eventAnnotation,expressionXY,lens,maps,dataVisualizer,dashboard,triggersActionsUi,transform,stackConnectors,searchPlayground,integrationAssistant,stackAlerts,ruleRegistry,cases,timelines,sessionView,kubernetesSecurity,threatIntelligence,metricsDataAccess,logsShared,aiops,discover,reporting,canvas,ml,searchInferenceEndpoints,elasticAssistant,logsExplorer,fleet,osquery,indexManagement,textBasedLanguages,rollup,remoteClusters,crossClusterReplication,indexLifecycleManagement,enterpriseSearch,observabilityAiAssistantManagement,datasetQuality,dataQuality,cloudSecurityPosture,cloudDefend,securitySolution,securitySolutionEss,observability,uptime,synthetics,slo,observabilityLogsExplorer,observabilityOnboarding,observabilityAIAssistantApp,discoverEnhanced,links,dashboardEnhanced,apmDataAccess,infra,upgradeAssistant,monitoring,logstash,apm,ux,assetsDataAccess]
+ ~, H4 y: ]3 q4 k8 ^[2024-11-06T11:53:29.820+08:00][INFO ][plugins.taskManager.taskClaiming] using task claiming strategy: default  }6 l: P- x% {2 x
[2024-11-06T11:53:31.124+08:00][INFO ][plugins.fleet] Task Fleet-Usage-Sender-1.1.6 scheduled with interval 1h* y1 y. W( z3 T1 k4 ?1 Z8 t
[2024-11-06T11:53:31.125+08:00][INFO ][plugins.fleet.fleet:check-deleted-files-task:1.0.1] Started with interval of [1d] and timeout of [2m]$ v. q: ~4 f% A
[2024-11-06T11:53:31.126+08:00][INFO ][plugins.fleet] Task Fleet-Metrics-Task:1.1.1 scheduled with interval 1m7 Q1 V3 c3 r" I3 M: ~7 V
[2024-11-06T11:53:31.161+08:00][INFO ][plugins.infra] Skipping initialization of Profiling endpoints because 'profilingDataAccess' plugin is not available6 Q( c/ J4 Q  A, ^7 I  |
[2024-11-06T11:53:31.166+08:00][INFO ][plugins.monitoring.monitoring] config sourced from: production cluster% x  L7 j+ A( o) x8 L2 W
[2024-11-06T11:53:31.212+08:00][INFO ][plugins.slo] Installing SLO shared resources
( Z, f5 G" {. [3 E: a+ Q! ?% T7 z[2024-11-06T11:53:31.248+08:00][INFO ][plugins.ecsDataQualityDashboard] Installing component template .kibana-data-quality-dashboard-ecs-mappings
: t) y* O, o3 {5 L1 [[2024-11-06T11:53:31.251+08:00][INFO ][plugins.ecsDataQualityDashboard] Installing component template .kibana-data-quality-dashboard-results-mappings
8 O7 ^: S" h( [) u+ a[2024-11-06T11:53:31.267+08:00][INFO ][plugins.elasticAssistant.service] Installing component template .kibana-elastic-ai-assistant-component-template-conversations
( z/ w- g" S1 P1 x3 @8 k[2024-11-06T11:53:34.251+08:00][INFO ][http.server.Kibana] http server running at http://0.0.0.0:5601
& p+ V; W  N. j[2024-11-06T11:53:34.271+08:00][INFO ][plugins.entityManager] Entity manager component template is up to date (use debug logging to see what was installed)$ K) A2 Y' R& _0 {0 W
[2024-11-06T11:53:34.272+08:00][INFO ][plugins.entityManager] Entity manager component template is up to date (use debug logging to see what was installed)
4 t2 Y& e8 O9 Q# q- b2 D# S. S5 ][2024-11-06T11:53:34.275+08:00][INFO ][plugins.entityManager] Entity manager component template is up to date (use debug logging to see what was installed)( M# `! N6 m; h  f* @! U3 i$ p
[2024-11-06T11:53:34.276+08:00][INFO ][plugins.entityManager] Entity manager component template is up to date (use debug logging to see what was installed)
) P9 `) |$ o# i& ]( {3 H[2024-11-06T11:53:34.314+08:00][INFO ][plugins.slo] Installing SLO component template [.slo-observability.summary-settings]3 T/ d# b* b5 B
[2024-11-06T11:53:34.333+08:00][INFO ][plugins.slo] Installing SLO component template [.slo-observability.summary-mappings]
1 s( [" E+ Z2 Q8 m% A[2024-11-06T11:53:34.390+08:00][INFO ][plugins.slo] Installing SLO component template [.slo-observability.sli-settings]+ A1 v. C* m. s, v2 y$ z
[2024-11-06T11:53:34.419+08:00][INFO ][status.plugins.alerting] alerting plugin is now available: Alerting is (probably) ready* J+ M- g% e- @6 Y$ \- s6 W/ O! E
[2024-11-06T11:53:34.420+08:00][INFO ][status.plugins.fleet] fleet plugin is now available: Fleet is setting up& X% t3 a. L# y1 q
[2024-11-06T11:53:34.420+08:00][WARN ][status.plugins.taskManager] taskManager plugin is now degraded: Task Manager is unhealthy - Reason: setting HealthStatus.Error because of expired cold timestamps: w3 C* v0 R! a* f' o: B
[2024-11-06T11:53:34.420+08:00][INFO ][status.plugins.licensing] licensing plugin is now available: License fetched4 r+ K1 P2 O: F& b& H
[2024-11-06T11:53:34.517+08:00][INFO ][plugins.fleet.endpoint.agentPolicyLicenseWatch] Checking agent policies for compliance with the current license.& I, v8 A6 C1 V, J. {' q" d- N
[2024-11-06T11:53:34.519+08:00][INFO ][plugins.monitoring.monitoring.kibana-monitoring] Starting monitoring stats collection4 }# Z! X. \# J' ~) f
[2024-11-06T11:53:34.529+08:00][WARN ][status] Kibana is now degraded: 0 service(s) and 1 plugin(s) are degraded: taskManager) n! \; X* O, V  ^
[2024-11-06T11:53:34.532+08:00][INFO ][plugins.slo] Installing SLO component template [.slo-observability.sli-mappings]
1 ^3 C* m0 R- ?% O6 u3 F. L6 Q[2024-11-06T11:53:34.956+08:00][INFO ][plugins.telemetry] Telemetry collection is enabled. For more information on telemetry settings, refer to https://www.elastic.co/guide/en/ ... -settings-kbn.html.
# |! d  d& o5 L# q[2024-11-06T11:53:35.049+08:00][INFO ][plugins.reporting.store] Creating ILM policy for reporting data stream: kibana-reporting
( W& q  c: e1 ~+ B  b# r1 q[2024-11-06T11:53:35.168+08:00][INFO ][plugins.eventLog] Installing index template .kibana-event-log-template
2 L: [5 ^5 c- ?. I0 L[2024-11-06T11:53:35.290+08:00][INFO ][plugins.fleet] Task Fleet-Usage-Logger-Task scheduled with interval 15m
$ q- x0 A# p7 L$ y! u) B) g[2024-11-06T11:53:35.344+08:00][INFO ][plugins.fleet.endpoint.agentPolicyLicenseWatch] All agent policies are compliant, nothing to do!0 w4 B/ V0 ~. D8 C, H! Y/ Z, d
[2024-11-06T11:53:35.400+08:00][INFO ][plugins.fleet] Beginning fleet setup) q" p3 `/ n7 m3 V
[2024-11-06T11:53:35.401+08:00][INFO ][plugins.fleet] Cleaning old indices( {) d  l1 c2 R4 f
[2024-11-06T11:53:35.522+08:00][INFO ][plugins.entityManager] Entity manager index template is up to date (use debug logging to see what was installed)
) ^2 q, E8 Q/ S# E( O' @7 O% F% P3 Y[2024-11-06T11:53:35.528+08:00][INFO ][plugins.elasticAssistant.service] Installing index template .kibana-elastic-ai-assistant-index-template-conversations4 q4 v& J+ R3 ?! {$ `
[2024-11-06T11:53:35.532+08:00][INFO ][plugins.ecsDataQualityDashboard] Installing index template .kibana-data-quality-dashboard-results-index-template
4 l* V" B/ o, c- T8 X) l[2024-11-06T11:53:35.737+08:00][INFO ][plugins.slo] Installing SLO index template [.slo-observability.sli]: \5 z5 ^; E; I- g
[2024-11-06T11:53:38.445+08:00][WARN ][plugins.taskManager] Task Manager is unhealthy, the assumedAverageRecurringRequiredThroughputPerMinutePerKibana (0) < capacityPerMinutePerKibana (200)9 S* _, G( T( Q4 S1 I
[2024-11-06T11:53:38.451+08:00][INFO ][status.plugins.taskManager] taskManager plugin is now available: Task Manager is healthy
* p' R4 b7 {( A0 K[2024-11-06T11:53:38.532+08:00][INFO ][status] Kibana is now available (was degraded)
$ Z( s7 T" }( h4 g' o$ M[2024-11-06T11:53:38.612+08:00][INFO ][plugins.fleet.fleet:check-deleted-files-task:1.0.1] [runTask()] started
: N* {3 a8 P9 r[2024-11-06T11:53:38.625+08:00][INFO ][plugins.fleet] Running Fleet Usage telemetry send task# u/ F. P& v8 i, |' Q
[2024-11-06T11:53:38.701+08:00][INFO ][plugins.fleet.fleet:check-deleted-files-task:1.0.1] [runTask()] ended: no files to process+ c/ [9 J6 u8 ~9 _; y6 ~
[2024-11-06T11:53:38.764+08:00][INFO ][plugins.elasticAssistant.service] Updating data streams - .kibana-elastic-ai-assistant-conversations-*# I6 x- M7 e7 z' O; m/ e( e$ g
[2024-11-06T11:53:38.767+08:00][INFO ][plugins.ecsDataQualityDashboard] Updating data streams - .kibana-data-quality-dashboard-results-*" B9 c- B, e/ [- _
[2024-11-06T11:53:38.771+08:00][INFO ][plugins.entityManager] Entity manager index template is up to date (use debug logging to see what was installed)
' T0 w# J" `% `& u0 l2 w[2024-11-06T11:53:38.800+08:00][INFO ][plugins.eventLog] Creating datastream .kibana-event-log-ds
, P, M- u; _: Z% A9 W  K[2024-11-06T11:53:38.802+08:00][INFO ][plugins.elasticAssistant.service] Installing component template .kibana-elastic-ai-assistant-component-template-knowledge-base
9 d  e6 |, a7 Q) v: _. p2 \7 L[2024-11-06T11:53:38.804+08:00][INFO ][plugins.slo] Installing SLO index template [.slo-observability.summary]7 o0 P" a; V5 {  h
[2024-11-06T11:53:41.562+08:00][INFO ][plugins.fleet] Output secrets storage is disabled as minimum fleet server version has not been met
5 L6 p% w' |; \* A0 ~[2024-11-06T11:53:42.158+08:00][INFO ][plugins.elasticAssistant.service] Installing index template .kibana-elastic-ai-assistant-index-template-knowledge-base4 F' Y5 ?5 {1 t4 ?/ t) _3 p8 ]
[2024-11-06T11:53:42.776+08:00][INFO ][plugins.elasticAssistant.service] Updating data streams - .kibana-elastic-ai-assistant-knowledge-base-*
& {4 S  f) A; T2 j# p[2024-11-06T11:53:42.792+08:00][ERROR][plugins.elasticAssistant.service] Error initializing AI assistant resources: Platinum, Enterprise or trial license needed
3 w: f% p. m: Q[2024-11-06T11:53:44.841+08:00][ERROR][plugins.taskManager] Task SLO:ORPHAN_SUMMARIES-CLEANUP-TASK "SLO:ORPHAN_SUMMARIES-CLEANUP-TASK:1.0.0" failed: ResponseError: search_phase_execution_exception
% G9 J# {; r) m$ ~. L  O7 P. d! d        Root causes:& m7 x0 w" V3 S; _
                no_shard_available_action_exception: [it-elassearch-1][172.24.110.125:9300][indices:data/read/search[phase/query]]
1 ?; v- F# K1 N[2024-11-06T11:53:48.203+08:00][INFO ][plugins.fleet] Fleet Usage: {"agents_enabled":true,"agents":{"total_enrolled":0,"healthy":0,"unhealthy":0,"offline":0,"inactive":0,"unenrolled":0,"total_all_statuses":0,"updating":0},"fleet_server":{"total_all_statuses":0,"total_enrolled":0,"healthy":0,"unhealthy":0,"offline":0,"updating":0,"inactive":0,"unenrolled":0,"num_host_urls":0},"license_issued_to":"essearch"}
; r1 b9 ]$ U7 y. k2 U  e0 f& L* \[2024-11-06T11:53:49.035+08:00][INFO ][plugins.slo] Installing SLO ingest pipeline [.slo-observability.sli.pipeline-v3.3]
0 u: T. l" d* b, S' }8 I) P[2024-11-06T11:53:49.299+08:00][INFO ][plugins.reporting.store] Linking ILM policy to reporting data stream: .kibana-reporting, component template: kibana-reporting@custom
, R: W5 S4 |0 z[2024-11-06T11:53:56.034+08:00][WARN ][plugins.fleet] xpack.encryptedSavedObjects.encryptionKey is not configured, private key passphrase is being stored in plain text/ ]: d5 p3 Q8 p/ k; J. ^8 m
[2024-11-06T11:53:57.072+08:00][INFO ][plugins.fleet] Fleet setup completed
" t* v$ s  A) y7 o[2024-11-06T11:53:57.125+08:00][WARN ][plugins.fleet] xpack.encryptedSavedObjects.encryptionKey is not configured, agent uninstall tokens are being stored in plain text( {0 ?( T7 q+ X% r1 r
[2024-11-06T11:53:57.134+08:00][INFO ][plugins.securitySolution] Dependent plugin setup complete - Starting ManifestTask
( s% }4 G* P8 u1 P/ l0 l4 q[2024-11-06T11:53:57.211+08:00][INFO ][plugins.securitySolution.endpoint.policyProtections] App feature [endpoint_policy_protections] is enabled. Nothing to do!2 U* U! D* p5 l8 L5 F
[2024-11-06T11:53:57.212+08:00][INFO ][plugins.securitySolution.endpoint.policyProtections] App feature [endpoint_protection_updates] is enabled. Nothing to do!
$ f: ^8 g3 \6 k: X[2024-11-06T11:53:57.214+08:00][INFO ][plugins.securitySolution.endpoint.agentPolicyFeatures] App feature [endpoint_agent_tamper_protection] is enabled. Nothing to do!
; K2 C% g3 c* [$ N[2024-11-06T11:53:57.310+08:00][INFO ][plugins.observabilityAIAssistant.service] Successfully set up index assets
$ j7 Z8 Z; n) O[2024-11-06T11:53:58.030+08:00][INFO ][plugins.fleet] Install - Starting installation of synthetics@1.2.2 from bundled
2 O1 |3 X0 C+ f) P7 h9 v[2024-11-06T11:53:58.633+08:00][INFO ][plugins.securitySolution.endpoint:metadata-check-transforms-task:0.0.1] no endpoint installation found
' H: v9 l, L" i* ~: [/ D2 D[2024-11-06T11:54:02.127+08:00][INFO ][plugins.synthetics] Installed synthetics index templates
/ w( g* C. p& C6 y0 d; W) o" _

1

主题

0

回帖

12

积分

管理员

积分
12
QQ
 楼主| 发表于 2024-12-5 15:12:28 | 显示全部楼层
9 G  T7 E5 B* M5 @- p+ J! T. l- h# w
http://172.24.110.125:5601/app/dev_tools#/console
7 e: n9 l" i# d% J# c3 C5 X3 @1 ^1 ^
# Perform a search in my-index; p3 l3 m4 b: U, ?/ L. x
GET /my-index/_search?q="rocky mountain"" c. n. |8 h: H( _, m0 v

7 m& M# s7 m$ F( c/ ]* z4 M- {2 m' K  c+ D2 ]/ F# s
{
% T% \9 q$ ~0 o8 _% r% e& b& A  "took": 7,* A% y1 }; ?5 x! k7 h4 O
  "timed_out": false,
% ^' E1 g$ S6 g9 \1 d  "_shards": {
& ?+ C" t- o2 l* Y7 t    "total": 1,* x7 I1 b! w, _: c# n; B! T
    "successful": 1,
% m& b' V, f4 s: C    "skipped": 0,0 G  q+ e  Q" H+ L  n) M
    "failed": 0
* k4 Y( I' R/ h, m  },3 o; h$ H6 ~7 j. x7 N
  "hits": {
4 ~) g% j9 f7 `8 z    "total": {: O6 D5 s9 M& U2 k7 t
      "value": 1,
: j$ p+ w! {7 c; H' s* Q1 ?6 T6 t      "relation": "eq"2 [- }; S, ^! W! c5 W' k
    },- e; {6 A' b# e* v+ E6 y( o
    "max_score": 0.5753642,( h' g0 b3 `2 l& ^1 I
    "hits": [. z. f' Y' s3 A+ q! x* v
      {  [0 c/ E/ U; T1 }, j/ f) ]
        "_index": "my-index",( u2 {' g4 V& r8 ~  H
        "_id": "Ivl9lZMBYd-SDpFsSR3q",0 C7 Y* p9 b7 z9 x& J6 \  m
        "_score": 0.5753642,
% l8 x- u" ~- ?2 D6 U, w$ W        "_source": {
3 m: ~) w+ ^% o( ~" a, y0 k8 t! u          "id": "park_rocky-mountain",1 _+ }: T2 H& ~. U$ B7 Z: z
          "title": "Rocky Mountain",
$ p8 G2 |' U. n          "description": "Bisected north to south by the Continental Divide, this portion of the Rockies has ecosystems varying from over 150 riparian lakes to montane and subalpine forests to treeless alpine tundra."+ u) l5 Y% f: t8 h" t" G% P
        }
5 C! v& c: n; J; b' ^( E/ C      }
; }; @) S2 C+ i  i0 Q7 b; u9 R9 c! l: X    ]
& K) J- f* N7 {( \; r  }- |# @# d' x8 f+ c( j# ]
}
  x7 I" z0 i  @/ N' R( y
1 J4 k) o) U3 N8 o" N
/ a' `- P; e0 B( Q' Z获取index 索引:1 v3 j3 Q, ^3 c
GET _cat/indices& A7 i& w7 Y9 `! M8 R+ ]$ W
6 ]% b, J: n5 u" ^
green open controller_consoleauth-7.10.1-2024.12.04                           SMGEL2IORs6hZ7Yc95bHcw 1 1      6 0  38.7kb  19.3kb  19.3kb6 k7 }9 b* ~. W* t, W$ m* B
green open controller_openvswitch-agent-7.10.1-2024.11.20                     Q48wiIFeQreztKN2WXKvhw 1 1      3 0  61.7kb  30.8kb  30.8kb
: [# J; K# \$ B+ c' O; S" {green open controller_consoleauth-error-7.10.1-2024.11.30                     xcSQssgVS6i_w3scrsglRA 1 1      1 0  28.6kb  14.3kb  14.3kb
4 H6 Z& p% k, b* B! Y% C6 Rgreen open my-index                                                           vK80l7QKQVid00-6PxtWwA 1 1      1 0  14.8kb   7.4kb   7.4kb: E1 M' f2 b, t5 K6 d8 F& A+ Q6 b
green open controller_openvswitch-agent-7.10.1-2024.11.27                     3BPIE0SLRIaZee9bG-ojkA 1 1      3 0  87.8kb  43.9kb  43.9kb
/ X3 S1 n( F' W+ E; J5 g( vgreen open controller_openvswitch-agent-7.10.1-2024.11.28                     u5r2pS_7Tm-mVlOb6xkkpg 1 1     59 0 109.1kb  54.5kb  54.5kb
; S& Y) X8 V' w* _) mgreen open .internal.alerts-ml.anomaly-detection.alerts-default-000001        SMu-3HawRpCmbbC_68_9_w 1 1      0 0    498b    249b    249b) L4 E, B+ ^" a; G1 I" V+ `* c
green open .internal.alerts-default.alerts-default-000001                     3datPO8NTr69t1tx3Zi8xg 1 1      0 0    498b    249b    249b( b. w. e) u$ g: ]' P
green open controller_cert-7.10.1-2024.11.20                                  DAMugYjFRk-KbuTHRZ4QuA 1 1     15 0   104kb  51.9kb  51.9kb$ d" ^9 \2 W' q: I$ k6 x
green open controller_cert-7.10.1-2024.11.26                                  wdlI7-TYRhKE-j7du7kXvA 1 1      1 0  28.2kb  14.1kb  14.1kb
8 v) ]7 l. n- i  o% C9 ^2 N+ g: c6 u5 ~+ N5 B$ p! I9 a* x
状态:. Y* M$ D  I7 ?3 N5 Q
GET _cat/health3 C1 i" ]4 D5 x( J7 _- t8 k' q2 q1 ^
1733381035 06:43:55 elasticsearch green 2 2 322 161 0 0 0 0 - 100.0%
! b9 f6 k8 P1 @. A6 R  F" m( `9 A' n& t

$ s6 p" N1 d5 q9 b6 w) e  V# Z$ }+ j8 L9 _* e) g4 B

: C" y3 ~& z8 O7 V8 n2 V
, Q! S# v" T8 U( ^! qGET _cat/allocation
7 {$ P7 T& I% v% O* ]6 x0 N% R
2 c1 l5 r2 n6 [. F; N161 0 0.0 1.3gb 1.3gb 13.5gb 486.1gb 499.7gb 2 172.24.110.125 172.24.110.125 it-elassearch-1 cdfhilmrstw
5 F0 a3 [# }9 {7 z161 0 0.0 1.3gb 1.3gb 13.9gb 485.7gb 499.7gb 2 172.24.110.127 172.24.110.127 it-elassearch-2 cdfhilmrstw3 d7 w4 N# P( C/ o. D

' @; \% p4 g) a- T
# N6 N5 x* n3 n$ k( u& w% u" X% e7 g7 q1 \+ h5 \

) g9 V' T* k9 n4 G* NGET /_cat/indices?v
5 l0 u. c8 s& L, Q3 y- Z( O
8 L5 E  C7 U8 v8 i* S! V; ]) _health status index                                                              uuid                   pri rep docs.count docs.deleted store.size pri.store.size dataset.size! m9 w  o/ q% O$ h- n, \# X% Y
green  open   controller_consoleauth-7.10.1-2024.12.04                           SMGEL2IORs6hZ7Yc95bHcw   1   1          6            0     38.7kb         19.3kb       19.3kb
+ n; ~% t7 k/ Kgreen  open   controller_openvswitch-agent-7.10.1-2024.11.20                     Q48wiIFeQreztKN2WXKvhw   1   1          3            0     61.7kb         30.8kb       30.8kb! P5 U" K, v# c# |3 {7 v; y
green  open   controller_consoleauth-error-7.10.1-2024.11.30                     xcSQssgVS6i_w3scrsglRA   1   1( P" O! c4 q+ N* J1 }8 A4 Z' u0 _

9 h( j- m# `$ U. N" j+ \3 ~7 X6 u3 z  Y9 J) K6 {; ^8 a( ^/ p3 \
/ S, {- ~1 `& W0 ]( M# q& |/ ^/ T
GET /_cat/health?v
8 i) E, I1 x# K7 H! q+ H* T9 a
  _  o% e+ F$ s0 m% z1 V4 Nepoch      timestamp cluster       status node.total node.data shards pri relo init unassign pending_tasks max_task_wait_time active_shards_percent" b# a/ F9 T  t# ?* X( W
1733381123 06:45:23  elasticsearch green           2         2    322 161    0    0        0             0                  -                100.0%
, y4 A/ H. d6 H* C
9 l4 E* m3 G8 s$ F8 b0 h
% \- u, M0 b' D% E8 T6 P8 S
5 ?: Q& S4 f  B' F) Z* ~8 u; p! K/ \5 O+ V5 n3 P4 c
GET _cat/nodes?v7 z- D$ e5 F6 J& H5 v6 A' D" y, i
! U4 C# p3 Y6 ?- d( L2 e

; A6 Y8 Q* Z# f9 y9 T* C7 F- r/ [4 Sip             heap.percent ram.percent cpu load_1m load_5m load_15m node.role   master name
1 I* \( v5 P) t8 {1 ~9 F172.24.110.125            9          98   2    0.17    0.15     0.14 cdfhilmrstw -      it-elassearch-1' o; a) B* F* t
172.24.110.127           60          98   2    0.03    0.09     0.13 cdfhilmrstw *      it-elassearch-2- I5 G* y. M) d
% B' e& L5 ^! y5 M( p" _8 _( a
: _7 p: j6 f; H9 o
您需要登录后才可以回帖 登录 | 注册

本版积分规则

返回首页|Archiver|手机版|小黑屋|易陆发现技术论坛 ( 蜀ICP备2026014127号-1 )

GMT+8, 2026-6-12 00:42 , Processed in 0.027680 second(s), 22 queries .

Powered by Discuz! X5.0

© 2001-2026 Discuz! Team.

快速回复 返回顶部 返回列表