ElasticSearch之cat component templates API

news/2024/7/7 21:54:24

命令样例如下:

curl -X GET "https://localhost:9200/_cat/component_templates?v=true&pretty" --cacert $ES_HOME/config/certs/http_ca.crt -u "elastic:ohCxPH=QBE+s5=*lo7F9"

执行结果输出如下:

name                                  version alias_count mapping_count settings_count metadata_count included_in
elastic-connectors-sync-jobs-mappings 1       1           19            0              2              [elastic-connectors-sync-jobs]
metrics-mappings                      3       0           3             0              2              [metrics]
behavioral_analytics-events-mappings  2       0           10            0              2              [behavioral_analytics-events-default]
elastic-connectors-mappings           1       1           31            0              2              [elastic-connectors]
synthetics-mappings                   3       0           1             0              2              [synthetics]
ecs@dynamic_templates                 3       0           13            0              2              [logs]
.deprecation-indexing-settings        1       0           0             5              2              [.deprecation-indexing-template]
synthetics-settings                   3       0           0             2              2              [synthetics]
logs-mappings                         3       0           5             0              2              [logs]
elastic-connectors-settings           1       0           0             4              2              [elastic-connectors-sync-jobs, elastic-connectors]
elastic-connectors-sync-jobs-settings 1       0           0             4              2              []
.deprecation-indexing-mappings        1       0           7             0              2              [.deprecation-indexing-template]
behavioral_analytics-events-settings  2       0           0             8              2              [behavioral_analytics-events-default]
metrics-settings                      3       0           0             3              2              [metrics]
logs-settings                         3       0           0             5              2              [logs]
metrics-tsdb-settings                 3       0           0             2              2              []
data-streams-mappings                 3       0           8             0              2              [synthetics, metrics]

查看帮助,命令如下:

curl -X GET "https://localhost:9200/_cat/component_templates?v=true&help=true&pretty" --cacert $ES_HOME/config/certs/http_ca.crt -u "elastic:ohCxPH=QBE+s5=*lo7F9"

执行结果输出如下:

name           | n  | component template name
version        | v  | version
alias_count    | a  | alias count
mapping_count  | m  | mapping count
settings_count | s  | settings count
metadata_count | me | metadata count
included_in    | i  | included in

相关资料

  • cat component templates API
  • get component template API
  • component templates
  • index templates
  • mappings
  • settings
  • aliases
  • HTTP accept header

http://lihuaxi.xjx100.cn/news/1829954.html

相关文章

电源控制系统架构(PCSA)之系统控制处理器组件

目录 6.4 系统控制处理器 6.4.1 SCP组件 SCP处理器Core SCP处理器Core选择 SCP处理器核内存 系统计数器和通用计时器 看门狗 电压调节器控制 时钟控制 系统控制 信息接口 电源策略单元 传感器控制 外设访问 系统访问 6.4 系统控制处理器 系统控制处理器(SCP)是…

WPF面试题入门篇

入门篇[2] 1. 谈谈什么是WPF? WPF(Windows Presentation Foundation)是微软公司开发的一种用于创建Windows应用程序的用户界面框架。它是.NET Framework的一部分,提供了一种基于XAML(可扩展应用程序标记语言&#xf…

Postgresql WAL日志解析挖掘(walminer 4.0)

1.下载walminer https://gitee.com/movead/XLogMiner/releases 2.安装walminer ## 解压缩 [rootpg soft]# su - postgres [postgrespg soft]$ tar -zxvf walminer_x86_64_v4.4.2.tar.gz## 创建 walminer 运行目录 [postgrespg soft]# mkdir -p /usr/local/walminer [postgre…

Shell循环:for(二)

一、通过用户列表文件创建用户 需求:通过用户列表文件创建用户 [rootlocalhost ~]# cat user.txt qian yoa huang演示: [rootlocalhost ~]# vim foruser.sh #编写脚本 #!/bin/bash for i in cat user.txt do useradd $i if [ $? -eq 0 ] thenech…

springboot(ssm超市货品信息管理系统 超市购物系统Java(codeLW)

springboot(ssm超市货品信息管理系统 超市购物系统Java(code&LW) 开发语言:Java 框架:ssm/springboot vue JDK版本:JDK1.8(或11) 服务器:tomcat 数据库:mysql 5.7(或8.0&am…

【ARM CoreLink 系列 3.1 -- CCI-500 详细介绍 -上半部】

文章目录 1.1 CCI-500 介绍1.2 CCI-500 features 详细介绍1.2.1 Data Coherency between ACE Masters1.2.2 Quality of Service (QoS)1.2.3 (I/O) Coherency1.2.4 Crossbar Interconnect Functionality1.2.5 Performance Monitoring Unit (PMU)1.2.6 DVM Message Transport1.2.…

CSS3新特性(2-1)

CSS3新特性 前言border:radius标签属性选择器box-sizing透明度 前言 本文主要讲解CSS3有哪些新的特性和内容,那么好,本文正式开始. border:radius 新增了圆角边框概念,可以通过具体数值或者百分比,来让边…

ElasticSearch之cat anomaly detectors API

curl -X GET "https://localhost:9200/_cat/ml/anomaly_detectors?vtrue&pretty" --cacert $ES_HOME/config/certs/http_ca.crt -u "elastic:ohCxPHQBEs5*lo7F9"执行结果输出如下: curl -X GET "https://localhost:9200/_cat/ml/ano…