Skip to content

Commit f45a6ac

Browse files
committed
Update the github pages domain to block.github.io
1 parent 2554c0d commit f45a6ac

File tree

11 files changed

+14
-16
lines changed

11 files changed

+14
-16
lines changed

CHANGES.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
See the [Blip Release Notes](https://cashapp.github.io/blip/about/release-notes/) for the changes in each release.
1+
See the [Blip Release Notes](https://block.github.io/blip/about/release-notes/) for the changes in each release.

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ At minimum, all code contributions must meet these criteria:
6565

6666
- [x] Passes all tests
6767
- [x] Has good code comments
68-
- [x] Updates the relevant [docs](https://cashapp.github.io/blip/)
68+
- [x] Updates the relevant [docs](https://block.github.io/blip/)
6969
- [x] Is formatted with `go fmt`
7070
- [x] Is idiomatic Go and well designed
7171
- [x] Follows existing conventions and style

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ Blip was created by engineers at [Cash App](https://cash.app) and [Square](https
1010

1111
## Users
1212

13-
|:book: [Blip Documentation](https://cashapp.github.io/blip/)|
13+
|:book: [Blip Documentation](https://block.github.io/blip/)|
1414
|---|
1515

16-
:link: [Release Notes](https://cashapp.github.io/blip/release-notes)
16+
:link: [Release Notes](https://block.github.io/blip/release-notes)
1717

1818
## Developers
1919

RELEASE.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Release Checklist
22

33
This document outlines how to release a new version of Blip.
4-
It is not the [release notes](https://cashapp.github.io/blip/release-notes).
4+
It is not the [release notes](https://block.github.io/blip/about/release-notes).
55

66
Review Blip [versioning](https://github.com/cashapp/blip/blob/main/CONTRIBUTING.md#versioning) guidelines.
77

@@ -15,11 +15,11 @@ First, create a branch to prepare the new version.
1515

1616
## 2. Documentation
1717

18-
Second, update the [documentation](https://cashapp.github.io/blip/).
18+
Second, update the [documentation](https://block.github.io/blip/).
1919
Run `docs/serve.sh` to edit locally.
2020

21-
- [ ] Write [release notes](https://cashapp.github.io/blip/release-notes) for the new version (maintain style: past tense one liners)
22-
- [ ] Check and update [Readiness](https://cashapp.github.io/blip/ready)
21+
- [ ] Write [release notes](https://block.github.io/blip/about/release-notes) for the new version (maintain style: past tense one liners)
22+
- [ ] Check and update [Readiness](https://block.github.io/blip/ready)
2323
- [ ] Update other pages affected by new changes (or ask contributors to update docs affected by their changes)
2424
- [ ] Glance over all docs to make sure nothing obvious is broken or wrong (including HTML/CSS layout)
2525

blip.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ type HTTPClientFactory interface {
168168
MakeForSink(sinkName, monitorId string, opts, tags map[string]string) (*http.Client, error)
169169
}
170170

171-
// Monitor states used for plan changing: https://cashapp.github.io/blip/plans/changing/
171+
// Monitor states used for plan changing: https://block.github.io/blip/plans/changing/
172172
const (
173173
STATE_NONE = ""
174174
STATE_OFFLINE = "offline"

collector.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,5 +135,5 @@ type CollectorFactory interface {
135135
Make(domain string, args CollectorFactoryArgs) (Collector, error)
136136
}
137137

138-
// ErrMore signals that a collector will return more values. See https://cashapp.github.io/blip/develop/collectors/#long-running.
138+
// ErrMore signals that a collector will return more values. See https://block.github.io/blip/develop/collectors/#long-running.
139139
var ErrMore = errors.New("more metrics")

docs/content/about/release-notes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ func(metrics []*blip.Metrics) error {
4848
* Removed parallel level collection; made level collection serial
4949
* Fixed long-running domain handling
5050
* Added collector max runtime (CMR) context _per domain_ equal to minimum level frequency
51-
* Added [`ErrMore`](https://cashapp.github.io/blip/develop/collectors/#long-running)
51+
* Added [`ErrMore`](https://block.github.io/blip/develop/collectors/#long-running)
5252
* Added collector fault fencing: collector and its results are fenced off (dropped) if non-responsive or returns too late
5353
* Added domain priority: collectors are started by ascending domain frequency (e.g. 5s domain collectors start before 20s domain collectors)
5454
* Added `blip.Metrics.Interval` field

examples/copy-meta/README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,5 +59,3 @@ The `source` meta value for each domain is different:
5959
These two are difference because of the multi-level replication topology: 02 is the immediate source of 03, but 01 is the heartbeat source.
6060

6161
**This plugin sets `repl.lag` `source` meta value to the immediate source: 02.**
62-
63-
See [Integrate > Plugins](https://cashapp.github.io/blip/v1.0/integrate#plugins) to learn how to use plugins.

examples/integrate/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Blip Example: Using Integrations
22

3-
This example demonstrates using several different [integrations](https://cashapp.github.io/blip/v1.0/integrate) to customize Blip:
3+
This example demonstrates using several different to customize Blip:
44

55
* Register custom metrics collector
66
* Set a custom plugin

monitor/level_collector.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ import (
2626
// looks roughly like: LCO -> Engine -> metric collectors -> MySQL.
2727
// In Run, the LCO checks every 1s for the highest level in the plan to collect.
2828
// For example, after 5s it'll collect levels with a frequency divisible by 5s.
29-
// See https://cashapp.github.io/blip/v1.0/intro/plans.
29+
// See https://block.github.io/blip/plans/file/.
3030
//
3131
// Metrics from MySQL flow back to the LCO as blip.Metrics, which the LCO
3232
// passes to blip.Plugin.TransformMetrics if specified, then to all sinks

0 commit comments

Comments
 (0)