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

执行结果输出如下:

curl -X GET "https://localhost:9200/_cat/ml/anomaly_detectors?v=true&pretty" --cacert $ES_HOME/config/certs/http_ca.crt -u "elastic:ohCxPH=QBE+s5=*lo7F9"
id state data.processed_records model.bytes model.memory_status forecasts.total buckets.count

查看帮助,命令如下:

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

执行结果输出如下:

id                               |                                    | the job_id
state | s | the job state
opened_time | ot | the amount of time the job has been opened
assignment_explanation | ae | why the job is or is not assigned to a node
data.processed_records | dpr,dataProcessedRecords | number of processed records
data.processed_fields | dpf,dataProcessedFields | number of processed fields
data.input_bytes | dib,dataInputBytes | total input bytes
data.input_records | dir,dataInputRecords | total record count
data.input_fields | dif,dataInputFields | total field count
data.invalid_dates | did,dataInvalidDates | number of records with invalid dates
data.missing_fields | dmf,dataMissingFields | number of records with missing fields
data.out_of_order_timestamps | doot,dataOutOfOrderTimestamps | number of records handled out of order
data.empty_buckets | deb,dataEmptyBuckets | number of empty buckets
data.sparse_buckets | dsb,dataSparseBuckets | number of sparse buckets
data.buckets | db,dataBuckets | total bucket count
data.earliest_record | der,dataEarliestRecord | earliest record time
data.latest_record | dlr,dataLatestRecord | latest record time
data.last | dl,dataLast | last time data was seen
data.last_empty_bucket | dleb,dataLastEmptyBucket | last time an empty bucket occurred
data.last_sparse_bucket | dlsb,dataLastSparseBucket | last time a sparse bucket occurred
model.bytes | mb,modelBytes | model size
model.memory_status | mms,modelMemoryStatus | current memory status
model.bytes_exceeded | mbe,modelBytesExceeded | how much the model has exceeded the limit
model.memory_limit | mml,modelMemoryLimit | model memory limit
model.by_fields | mbf,modelByFields | count of 'by' fields
model.over_fields | mof,modelOverFields | count of 'over' fields
model.partition_fields | mpf,modelPartitionFields | count of 'partition' fields
model.bucket_allocation_failures | mbaf,modelBucketAllocationFailures | number of bucket allocation failures
model.categorization_status | mcs,modelCategorizationStatus | current categorization status
model.categorized_doc_count | mcdc,modelCategorizedDocCount | count of categorized documents
model.total_category_count | mtcc,modelTotalCategoryCount | count of categories
model.frequent_category_count | mfcc,modelFrequentCategoryCount | count of frequent categories
model.rare_category_count | mrcc,modelRareCategoryCount | count of rare categories
model.dead_category_count | mdcc,modelDeadCategoryCount | count of dead categories
model.failed_category_count | mfcc,modelFailedCategoryCount | count of failed categories
model.log_time | mlt,modelLogTime | when the model stats were gathered
model.timestamp | mt,modelTimestamp | the time of the last record when the model stats were gathered
forecasts.total | ft,forecastsTotal | total number of forecasts
forecasts.memory.min | fmmin,forecastsMemoryMin | minimum memory used by forecasts
forecasts.memory.max | fmmax,forecastsMemoryMax | maximum memory used by forecasts
forecasts.memory.avg | fmavg,forecastsMemoryAvg | average memory used by forecasts
forecasts.memory.total | fmt,forecastsMemoryTotal | total memory used by all forecasts
forecasts.records.min | frmin,forecastsRecordsMin | minimum record count for forecasts
forecasts.records.max | frmax,forecastsRecordsMax | maximum record count for forecasts
forecasts.records.avg | fravg,forecastsRecordsAvg | average record count for forecasts
forecasts.records.total | frt,forecastsRecordsTotal | total record count for all forecasts
forecasts.time.min | ftmin,forecastsTimeMin | minimum runtime for forecasts
forecasts.time.max | ftmax,forecastsTimeMax | maximum run time for forecasts
forecasts.time.avg | ftavg,forecastsTimeAvg | average runtime for all forecasts (milliseconds)
forecasts.time.total | ftt,forecastsTimeTotal | total runtime for all forecasts
node.id | ni,nodeId | id of the assigned node
node.name | nn,nodeName | name of the assigned node
node.ephemeral_id | ne,nodeEphemeralId | ephemeral id of the assigned node
node.address | na,nodeAddress | network address of the assigned node
buckets.count | bc,bucketsCount | bucket count
buckets.time.total | btt,bucketsTimeTotal | total bucket processing time
buckets.time.min | btmin,bucketsTimeMin | minimum bucket processing time
buckets.time.max | btmax,bucketsTimeMax | maximum bucket processing time
buckets.time.exp_avg | btea,bucketsTimeExpAvg | exponential average bucket processing time (milliseconds)
buckets.time.exp_avg_hour | bteah,bucketsTimeExpAvgHour | exponential average bucket processing time by hour (milliseconds)

相关资料

ElasticSearch之cat anomaly detectors API的更多相关文章

  1. Elasticsearch利用cat api快速查看集群状态、内存、磁盘使用情况

    使用场景 当Elasticsearch集群中有节点挂掉,我们可以去查看集群的日志信息查找错误,不过在查找错误日志之前,我们可以通过elasticsearch的cat api简单判断下各个节点的状态,包 ...

  2. elasticsearch【cat API,系统数据】指令汇总

    本博文讲述的ES获取系统数据的API是基于Elasticsearch 2.4.1版本的. 0. overview a. 下面将要介绍的所有的指令,都支持一个查询参数v(verbose),用来显示详细的 ...

  3. ElasticSearch 5.0.1 java API操作

    今天来说下使用ES 5.0.1的API来进行编码. 开始之前,简单说下5.0.1跟之前的几个变化.之前的ES自身是不支持delete-by-query的,也就是通过查询来删除,可以达到批量的效果,是因 ...

  4. elasticsearch基本操作之--java基本操作 api

    /** * 系统环境: vm12 下的centos 7.2 * 当前安装版本: elasticsearch-2.4.0.tar.gz */ 默认进行了elasticsearch安装和ik安装, 超时配 ...

  5. ES 19 - Elasticsearch的检索语法(_search API的使用)

    目录 1 Search API的基本用法 1.1 查询所有数据 1.2 响应信息说明 1.3 timeout超时机制 1.4 查询多索引和多类型中的数据 2 URI Search的用法 2.1 GET ...

  6. 【原创】大数据基础之ElasticSearch(2)常用API整理

    Fortunately, Elasticsearch provides a very comprehensive and powerful REST API that you can use to i ...

  7. Elasticsearch 2.3.3 JAVA api说明文档

    原文地址:https://www.blog-china.cn/template\documentHtml\1484101683485.html 翻译作者:@青山常在人不老 加入翻译:cdcnsuper ...

  8. mysql转ElasticSearch的分析 及JAVA API 初探

    前言 最近工作中在进行一些技术优化,为了减少对数据库的压力,对于只读操作,在程序与db之间加了一层-ElasticSearch.具体实现是db与es通过bin-log进行同步,保证数据一致性,代码调用 ...

  9. 可以执行全文搜索的原因 Elasticsearch full-text search Kibana RESTful API with JSON over HTTP elasticsearch_action es 模糊查询

    https://www.elastic.co/guide/en/elasticsearch/guide/current/getting-started.html Elasticsearch is a ...

  10. ElasticSearch之安装及基本操作API

    ElasticSearch 是目前非常流行的搜索引擎,对海量数据搜索是非常友好,并且在高并发场景下,也能发挥出稳定,快速特点.也是大数据和索搜服务的开发人员所极力追捧的中间件.虽然 ElasticSe ...

随机推荐

  1. 在Vue2和Vue3中JSX的使用集锦

    Vue2安装JSX支持 有时候,我们使用渲染函数(render function)来抽象组件,而渲染函数使用Vue的h函数来编写Dom元素相对template语法差别较大,体验不佳,这个时候就派 JS ...

  2. 从DevOps实践落地的角度谈谈“流程”和“规范"的反模式

    最近在经历的一些事情,让我突发灵感,觉得要写点关于DevOps体系建设过程中的"流程规范",记录下来. 如何解读"流程规范" 谈到DevOps落地,无一例外都会 ...

  3. 教你用API插件开发一个AI快速处理图片小助手

    本文分享自华为云社区<[案例教学]华为云API图引擎服务 GES的便捷性-AI帮助快速处理图片小助手>,作者:华为云PaaS服务小智. 调用云服务.API.SDK.调试.查看-- &quo ...

  4. 数据库sql中处理时间冲突问题

    数据库现有数据其中两列: s - 开始时间, e - 结束时间. 在新插入数据s', e'之前需要判断两个时间之间是否有重合 因为使用mybatis-plus的缘故, 结论都使用s或e在符号前面. 1 ...

  5. 一些H5对接微信JSSDK的问题记录

    这里给大家分享我在实际生活中总结出来的一些知识,希望对大家有所帮助 一.SDK引入 这里提供两套引入流程,一套是vue2.0及其他h5项目,一套是vue3.0的引入流程 不懂的也可以看我之前的一篇详细 ...

  6. C语言指针函数和函数指针区别(转)

    C语言函数指针和指针函数的区别C和C++中经常会用到指针,和数据项一样,函数也是有地址的,函数的地址是存储其机器语言代码的内存的开始地址. 指针函数和函数指针经常会混淆,一个是返回指针的函数,另一个是 ...

  7. 开发app软件成本计算参考

    目录 1. 设计成本 2. 前端开发成本 3. 后端开发成本 4. 测试成本 5. 上架试运营成本 app软件开发已成为人们生活中不可或缺的一部分.无论是在娱乐.通讯.信息.健康等方面,都有数不清的a ...

  8. FreeRTOS 和裸机的区别

    FreeRTOS 和裸机的区别 01 FreeRTOS 简介 什么是FreeRTOS? 特点:实时性.可移植性.可扩展性 架构:内核.任务.调度器.通信机制 什么是裸机? 特点:无操作系统.直接操作硬 ...

  9. Linux 中如何安全地抹去磁盘数据?

    哈喽大家好,我是咸鱼 离过职的小伙伴都知道,离职的时候需要上交公司电脑,但是电脑里面有许多我们的个人信息(聊天记录.浏览记录等等) 所以我们就需要先把这些信息都删除,确保无法恢复之后才上交 即有些情况 ...

  10. 关于如何解决visualc++6.0打开文件闪退的一种方式(附带解决输入法无法显示)

    这里我把VisualC++6.0安装程序和filetool分享在我的网盘里面了 网盘下载QAQ 链接:https://pan.baidu.com/s/1azSMX_cOKgb64WT7-gTdbQ?p ...