码迷,mamicode.com
首页 > 其他好文 > 详细

【其他】Falcon的数据查询

时间:2020-04-16 11:43:44      阅读:113      评论:0      收藏:0      [点我收藏+]

标签:tle   aqi   count   监控   unit   rap   class   only   获取   

查询监控项

select
    *
from
    endpoint e inner join endpoint_counter c on e.id = c.endpoint_id where 
    c.counter = "metric_name" 
    and endpoint = "host_name"

 

模拟登录获取Cookie,Postman选form-data

# POST FORM, curl可以通过-b 将cookie输出到文件
curl -d "name=user&password=passwd" http://falconhost:port/auth/login

 

从接口获取监控数据

curl -H "Cookie:session=eyJvcGVuLWZhbGNvbi1jayI6ImppYW5neHU6NGUwOGM0YjM3ZjAwMTFlYTlmM2NlY2Y0YmJmMWFhAAQifQ.XpfQVQ._-QAoxYM--Xf7BKHfi64CU2hgwE" -X GET "http://falconhost:port/chart/h?cf=AVERAGE&end=1586943404&graph_type=h&id=8095&start=1586939864&sum=off&sumonly=off" | jq
{
  "units": "",
  "series": [
    {
      "counter": "metric/tags",
      "endpoint": "monitored_host",
      "data": [
        [
          1586940000000,
          1
        ],...
      ],
      "name": "monitored_host",
      "cf": "AVERAGE"
    }
  ],
  "title": "metric/tags"
}

 

【其他】Falcon的数据查询

标签:tle   aqi   count   监控   unit   rap   class   only   获取   

原文地址:https://www.cnblogs.com/jiangxu67/p/12711556.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!