-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: add capsule support * feat: add capsules, firehose and sqs * feat!: add capsule support to condition * feat: add Firehose & SQS support * chore: add SQS to examples/aws * docs: update examples/aws README * feat: add capsule support to sink, firehose & sqs * chore: update examples/condition * feat!: add capsule support to transform * feat: add capsule support to process * chore: update remaining examples * chore: remove firehose ingest support * refactor: processors * refactor: transforms * refactor: sink * refactor: internal/aws * refactor: condition * refactor: libsonnet files * refactor: internal/json * docs: misc markdown formatting * refactor: error wrapping * refactor: error wrapping * fix: http errors * fix: foreach test * refactor: update metadata pattern * refactor: add ctx to conditions * style: standardized variables * style: update results * docs: typo * fix: staticcheck fixes
- Loading branch information
Showing
158 changed files
with
5,111 additions
and
3,000 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,31 @@ | ||
<!--- Provide a general summary of your changes in the Title above --> | ||
|
||
## Description | ||
|
||
<!--- Describe your changes in detail --> | ||
|
||
## Motivation and Context | ||
|
||
<!--- Why is this change required? What problem does it solve? --> | ||
<!--- If it fixes an open issue, please link to the issue here. --> | ||
|
||
## How Has This Been Tested? | ||
|
||
<!--- Please describe in detail how you tested your changes. --> | ||
<!--- Include details of your testing environment, and the tests you ran to --> | ||
<!--- see how your change affects other areas of the code, etc. --> | ||
|
||
## Types of changes | ||
|
||
<!--- What types of changes does your code introduce? Put an `x` in all the boxes that apply: --> | ||
- [ ] Bug fix (non-breaking change which fixes an issue) | ||
- [ ] New feature (non-breaking change which adds functionality) | ||
- [ ] Breaking change (fix or feature that would cause existing functionality to change) | ||
* [ ] Bug fix (non-breaking change which fixes an issue) | ||
* [ ] New feature (non-breaking change which adds functionality) | ||
* [ ] Breaking change (fix or feature that would cause existing functionality to change) | ||
|
||
## Checklist: | ||
|
||
<!--- Go over all the following points, and put an `x` in all the boxes that apply. --> | ||
<!--- If you're unsure about any of these, don't hesitate to ask. We're here to help! --> | ||
- [ ] My code follows the code style of this project. | ||
- [ ] My change requires a change to the documentation. | ||
- [ ] I have updated the documentation accordingly. | ||
* [ ] My code follows the code style of this project. | ||
* [ ] My change requires a change to the documentation. | ||
* [ ] I have updated the documentation accordingly. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,12 @@ | ||
# Contributors | ||
|
||
Thank you to [all of our contributors](https://github.com/brexhq/substation/graphs/contributors). For reviewing per-file contributions, run the following commands: | ||
|
||
```sh | ||
git blame <file> | ||
git log -p <file> | ||
``` | ||
|
||
# Brex Team | ||
- [Josh Liburdi](https://twitter.com/jshlbrd) | ||
- [Julie Agnes Sparks](https://twitter.com/JulieASparks) | ||
* [Josh Liburdi](https://twitter.com/jshlbrd) | ||
* [Julie Agnes Sparks](https://twitter.com/JulieASparks) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
# Responsible Disclosure | ||
|
||
To report security issues in Substation, please follow [Brex's Responsible Disclosure process](https://www.brex.com/security/responsible-disclosure/). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,19 @@ | ||
# build | ||
|
||
This directory contains build configurations and scripts for managing Substation. | ||
|
||
## config | ||
|
||
Contains build scripts that support compiling Substation Jsonnet config files into JSON and deploying configurations to services (e.g., AWS AppConfig). | ||
|
||
## container | ||
|
||
Contains Docker build files for each application under [cmd/](/cmd/). | ||
|
||
## terraform | ||
|
||
Contains Terraform modules for deploying Substation pipelines. | ||
|
||
## scripts | ||
|
||
Contains miscellaneous scripts that assist with deploying and maintaining Substation pipelines. |
Oops, something went wrong.