본문 바로가기

Monitoring Tools/ELK Stack

4.1 index pattern id 조회

반응형

curl -XGET 'localhost:5601/api/saved_objects/_find?type=index-pattern'

[root@CC-MON-ELASTIC conf.d]# curl -XGET 'localhost:5601/api/saved_objects/_find?type=index-pattern' | jq .

{
  "page": 1,
  "per_page": 20,
  "total": 1,
  "saved_objects": [
    {
      "type": "index-pattern",
      "id": "48df5170-bf95-11ec-9f40-4b6b290513da",
      "attributes": {
        "fieldAttrs": "{}",
        "title": "filebeat-nginx*",
        "timeFieldName": "@timestamp",
        "fields": "[]",
        "typeMeta": "{}",
        "runtimeFieldMap": "{}"
      },
      "references": [],
      "migrationVersion": {
        "index-pattern": "7.11.0"
      },
      "coreMigrationVersion": "7.15.1",
      "updated_at": "2022-04-19T04:00:43.527Z",
      "version": "Wzg3NiwzXQ==",
      "namespaces": [
        "default"
      ],
      "score": 0
    }
  ]
}

 

 

반응형

'Monitoring Tools > ELK Stack' 카테고리의 다른 글

5.1 [logstash filter] 시간대 변경  (0) 2022.04.22
5. Logstash 설정 및 테스트  (0) 2022.04.22
4. Kibana 설정  (0) 2022.04.22
3.1 Index Alias 변경  (0) 2022.04.22
3. elasticsearch 설정  (0) 2022.04.21