Pārlūkot izejas kodu

Update document to meet Markdown lint

Signed-off-by: Eric Zhao <sczyh16@gmail.com>
master
Eric Zhao pirms 6 gadiem
vecāks
revīzija
832d6e425d
12 mainītis faili ar 43 papildinājumiem un 62 dzēšanām
  1. +1
    -1
      CODE_OF_CONDUCT.md
  2. +12
    -12
      CONTRIBUTING.md
  3. +11
    -16
      README.md
  4. +3
    -5
      doc/awesome-sentinel.md
  5. +1
    -1
      sentinel-adapter/sentinel-dubbo-adapter/README.md
  6. +1
    -1
      sentinel-adapter/sentinel-grpc-adapter/README.md
  7. +0
    -1
      sentinel-dashboard/README.md
  8. +5
    -5
      sentinel-dashboard/src/main/webapp/resources/README.md
  9. +5
    -5
      sentinel-dashboard/src/main/webapp/resources/README_zh.md
  10. +2
    -8
      sentinel-extension/sentinel-annotation-aspectj/README.md
  11. +1
    -4
      sentinel-extension/sentinel-datasource-redis/README.md
  12. +1
    -3
      sentinel-extension/sentinel-parameter-flow-control/README.md

+ 1
- 1
CODE_OF_CONDUCT.md Parādīt failu

@@ -68,6 +68,6 @@ members of the project's leadership.
## Attribution

This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
available at https://www.contributor-covenant.org/version/1/4/code-of-conduct.html
available at [https://www.contributor-covenant.org/version/1/4/code-of-conduct.html](https://www.contributor-covenant.org/version/1/4/code-of-conduct.html)

[homepage]: https://www.contributor-covenant.org

+ 12
- 12
CONTRIBUTING.md Parādīt failu

@@ -3,17 +3,17 @@
Welcome to Sentinel! This document is a guideline about how to contribute to Sentinel.
If you find something incorrect or missing, please leave comments / suggestions.

# Before you get started
## Before you get started

## Code of Conduct
### Code of Conduct

Please make sure to read and observe our [Code of Conduct](./CODE_OF_CONDUCT.md).

## Setting up your development environment
### Setting up your development environment

You should have JDK 1.8 or later installed in your system.

# Contributing
## Contributing

We are always very happy to have contributions, whether for typo fix, bug fix or big new features.
Please do not ever hesitate to ask a question or send a pull request.
@@ -21,7 +21,7 @@ Please do not ever hesitate to ask a question or send a pull request.
We strongly value documentation and integration with other projects.
We are very glad to accept improvements for these aspects.

## GitHub workflow
### GitHub workflow

We use the `master` branch as the development branch, which indicates that this is a unstable branch.

@@ -44,7 +44,7 @@ The reviewers will review the code.
Before merging a PR, squash any fix review feedback, typo, merged, and rebased sorts of commits.
The final commit message should be clear and concise.

## Open an issue / PR
### Open an issue / PR

We use [GitHub Issues](https://github.com/alibaba/Sentinel/issues) and [Pull Requests](https://github.com/alibaba/Sentinel/pulls) for trackers.

@@ -54,12 +54,12 @@ Please follow the guideline message in the issue template.

If you want to contribute, please follow the [contribution workflow](#github-workflow) and create a new pull request.
If your PR contains large changes, e.g. component refactor or new components, please write detailed documents
about its design and usage.
about its design and usage.

Note that a single PR should not be too large. If heavy changes are required, it's better to separate the changes
to a few individual PRs.

## Code review
### Code review

All code should be well reviewed by one or more committers. Some principles:

@@ -67,14 +67,14 @@ All code should be well reviewed by one or more committers. Some principles:
- Elegance: New functions, classes or components should be well designed.
- Testability: Important code should be well-tested (high unit test coverage).

# Community
## Community

## Contact us
### Contact us

### Mailing list
#### Mailing list

If you have any questions or advice, please contact sentinel@linux.alibaba.com.

### Gitter
#### Gitter

Our Gitter room: [https://gitter.im/alibaba/Sentinel](https://gitter.im/alibaba/Sentinel).

+ 11
- 16
README.md Parādīt failu

@@ -8,24 +8,17 @@
[![License](https://img.shields.io/badge/license-Apache%202-4EB1BA.svg)](https://www.apache.org/licenses/LICENSE-2.0.html)
[![Gitter](https://badges.gitter.im/alibaba/Sentinel.svg)](https://gitter.im/alibaba/Sentinel)

## What Does It Do?
## Introduction

As distributed systems become increasingly popular, the reliability between services is becoming more important than ever before.
Sentinel takes "flow" as breakthrough point, and works on multiple fields including **flow control**, **circuit breaking** and **system adaptive protection**, to guarantee service reliability.

Sentinel has the following features:

- **Rich applicable scenarios**:
Sentinel has been wildly used in Alibaba, and has covered almost all the core-scenarios in Double-11 (11.11) Shopping Festivals in the past 10 years, such as “Second Kill” which needs to limit burst flow traffic to meet the system capacity, message peak clipping and valley fills, circuit breaking for unreliable downstream services, cluster flow control, etc.

- **Real-time monitoring**:
Sentinel also provides real-time monitoring ability. You can see the runtime information of a single machine in real-time, and the aggregated runtime info of a cluster with less than 500 nodes.

- **Widespread open-source ecosystem**:
Sentinel provides out-of-box integrations with commonly-used frameworks and libraries such as Spring Cloud, Dubbo and gRPC. You can easily use Sentinel by simply add the adapter dependency to your services.

- **Various SPI extensions**:
Sentinel provides easy-to-use SPI extension interfaces that allow you to quickly customize your logic, for example, custom rule management, adapting data sources, and so on.
- **Rich applicable scenarios**: Sentinel has been wildly used in Alibaba, and has covered almost all the core-scenarios in Double-11 (11.11) Shopping Festivals in the past 10 years, such as “Second Kill” which needs to limit burst flow traffic to meet the system capacity, message peak clipping and valley fills, circuit breaking for unreliable downstream services, cluster flow control, etc.
- **Real-time monitoring**: Sentinel also provides real-time monitoring ability. You can see the runtime information of a single machine in real-time, and the aggregated runtime info of a cluster with less than 500 nodes.
- **Widespread open-source ecosystem**: Sentinel provides out-of-box integrations with commonly-used frameworks and libraries such as Spring Cloud, Dubbo and gRPC. You can easily use Sentinel by simply add the adapter dependency to your services.
- **Various SPI extensions**: Sentinel provides easy-to-use SPI extension interfaces that allow you to quickly customize your logic, for example, custom rule management, adapting data sources, and so on.

## Documentation

@@ -63,9 +56,9 @@ Wrap code snippet via Sentinel API: `SphU.entry("resourceName")` and `entry.exit
```java
Entry entry = null;

try {
try {
entry = SphU.entry("HelloWorld");
// BIZ logic being protected
System.out.println("hello world");
} catch (BlockException e) {
@@ -82,7 +75,8 @@ So far the code modification is done. We also provide [annotation support module

### 3. Define Rules

If we want to limit the access times of the resource, we can define rules. The following code defines a rule that limits access to the reource to 20 times per second at the maximum.
If we want to limit the access times of the resource, we can **set rules to the resource**.
The following code defines a rule that limits access to the resource to 20 times per second at the maximum.

```java
List<FlowRule> rules = new ArrayList<>();
@@ -112,6 +106,7 @@ After running the demo for a while, you can see the following records in `~/logs

p stands for incoming request, block for blocked by rules, success for success handled by Sentinel, e for exception count, rt for average response time (ms)
```

This shows that the demo can print "hello world" 20 times per second.

More examples and information can be found in the [How To Use](https://github.com/alibaba/Sentinel/wiki/How-to-Use) section.
@@ -140,7 +135,7 @@ Contact us: sentinel@linux.alibaba.com

Contributions are always welcomed! Please see [CONTRIBUTING](./CONTRIBUTING.md) for detailed guidelines.

You can start with the issues labeled with [`good first issue`](https://github.com/alibaba/Sentinel/pulls?q=is%3Apr+is%3Aopen+label%3A%22good+first+issue%22).
You can start with the issues labeled with [`good first issue`](https://github.com/alibaba/Sentinel/issues?q=is%3Aissue+is%3Aopen+label%3A%22good+first+issue%22).

## Credits



+ 3
- 5
doc/awesome-sentinel.md Parādīt failu

@@ -18,8 +18,6 @@ You can also add to [sentinel-group/sentinel-awesome](https://github.com/sentine

## Tutorials



## Samples / Demos

- [sentinel-zuul-example](https://github.com/tigerMoon/sentinel-zuul-sample): A simple project integration Sentinel to Spring Cloud Zuul which provide Service and API Path level flow control management by [tiger](https://github.com/tigerMoon)
@@ -31,8 +29,8 @@ You can also add to [sentinel-group/sentinel-awesome](https://github.com/sentine
## Blogs

- [Sentinel 为 Dubbo 服务保驾护航](http://dubbo.apache.org/zh-cn/blog/sentinel-introduction-for-dubbo.html) by [Eric Zhao](https://github.com/sczyh30)
- [Sentinel 与 Hystrix 的对比](https://github.com/alibaba/Sentinel/wiki/Sentinel-%E4%B8%8E-Hystrix-%E7%9A%84%E5%AF%B9%E6%AF%94)
- [Guideline: 从 Hystrix 迁移到 Sentinel](https://github.com/alibaba/Sentinel/wiki/Guideline:-%E4%BB%8E-Hystrix-%E8%BF%81%E7%A7%BB%E5%88%B0-Sentinel)
- [Sentinel 与 Hystrix 的对比](https://github.com/alibaba/Sentinel/wiki/Sentinel-%E4%B8%8E-Hystrix-%E7%9A%84%E5%AF%B9%E6%AF%94) by [Eric Zhao](https://github.com/sczyh30)
- [Guideline: 从 Hystrix 迁移到 Sentinel](https://github.com/alibaba/Sentinel/wiki/Guideline:-%E4%BB%8E-Hystrix-%E8%BF%81%E7%A7%BB%E5%88%B0-Sentinel) by [Eric Zhao](https://github.com/sczyh30)
- [Sentinel 控制台监控数据持久化【MySQL】(Spring Data JPA)](https://www.cnblogs.com/cdfive2018/p/9838577.html) by [cdfive](https://github.com/cdfive)
- [Sentinel 控制台监控数据持久化【InfluxDB】](https://www.cnblogs.com/cdfive2018/p/9914838.html) by [cdfive](https://github.com/cdfive)
- [Sentinel一体化监控解决方案 CrateDB+Grafana](https://blog.csdn.net/huyong1990/article/details/82392386) by [Young Hu](https://github.com/YoungHu)
- [Sentinel一体化监控解决方案 CrateDB+Grafana](https://blog.csdn.net/huyong1990/article/details/82392386) by [Young Hu](https://github.com/YoungHu)

+ 1
- 1
sentinel-adapter/sentinel-dubbo-adapter/README.md Parādīt failu

@@ -3,7 +3,7 @@
> Note: 中文文档请见[此处](https://github.com/alibaba/Sentinel/wiki/%E4%B8%BB%E6%B5%81%E6%A1%86%E6%9E%B6%E7%9A%84%E9%80%82%E9%85%8D#dubbo)。

Sentinel Dubbo Adapter provides service consumer filter and provider filter
for [Dubbo](http://dubbo.io/) services.
for [Dubbo](http://dubbo.io/) services.

To use Sentinel Dubbo Adapter, you can simply add the following dependency to your `pom.xml`:



+ 1
- 1
sentinel-adapter/sentinel-grpc-adapter/README.md Parādīt failu

@@ -3,7 +3,7 @@
Sentinel gRPC Adapter provides client and server interceptor for gRPC services.

> Note that currently the interceptor only supports unary methods in gRPC.
In some circumstances (e.g. asynchronous call), the RT metrics might not be accurate.
> In some circumstances (e.g. asynchronous call), the RT metrics might not be accurate.

## Client Interceptor



+ 0
- 1
sentinel-dashboard/README.md Parādīt failu

@@ -48,5 +48,4 @@ java -Dserver.port=8080 \

客户端正确配置并启动后,会主动向控制台发送心跳包,汇报自己的存在;控制台收到客户端心跳包之后,会在左侧导航栏中显示该客户端信息。控制台能够看到客户端的机器信息,则表明客户端接入成功了。


更多:[控制台功能介绍](./Sentinel_Dashboard_Feature.md)。

+ 5
- 5
sentinel-dashboard/src/main/webapp/resources/README.md Parādīt failu

@@ -1,4 +1,4 @@
# Sentinel-Dashboard
# Sentinel Dashboard Frontend

## Env Requirement

@@ -6,8 +6,8 @@

## Code Guide

- Code Style Guide for HTML/CSS: https://codeguide.bootcss.com/
- Airbnb JavaScript Style Guide: https://github.com/airbnb/javascript/tree/es5-deprecated/es5
- [Code Style Guide for HTML/CSS](https://codeguide.bootcss.com/)
- [Airbnb JavaScript Style Guide](https://github.com/airbnb/javascript/tree/es5-deprecated/es5)

## Install Packages

@@ -27,6 +27,6 @@ npm start
npm run build
```

## CREDIT:
## Credit

- [sb-admin-angular](https://github.com/start-angular/sb-admin-angular)
- [sb-admin-angular](https://github.com/start-angular/sb-admin-angular)

+ 5
- 5
sentinel-dashboard/src/main/webapp/resources/README_zh.md Parādīt failu

@@ -1,4 +1,4 @@
# Sentinel-Dashboard
# Sentinel Dashboard Frontend

## 环境要求

@@ -6,8 +6,8 @@

## 编码规范

- HTML/CSS 遵循 Bootstrap 编码规范,参考:https://codeguide.bootcss.com/
- JavaScript 遵循 Airbnb JavaScript Style Guide,参考:https://github.com/airbnb/javascript/tree/es5-deprecated/es5
- HTML/CSS 遵循 [Bootstrap 编码规范](https://codeguide.bootcss.com/)
- JavaScript 遵循 [Airbnb JavaScript Style Guide](https://github.com/airbnb/javascript/tree/es5-deprecated/es5) 以及最新的 ES 6 标准

## 安装依赖

@@ -27,6 +27,6 @@ npm start
npm run build
```

## CREDIT:
## Credit

- [sb-admin-angular](https://github.com/start-angular/sb-admin-angular)
- [sb-admin-angular](https://github.com/start-angular/sb-admin-angular)

+ 2
- 8
sentinel-extension/sentinel-annotation-aspectj/README.md Parādīt failu

@@ -9,14 +9,8 @@ The `@SentinelResource` annotation indicates a resource definition, including:

- `value`: Resource name, required (cannot be empty)
- `entryType`: Resource entry type (inbound or outbound), `EntryType.OUT` by default
- `fallback`: Fallback method when degraded (optional).
The fallback method should be located in the same class with original method.
The signature of the fallback method should match the original method (parameter types and return type).
- `blockHandler`: Handler method that handles `BlockException` when blocked.
The signature should match original method, with the last additional parameter type `BlockException`.
The block handler method should be located in the same class with original method by default.
If you want to use method in other classes, you can set the `blockHandlerClass` with corresponding `Class`
(Note the method in other classes must be *static*).
- `fallback`: Fallback method when degraded (optional). The fallback method should be located in the same class with original method. The signature of the fallback method should match the original method (parameter types and return type).
- `blockHandler`: Handler method that handles `BlockException` when blocked. The signature should match original method, with the last additional parameter type `BlockException`. The block handler method should be located in the same class with original method by default. If you want to use method in other classes, you can set the `blockHandlerClass` with corresponding `Class` (Note the method in other classes must be *static*).

For example:



+ 1
- 4
sentinel-extension/sentinel-datasource-redis/README.md Parādīt failu

@@ -31,8 +31,7 @@ FlowRuleManager.register2Property(redisDataSource.getProperty());
- `ruleKey`: the rule persistence key of a Redis String
- `channel`: the channel to subscribe

You can also create multi data sources to subscribe for different rule type.

You can also create multi data sources to subscribe for different rule type.

Note that the data source first loads initial rules from a Redis String (provided `ruleKey`) during initialization.
So for consistency, users should publish the value and save the value to the `ruleKey` simultaneously like this (using Redis transaction):
@@ -60,7 +59,6 @@ public <T> void pushRules(List<T> rules, Converter<List<T>, String> encoder) {

## How to build RedisConnectionConfig


### Build with Redis standalone mode

```java
@@ -73,7 +71,6 @@ RedisConnectionConfig config = RedisConnectionConfig.builder()

```


### Build with Redis Sentinel mode

```java


+ 1
- 3
sentinel-extension/sentinel-parameter-flow-control/README.md Parādīt failu

@@ -56,6 +56,4 @@ The description for fields of `ParamFlowRule`:
| paramIdx | the index of provided parameter in `SphU.entry(xxx, args)` (**required**) ||
| paramFlowItemList | the exception items of parameter; you can set threshold to a specific parameter value ||


Now the parameter flow control rules will take effect.

Now the parameter flow control rules will take effect.

Notiek ielāde…
Atcelt
Saglabāt