Commit Graph

407 Commits

Author SHA1 Message Date
吴晟 Wu Sheng bebaf9bd4d
Update doc links for adopting the 2 nodejs agents. (#5182) 2020-07-27 17:28:50 +08:00
吴晟 Wu Sheng 933be1240a
Update README.md (#5176)
Update the logo wall.
2020-07-26 19:33:40 +08:00
吴晟 Wu Sheng 9372e11eb2
Update README.md (#5102) 2020-07-15 21:36:26 +08:00
吴晟 Wu Sheng e5971ae4fc
8.0.1 is on releasing vote. (#4946) 2020-06-19 08:48:09 +08:00
吴晟 Wu Sheng 101442bedc
Fix a wrong config and update the youtube video. (#4899) 2020-06-11 11:06:37 +08:00
吴晟 Wu Sheng df83490ae6
UI is ready for 8.0.0 release. (#4896) 2020-06-10 20:35:46 +08:00
吴晟 Wu Sheng 2dd9a3fd19
Add v8 upgrade document and fix some tiny doc issues. (#4787)
* Add v8 upgrade document and fix some tiny doc issues.

* Add link to STAM paper.
2020-05-14 18:43:32 +08:00
kezhenxu94 c9ac104120
Add python project into the project page (#4752)
* Add python project into the project page

* Update README.md

Co-authored-by: 吴晟 Wu Sheng <wu.sheng@foxmail.com>
2020-05-07 08:25:59 +08:00
吴晟 Wu Sheng 071708a4a3
Support default value in labeled-value and heatmap query. (#4711)
* Support default value in labeled-value and heatmap query.

* Update a little document.
2020-04-25 21:24:15 +08:00
吴晟 Wu Sheng b635e254c4
Provide Meter(metrics) system (#4694)
Here are the basic and simple usages of the MeterSystem APIs.

## Meter Creation
New meter could be created based on metrics name, function, scope and data type. 
1. Metrics name is still the storage entity name.
2. Functions are every similar with the OAL function, just accepting different input.
```java
final MeterSystem meterSystem = MeterSystem.meterSystem(getManager());
meterSystem.create("test_long_metrics", "avg", ScopeType.SERVICE, Long.class);
```
NOTICE, this creation should only be called in the `module#prepare` stage, otherwise, `Can't create new metrics anymore` exception will be raised after the **CORE** module `start` stage finished. You may find out, there is a chance `create` could be executed successfully in your own `module#start` stage, but it it just because of the sequence of provider loaded by the class loader, **no guarantee, so please don't do that**.

## Runtime Calculation
`AcceptableValue` is the object created at the runtime to accept new metrics value.
```java
         final MeterSystem service = getManager().find(CoreModule.NAME).provider().getService(MeterSystem.class);
        Executors.newSingleThreadScheduledExecutor().scheduleAtFixedRate(new Runnable() {
            @Override
            public void run() {
                final AcceptableValue<Long> value = service.buildMetrics("test_long_metrics", Long.class);
                value.accept(MeterEntity.newService("abc"), 5L);
                value.setTimeBucket(TimeBucket.getMinuteTimeBucket(System.currentTimeMillis()));
                service.doStreamingCalculation(value);
            }
        }, 2, 2, TimeUnit.SECONDS);
```

## Meter Functions
Right now, only `avg` function has been implemented. I submit this PR as soon as possible to get your feedback. I will add more functions.

## Notice
1. Make slow trace query available in the sampled record. Logically, they are the same thing. The UI doesn't need to concern about the trace as a special case.
2. Endpoint dependency will be removed from the dashboard. Because no query available for it. We will provide a new page for that in 8.1
3. Comparison page will be removed due to dashboard is powerful enough to replace it.
2020-04-24 23:33:13 +08:00
kezhenxu94 c11ad038cc
Count the coverage in E2E tests and Plugin tests (#4651) 2020-04-15 23:09:05 +08:00
吴晟 Wu Sheng 181bf13daf
Update README.md (#4656) 2020-04-15 16:23:05 +08:00
吴晟 Wu Sheng 6fe2041b47
Make 8.0.0 Core available. New protocol and register removed. (#4599)
Here are the list of changes we made in this pull request. Top 3 are the principle changes, others are following these principles.
1. New agent and mesh report protocol. 
2. New agent header protocol. 
3. Service register, instance register and network address register have been removed permanently.
4. Service traffic, instance traffic and network alias metrics are added to replace the service, instance and network address inventory.
5. Register process has been removed.
6. Metrics stream process supports insert only mode, especially for traffic entities.
7. Metrics stream process supports no-downsampling mode for traffic entities and network alias.
8. Remove all register mechanism and cache in the java agent.
9. Remove MONTH step in GraphQL query.
10. Update UI to remove MONTH step query, the max query range is 60 days now.
11. Simplify the TTL to metrics and record. And the unit has been formatted in Day unit. No specific TTL for ElasticSearch storage.
12. Buffer mechanism of trace receiver and mesh receiver has been removed due to no register.
13. New service id, instance id and endpoint id rules, including service relation, instance relation and endpoint relation id rules.
14. Java agent support `keep tracing` mode, meaning, agent generating tracing context even the backend is unconnected/unavailable.
15. Plugin test tool up to date, in order to support new protocol.
16. Plugin tests expected data files updated.
17. E2E tests updated.
18. Telemetry of Grafana config has been merged into one.
19. Documentation updates.
20. [TBD] InfluxDB storage implementation is not available, need @dmsolr to fix later, in order to reduce the master change block by this PR.
2020-04-10 11:03:24 +08:00
吴晟 Wu Sheng fa9a44b750
Version number changed including a little documentation. (#4597) 2020-03-31 12:57:20 +08:00
吴晟 Wu Sheng 259a147682
Add miss doc about collecting parameters in the profiled traces. (#4552) 2020-03-23 09:41:02 +08:00
吴晟 Wu Sheng 5d12e586c3
Add the UI usage documentation (#4533)
* Add UI documentation.

* Fix

* Fix size.
2020-03-18 12:16:57 +08:00
吴晟 Wu Sheng 4245334bac
Officially add LUA agent link in the main repo and document. (#4402) 2020-02-23 22:27:24 +08:00
zhang-wei 23b15e645b Update README.md (#4175)
* update doc version

* ref 6.x branch

* ref 6.x branch

* update doc/README.md

* remove 5.x ...
2020-01-05 18:59:35 +08:00
Weiyi Liu b4ed399571 Fix typo. (#4076) 2019-12-17 15:30:36 +08:00
kezhenxu94 a4c39777e0
[CI] Add IT/E2E check statuses to index page (#4074) 2019-12-16 21:03:59 +08:00
吴晟 Wu Sheng dee39d3ddb
Update README.md (#4070) 2019-12-16 15:17:04 +08:00
吴晟 Wu Sheng d431da897f
Add more users and most are very famous (#4068)
* Add more users and typical enterprises.

* Adjust some descriptions.

* Add more companies into powered-by page and root readme.

* Fix typo.

* Add one more bank.
2019-12-16 11:30:51 +08:00
吴晟 Wu Sheng 2c3c4dd2c9 Add China Mobile into the user list. (#3986) 2019-11-30 23:42:39 +08:00
吴晟 Wu Sheng 7a7d03bfdd Add Peking University (#3816) 2019-11-09 21:35:07 +08:00
吴晟 Wu Sheng bbf37ff6f2
Update README.md (#3763) 2019-11-01 11:59:30 +05:30
吴晟 Wu Sheng 0ccce19283
Add NetEase to our user list. (#3742) 2019-10-30 12:46:47 +05:30
吴晟 Wu Sheng 3a6c10df6f Update README.md (#3719) 2019-10-27 10:13:40 +08:00
吴晟 Wu Sheng 6d18a0f97f
Update README.md (#3534) 2019-09-27 15:47:12 +08:00
Xin,Zhang bf504ab733 Update demo environment (#3149)
* Update demo environment

* Update Jenkinsfile
2019-07-24 10:31:36 +08:00
吴晟 Wu Sheng 145e0f5bef
Update README.md 2019-06-28 13:44:04 +08:00
吴晟 Wu Sheng 1b73529e8f
Update README.md (#2744) 2019-05-23 18:57:39 +08:00
吴晟 Wu Sheng d95ab26308
Update README.md (#2739) 2019-05-23 13:28:51 +08:00
吴晟 Wu Sheng 9c2f5c9c25
Update README.md (#2701) 2019-05-17 16:37:41 +08:00
吴晟 Wu Sheng 3ca7f7b73c
Support ALS and observe service mesh without Mixer (#2460)
* Add ALS proto and receiver in envoy
2019-05-17 15:29:38 +08:00
吴晟 Wu Sheng 6c9613be38
Link Go agent project in main repo. (#2697)
* Link Go agent project in main repo.

* Fix link.
2019-05-17 14:23:12 +08:00
彭勇升 pengys ff08ba7fa5 Update README.md (#2655)
Add the second QQ group number.
2019-05-13 14:14:05 +08:00
彭勇升 pengys ed78dabe8b Rename metric and indicator to metrics. (#2643)
* Rename metric to metrics.

* Fixed test case execute failure issues.
2019-05-10 08:05:37 +08:00
吴晟 Wu Sheng d1d4eedf6b
Update README.md (#2589)
Version badge udpate
2019-05-05 21:10:28 +08:00
康智冬 2dcf27b799 Update all "incubator-skywalking" to "skywalking" ,"incubator-servicecomb-java-chassis" to "servicecomb-java-chassis" correctly, and ".gitmodules" will update at #2531 (#2548) 2019-04-28 15:47:14 +08:00
吴晟 Wu Sheng 47608a67f6
Show RocketBot new sceenshots. (#2545) 2019-04-27 19:37:29 +08:00
吴晟 Wu Sheng 4e50bcf094
Add xueqiu.com to powered-by and user wall update (#2508)
* Update powered-by.md

* Update README.md

User wall update.
2019-04-22 23:55:56 +08:00
吴晟 Wu Sheng 3354c0c4ab
Remove many incubator/incubating things. (#2499) 2019-04-21 11:11:09 +08:00
吴晟 Wu Sheng b7b1ca7b8a
Update README.md (#2447) 2019-04-04 10:17:40 -07:00
吴晟 Wu Sheng 8c1b816d1e
Update user wall (#2436) 2019-04-02 10:51:41 -07:00
吴晟 Wu Sheng ff6fb90d38
Add jaeger traces support (#2434)
* Make Jaeger receiver works in 12450 as default.

* Finish compile and codebase.

* Make codes runnable.

* Finish Jaeger query tests.

* Add document for jaeger receiver.

* Add readme.

* Fix a break link.

* Finish doc.
2019-04-01 20:52:59 -07:00
吴晟 Wu Sheng 2aa46edbb8
Update README.md (#2427) 2019-03-31 10:45:15 -07:00
吴晟 Wu Sheng 69fbf7bfb8
Update README.md (#2375) 2019-03-18 21:54:40 +08:00
吴晟 Wu Sheng 499638775f
New architecture graph, new documents. (#2345) 2019-03-11 18:12:59 +08:00
panjuan 4e338c8862 Update README.md (#2311)
Fix it to follow the [REPORTING GUIDELINES](CODE_OF_CONDUCT.md#reporting-guidelines).
2019-03-02 21:10:42 +08:00
Dhi Aurrahman b8a414edf5 Envoy metrics receiver plugin protos (#2304)
* Add envoy metrics service protos

This patch imports protos from envoyproxy/data-plane-api and
prometheus/client_model to enable metrics service service feature in
SkyWalking OAP.

Signed-off-by: Dhi Aurrahman <dio@tetrate.io>

* Add Envoy related docs

Signed-off-by: Dhi Aurrahman <dio@tetrate.io>

* Update the LICENSE to include new protos license

From:
- envoyproxy/data-plane-api
- prometheus/client_model

Signed-off-by: Dhi Aurrahman <dio@tetrate.io>

* Add a complete config.yaml example

Signed-off-by: Dhi Aurrahman <dio@tetrate.io>

* Add note on Envoy dynamic config

Signed-off-by: Dhi Aurrahman <dio@tetrate.io>

* Add protoc-gen-validate license

Signed-off-by: Dhi Aurrahman <dio@tetrate.io>

* Add samples

Signed-off-by: Dhi Aurrahman <dio@tetrate.io>

* Make CI and license right.

* Update README.md

@dhi typo :P

* Update README.md

Another typo :P

* Delete metrics.json

metrics.json is included in identify.json and not be linked in document.
2019-03-01 22:13:59 +08:00