01 2020 档案

摘要:第三方包下载 $ github.com/shirou/gopsutil 获取内存方面的信息 package main import ( "fmt" "github.com/shirou/gopsutil/mem" ) func main() { v, _ := mem.VirtualMemory() 阅读全文
posted @ 2020-01-28 14:43 Binb 阅读(6302) 评论(0) 推荐(0) 编辑
摘要:文章转自 go操作etcd etcd etcd介绍 etcd是使用Go语言开发的一个开源的、高可用的分布式key-value存储系统,可以用于配置共享和服务的注册和发现。 类似项目有zookeeper和consul。 etcd具有以下特点: 完全复制:集群中的每个节点都可以使用完整的存档 高可用性: 阅读全文
posted @ 2020-01-13 11:21 Binb 阅读(3018) 评论(0) 推荐(0) 编辑
摘要:package main import ( "fmt" ) func main() { // 字符串 str := "ABCDEFGHIJKLMNOPQRSTUVWXYZ" // 直接使用string强转 例如 string(65) = A fmt.Println(fmt.Sprint(string 阅读全文
posted @ 2020-01-10 21:25 Binb 阅读(150) 评论(0) 推荐(0) 编辑
摘要:文章转自 快速开始 my.ini # possible values : production, development app_mode = development [paths] # Path to where grafana can store temp files, sessions, an 阅读全文
posted @ 2020-01-09 19:25 Binb 阅读(679) 评论(0) 推荐(0) 编辑
摘要:Tail Demo // tail.TailFile()函数开启goroutine去读取文件,通过channel格式的t.lines传递内容。 t, err := tail.TailFile("/var/log/nginx.log", tail.Config{Follow: true}) if er 阅读全文
posted @ 2020-01-09 15:27 Binb 阅读(721) 评论(0) 推荐(0) 编辑