logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

influxdb insert 插入默认rp autogen,查询不到

1.需要用insert into autogen measurmentinsert into autogen test,project=ss,name=ttt count=1675792i,hour_count=1234i,expire_time=0i 16383420000000000002.查询select * from autogen.test where name=‘ttt’ and ti

Linux系统监测python程序挂掉并重启

1、shell脚本,fi后输入Enter键,不然会出错误,若在windows下编写shell脚本,上传到Linux后,vi 文件名,输入:set ff?,若为dos,则需要修改为Linux格式,:set ff=unix然后输入:wq!保存退出。#!/bin/shcount=`ps -ef |grep /usr/local/jobmail/Study/TomasSendNew2.py |

#python
matlab 读取、处理json文件

1、需要下载一个包jsonlab,csdn上有很多资源2、该函数实现的功能就是把一个json分割为4个json。通过判断iCellIdx字段,可能只分割为<4个json。function [cellNum,cellList]=jsonSplit(jsonPath)%'E:\0105\PUSCH_HF_1_000033.json'addpath(genpath([pwd '\js...

go语言生成json格式的文件

1、Go语言如何生成json格式的文件,利用ioutil.WriteFile生成文件。可以通过序列化和反序列化把json数据的部分数据生成文件。import ("encoding/json""fmt""io/ioutil""os")type ColorGroup struct {IDintNamestring...

Go语言解决读取文件乱码

1、当文件中存在中文字符时,读取文件出现乱码,解决方法:使用"github.com/axgle/mahonia"第三方包解译码。package functionimport ("strings""fmt""io/ioutil""os""github.com/axgle/mahonia")func main() {fi, err := os.Open("E:\\go...

go es查询数据

查询数据package apiimport ("encoding/json""fmt""net/http""github.com/gin-gonic/gin""github.com/olivere/elastic/v7")type EsInfo struct {Hoststring `json:"host,omitempty"`Userstring `json:"user,omitempty"`P

es kibana各种查询

1.查询字段create_time存在并且字段project为logging的记录GET /index_name/_search{"query": {"bool": {"must": [{"term": {"project": "logging"}},{"exists": {"field": "create_time"}}]}

kibana es创建模板,索引,导入数据,简单聚合查询

kibana es创建模板,索引,导入数据,聚合查询

到底了