西木-Lee

 

2018年10月18日

ubuntu安装rabbitmq

摘要: 查看ubuntu当前版本命令: cat /etc/issue 由于rabbitMq需要erlang语言的支持,在安装rabbitMq之前需要安装erlang,执行命令: sudo apt-get install erlang-nox 安装rabbitMq命令: sudo apt-get update 阅读全文

posted @ 2018-10-18 17:47 西木-Lee 阅读(1411) 评论(0) 推荐(0) 编辑

2018年9月29日

Grafana报警--通知渠道配置

摘要: 最近研究了prometheus+grafana的系统监控,使用grafana的报警功能,grafana支持很多种通知渠道,下文记录使用到的几种notification channels,分别是email,kafka和webhook 官网文档 http://docs.grafana.org/alert 阅读全文

posted @ 2018-09-29 18:45 西木-Lee 阅读(10448) 评论(0) 推荐(0) 编辑

2018年9月11日

logback kafkaAppender输出日志到kafka

摘要: 官网地址https://github.com/danielwegener/logback-kafka-appender 本文以spring boot项目为基础,更多的信息,请参考官网 使用maven引入所需要的jar包 配置logback-spring.xml,增加一个appender节点 自定义r 阅读全文

posted @ 2018-09-11 19:15 西木-Lee 阅读(10564) 评论(0) 推荐(0) 编辑

2018年9月5日

spring boot 2 统一异常处理

摘要: spring mvc 针对controller层异常统一处理非常简单,使用 @RestControllerAdvice 或 @RestControllerAdvice 注解就可以轻@RestControllerAdvice 下面记录一下,spring cloud gateway项目中重写 Defau 阅读全文

posted @ 2018-09-05 18:22 西木-Lee 阅读(4902) 评论(0) 推荐(0) 编辑

spring boot 2.0.4 Redis缓存配置

摘要: spring boot 2 使用RedisTemplate操作redis存取对象时,需要先进行序列化操作 包装RedisTemplate,把常用操作写一个redis工具类 阅读全文

posted @ 2018-09-05 17:16 西木-Lee 阅读(814) 评论(0) 推荐(0) 编辑

2018年8月30日

windows下consul利用json文件注册服务

摘要: windows下,以开发模式启动consul命令 人工注册服务,新建一个json文件 ,放到D:\tools\consul目录下,内容如下 如果,新加service,重启consul即可。 阅读全文

posted @ 2018-08-30 17:02 西木-Lee 阅读(1779) 评论(0) 推荐(0) 编辑

2018年8月17日

docker安装portainer

摘要: 安装好docker之后,可以使用portainer对容器进到管理 docker安装portainer命令 docker运行portainer 说明for mac 说明for windows portainer启动之后,在浏览器输入, http://localhost:9000/ ,按向导登录后,便可 阅读全文

posted @ 2018-08-17 23:02 西木-Lee 阅读(12832) 评论(0) 推荐(0) 编辑

Docker 清理命令

摘要: 原文地址http://www.runoob.com/w3cnote/docker-clear-command.html,这里仅作为记录,便于以后查阅 查看正在运行的容器(Container) 杀死所有正在运行的容器 查看所有镜像 删除所有镜像 通过镜像的id来删除指定镜像 删除所有未打 dangli 阅读全文

posted @ 2018-08-17 22:14 西木-Lee 阅读(2424) 评论(0) 推荐(0) 编辑

git command line 提交代码

摘要: echo "# spring-boot-apollo-demo" >> README.md git init git add README.md git commit -m "first commit" git remote add origin https://github.com/lixyu/s 阅读全文

posted @ 2018-08-17 19:25 西木-Lee 阅读(506) 评论(0) 推荐(0) 编辑

2018年8月10日

java应用健康检查

摘要: 本文主要针对自己手写shell监控应用状态,有可系统解决方案的,比如K8S,可以略过 restart.sh脚本内容: 阅读全文

posted @ 2018-08-10 16:32 西木-Lee 阅读(551) 评论(0) 推荐(0) 编辑

导航