Skip to content

Commit b419e44

Browse files
authored
Point to super/issues instead of zed/issues (#89)
1 parent 63d4f6a commit b419e44

File tree

70 files changed

+113
-113
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

70 files changed

+113
-113
lines changed

versioned_docs/version-v1.10.0/integrations/amazon-s3.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,5 +44,5 @@ environment variable to the hostname or URI of the provider.
4444
[Like the AWS CLI tools themselves](https://repost.aws/knowledge-center/s3-event-notification-filter-wildcard),
4545
Zed does not currently expand UNIX-style `*` wildcards in S3 URIs. If you
4646
find this limitation is impacting your workflow, please add your use case
47-
details as a comment in issue [zed/1994](https://github.com/brimdata/zed/issues/1994)
47+
details as a comment in issue [zed/1994](https://github.com/brimdata/super/issues/1994)
4848
to help us track the priority of possible enhancements in this area.

versioned_docs/version-v1.10.0/integrations/zeek/shaping-zeek-ndjson.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -308,8 +308,8 @@ steps:
308308
... | put this := shape(schemas[_path]) | put this := crop(schemas[_path])
309309
```
310310
311-
Open issues [zed/2585](https://github.com/brimdata/zed/issues/2585) and
312-
[zed/2776](https://github.com/brimdata/zed/issues/2776) both track planned
311+
Open issues [zed/2585](https://github.com/brimdata/super/issues/2585) and
312+
[zed/2776](https://github.com/brimdata/super/issues/2776) both track planned
313313
future improvements to this part of Zed shapers.
314314
315315
## Invoking the Shaper From `zq`
@@ -383,13 +383,13 @@ originating IP address:
383383
zq -I shaper.zed -f table '| count() by network_of(id.orig_h) | sort -r' conn.log
384384
```
385385

386-
[zed/2584](https://github.com/brimdata/zed/issues/2584) tracks a planned
386+
[zed/2584](https://github.com/brimdata/super/issues/2584) tracks a planned
387387
improvement for this use of `zq -I`.
388388

389389
If you intend to frequently shape the same NDJSON data, you may want to create
390390
an alias in your
391391
shell to always invoke `zq` with the necessary `-I` flag pointing to the path
392-
of your finalized shaper. [zed/1059](https://github.com/brimdata/zed/issues/1059)
392+
of your finalized shaper. [zed/1059](https://github.com/brimdata/super/issues/1059)
393393
tracks a planned enhancement to persist such settings within Zed itself rather
394394
than relying on external mechanisms such as shell aliases.
395395

@@ -398,7 +398,7 @@ than relying on external mechanisms such as shell aliases.
398398
If you wish to browse your shaped data with [Zui](https://zui.brimdata.io/),
399399
the best way to accomplish this at the moment would be to use `zq` to convert
400400
it to ZNG [as shown above](#invoking-the-shaper-from-zq), then drag the ZNG
401-
into Zui as you would any other log. An enhancement [zed/2695](https://github.com/brimdata/zed/issues/2695)
401+
into Zui as you would any other log. An enhancement [zed/2695](https://github.com/brimdata/super/issues/2695)
402402
is planned that will soon make it possible to attach your shaper to a
403403
Pool. This will allow you to drag the original NDJSON logs directly into the
404404
Pool in Zui and have the shaping applied as the records are being committed to
@@ -408,5 +408,5 @@ the Pool.
408408

409409
If you're having difficulty, interested in shaping other data sources, or
410410
just have feedback, please join our [public Slack](https://www.brimdata.io/join-slack/)
411-
and speak up or [open an issue](https://github.com/brimdata/zed/issues/new/choose).
411+
and speak up or [open an issue](https://github.com/brimdata/super/issues/new/choose).
412412
Thanks!

versioned_docs/version-v1.10.0/language/statements.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -207,9 +207,9 @@ allowed and will produce an error.
207207

208208
User-defined operators are a new feature in Zed that has been made available
209209
despite known limitations described in open issues
210-
[zed/4651](https://github.com/brimdata/zed/issues/4651),
211-
[zed/4692](https://github.com/brimdata/zed/issues/4692), and
212-
[zed/4701](https://github.com/brimdata/zed/issues/4701). If you encounter
210+
[zed/4651](https://github.com/brimdata/super/issues/4651),
211+
[zed/4692](https://github.com/brimdata/super/issues/4692), and
212+
[zed/4701](https://github.com/brimdata/super/issues/4701). If you encounter
213213
these or other problems when making use of the feature please comment on the
214214
issues or come talk to us on the [Brim community Slack](https://www.brimdata.io/join-slack/)
215215
as this will help guide the priority with which these limitations are

versioned_docs/version-v1.10.0/language/ztests/language-directed-acyclic-flow-graphs-1.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
# Specifically, the "op1", "op2", and "..." have been filled in with real
1818
# operations, and the "merge" has been replaced with a "sort" for now since
1919
# merge has not yet been fully implemented
20-
# (https://github.com/brimdata/zed/issues/2906).
20+
# (https://github.com/brimdata/super/issues/2906).
2121

2222
script: |
2323
export ZED_LAKE=test

versioned_docs/version-v1.10.0/language/ztests/language-directed-acyclic-flow-graphs-2.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
#
1717
# Specifically, the "op1", "op2", and "..." have been filled in with real
1818
# operations, and a field assignment has been added to the join
19-
# (https://github.com/brimdata/zed/issues/2815).
19+
# (https://github.com/brimdata/super/issues/2815).
2020

2121
script: |
2222
export ZED_LAKE=test

versioned_docs/version-v1.10.0/tutorials/join.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -333,7 +333,7 @@ produces
333333

334334
In the current `join` implementation, explicit entries must be provided in the
335335
`[field-list]` in order to copy values from the opposite input into the joined
336-
results (a possible future enhancement [zed/2815](https://github.com/brimdata/zed/issues/2815)
336+
results (a possible future enhancement [zed/2815](https://github.com/brimdata/super/issues/2815)
337337
may improve upon this). This can be cumbersome if your goal is to copy over many
338338
fields or you don't know the names of all desired fields.
339339

versioned_docs/version-v1.11.0/integrations/amazon-s3.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,5 +44,5 @@ environment variable to the hostname or URI of the provider.
4444
[Like the AWS CLI tools themselves](https://repost.aws/knowledge-center/s3-event-notification-filter-wildcard),
4545
Zed does not currently expand UNIX-style `*` wildcards in S3 URIs. If you
4646
find this limitation is impacting your workflow, please add your use case
47-
details as a comment in issue [zed/1994](https://github.com/brimdata/zed/issues/1994)
47+
details as a comment in issue [zed/1994](https://github.com/brimdata/super/issues/1994)
4848
to help us track the priority of possible enhancements in this area.

versioned_docs/version-v1.11.0/integrations/zeek/shaping-zeek-ndjson.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -308,8 +308,8 @@ steps:
308308
... | put this := shape(schemas[_path]) | put this := crop(schemas[_path])
309309
```
310310
311-
Open issues [zed/2585](https://github.com/brimdata/zed/issues/2585) and
312-
[zed/2776](https://github.com/brimdata/zed/issues/2776) both track planned
311+
Open issues [zed/2585](https://github.com/brimdata/super/issues/2585) and
312+
[zed/2776](https://github.com/brimdata/super/issues/2776) both track planned
313313
future improvements to this part of Zed shapers.
314314
315315
## Invoking the Shaper From `zq`
@@ -383,13 +383,13 @@ originating IP address:
383383
zq -I shaper.zed -f table '| count() by network_of(id.orig_h) | sort -r' conn.log
384384
```
385385

386-
[zed/2584](https://github.com/brimdata/zed/issues/2584) tracks a planned
386+
[zed/2584](https://github.com/brimdata/super/issues/2584) tracks a planned
387387
improvement for this use of `zq -I`.
388388

389389
If you intend to frequently shape the same NDJSON data, you may want to create
390390
an alias in your
391391
shell to always invoke `zq` with the necessary `-I` flag pointing to the path
392-
of your finalized shaper. [zed/1059](https://github.com/brimdata/zed/issues/1059)
392+
of your finalized shaper. [zed/1059](https://github.com/brimdata/super/issues/1059)
393393
tracks a planned enhancement to persist such settings within Zed itself rather
394394
than relying on external mechanisms such as shell aliases.
395395

@@ -398,7 +398,7 @@ than relying on external mechanisms such as shell aliases.
398398
If you wish to browse your shaped data with [Zui](https://zui.brimdata.io/),
399399
the best way to accomplish this at the moment would be to use `zq` to convert
400400
it to ZNG [as shown above](#invoking-the-shaper-from-zq), then drag the ZNG
401-
into Zui as you would any other log. An enhancement [zed/2695](https://github.com/brimdata/zed/issues/2695)
401+
into Zui as you would any other log. An enhancement [zed/2695](https://github.com/brimdata/super/issues/2695)
402402
is planned that will soon make it possible to attach your shaper to a
403403
Pool. This will allow you to drag the original NDJSON logs directly into the
404404
Pool in Zui and have the shaping applied as the records are being committed to
@@ -408,5 +408,5 @@ the Pool.
408408

409409
If you're having difficulty, interested in shaping other data sources, or
410410
just have feedback, please join our [public Slack](https://www.brimdata.io/join-slack/)
411-
and speak up or [open an issue](https://github.com/brimdata/zed/issues/new/choose).
411+
and speak up or [open an issue](https://github.com/brimdata/super/issues/new/choose).
412412
Thanks!

versioned_docs/version-v1.11.0/language/ztests/language-directed-acyclic-flow-graphs-1.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
# Specifically, the "op1", "op2", and "..." have been filled in with real
1818
# operations, and the "merge" has been replaced with a "sort" for now since
1919
# merge has not yet been fully implemented
20-
# (https://github.com/brimdata/zed/issues/2906).
20+
# (https://github.com/brimdata/super/issues/2906).
2121

2222
script: |
2323
export ZED_LAKE=test

versioned_docs/version-v1.11.0/language/ztests/language-directed-acyclic-flow-graphs-2.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
#
1717
# Specifically, the "op1", "op2", and "..." have been filled in with real
1818
# operations, and a field assignment has been added to the join
19-
# (https://github.com/brimdata/zed/issues/2815).
19+
# (https://github.com/brimdata/super/issues/2815).
2020

2121
script: |
2222
export ZED_LAKE=test

0 commit comments

Comments
 (0)