Commit 9c3effb 1 parent 84c9743 commit 9c3effb Copy full SHA for 9c3effb
File tree 5 files changed +1207
-17
lines changed
docs/instrumentation/ruby
5 files changed +1207
-17
lines changed Original file line number Diff line number Diff line change
1
+ CacheExpires : 2200h # ~ 3 months
1
2
DirectoryPath : public
2
3
IgnoreDirectoryMissingTrailingSlash : true
3
4
IgnoreAltMissing : true
@@ -14,9 +15,16 @@ IgnoreURLs: # list of regexs of paths or URLs to be ignored
14
15
- ^https?://127\.0\.0\.1\b
15
16
- ^https?://(otel-demo|traefik)\.localhost
16
17
17
- - ^https?://(www\.)?github\b # TODO: process GitHub links too
18
- - ^https?://(www\.)?linkedin\.com\b # Always yields 999 Request Denied
19
- - ^https://mvnrepository\.com # Always yields 403 Forbidden
18
+ - ^https://(www\.)?linkedin\.com\b # Always yields 999 Request Denied
19
+ - ^https://(www\.)?mvnrepository\.com # Always yields 403 Forbidden
20
+
21
+ # Ignore Docsy-generated GitHub links:
22
+ - ^https?://github\.com/.*?/.*?/(new|edit)/ # view-page, edit-source etc
23
+ # TODO: drop after fix to https://github.com/google/docsy/issues/1432
24
+ - ^https://github.com/open-telemetry/opentelemetry.io/commit/ # last mod
25
+
26
+ # Ignore links to GH repo content for now.
27
+ - ^https?://github\.com/.*?/.*?/(blob|tree)/
20
28
21
29
# TODO: drop after fix to https://github.com/rust-lang/crates.io/issues/788
22
30
- ^https://crates\.io/crates
Original file line number Diff line number Diff line change 2
2
title : Apache APISIX Integrates with OpenTelemetry to Collect Tracing Data
3
3
linkTitle : Apache APISIX-Opentelemetry Integration
4
4
date : 2022-03-26
5
- author : >-
6
- [Haochao Zhuang](https://github.com/dmsolr),
7
- [Fei Han](https://github.com/hf400159)
5
+ author : " [Haochao Zhuang](https://github.com/dmsolr), Fei Han"
8
6
canonical_url : https://apisix.apache.org/blog/2022/02/28/apisix-integration-opentelemetry-plugin/
9
7
spelling : cSpell:ignore APISIX
10
8
---
Original file line number Diff line number Diff line change @@ -14,11 +14,11 @@ weight: 24
14
14
OpenTelemetry Ruby is in use by a number of companies, including:
15
15
16
16
- [ Heroku] ( https://heroku.com )
17
- - [ GitHub] ( https://github.com/ )
18
- - [ Fulcrum] ( https://www.fulcrumapp.com/ )
19
- - [ Puppet] ( https://puppet.com/ )
17
+ - [ GitHub] ( https://github.com )
18
+ - [ Fulcrum] ( https://www.fulcrumapp.com )
19
+ - [ Puppet] ( https://puppet.com )
20
20
- [ Shopify] ( https://shopify.com )
21
- - [ TableCheck] ( https://www.tablecheck.com/ )
21
+ - [ TableCheck] ( https://www.tablecheck.com )
22
22
- [ Dropbox DocSend] ( https://www.docsend.com )
23
23
24
24
If you would like to add your name to this list, please feel free to submit a pull request.
Original file line number Diff line number Diff line change 30
30
"clean" : " make clean" ,
31
31
"cp:spec" : " ./scripts/content-modules/cp-pages.sh" ,
32
32
"diff:check" : " git diff --name-only --exit-code || (echo; echo 'WARNING: the files above have not been committed'; echo)" ,
33
- "diff:fail" : " git diff --name-only --exit-code || (echo; echo 'ERROR: the files above have changed. Locally rerun `npm run test` and commit changes'; echo; exit 1)" ,
33
+ "diff:fail" : " git diff --name-only --exit-code || (echo; echo 'ERROR: the files above have changed. Locally rerun `npm run test` and commit changes'; echo; git diff | head -100; exit 1)" ,
34
34
"get:submodule" : " npm run _get:${GET:-submodule}" ,
35
35
"make:public" : " make public ls-public" ,
36
36
"postbuild:preview" : " npm run _check:links" ,
You can’t perform that action at this time.
0 commit comments