GitHub地址:https://github.com/alibaba/Sentinel
中文文档:https://sentinelguard.io/zh-cn/docs/introduction.html
下载地址:https://github.com/alibaba/Sentinel/releases
Spring Cloud Alibaba 官方说明文档:Spring Cloud Alibaba Reference Documentation
随着微服务的流行,服务和服务之间的稳定性变得越来越重要。Sentinel 是面向分布式、多语言异构化服务架构的流量治理组件,主要以流量为切入点,从流量路由、流量控制、流量整形、熔断降级、系统自适应过载保护、热点流量防护等多个维度来帮助开发者保障微服务的稳定性。
简单来讲,其是SpringCloud Hystrix的阿里替代升级版。
【1】安装
从地址https://github.com/alibaba/Sentinel/releases下载 sentinel-dashboard-1.8.8.jar
使用命令进行启动,这里需要事先配置好java环境:
java -jar sentinel-dashboard-1.8.8.jar
浏览器访问 http://localhost:8080,账号密码均为 sentinel 。
【2】服务监控
先启动Nacos和Sentinel两个服务。
① pom依赖
如下所示,对于SpringCloud Alibaba来说Nacos与sentinel标配组合。
<dependency>
<groupId>com.alibaba.cloud</groupId>
<artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
</dependency>
<!-- 后续做持久化用到 -->
<dependency>
<groupId>com.alibaba.csp</groupId>
<artifactId>sentinel-datasource-nacos</artifactId>
</dependency>
<dependency>
<groupId>com.alibaba.cloud</groupId>
<artifactId>spring-cloud-starter-alibaba-sentinel</artifactId>
</dependency>
② yml配置
server:
port: 8401
spring:
application:
name: cloud-alibaba-sentinel-service
cloud:
nacos:
discovery:
# 服务注册中心地址
server-addr: localhost:8848
sentinel:
transport:
# 配置sentinel dashboard地址
dashboard: localhost:8080
# 默认 8719端口,假如被占用从8719开始+1扫描直到直到未被占用的端口
port: 8719
management:
endpoints:
web:
exposure:
include: '*'
③ 主启动类
@SpringBootApplication
@EnableDiscoveryClient
public class SentinelServiceMain8401 {
public static void main(String[] args) {
SpringApplication.run(SentinelServiceMain8401.class,args);
}
}
由于Sentinel采取了懒加载机制,故而需要我们发起服务请求,才可以在控制台看到服务。