Skip to content

Commit

Permalink
Merge pull request #414 from streamdal/helm/doc-update
Browse files Browse the repository at this point in the history
Fix pipeline doc spelling and add Keyword server test
  • Loading branch information
fritzstauff committed May 7, 2024
2 parents f17480d + 3291009 commit ea213fc
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 1 deletion.
2 changes: 1 addition & 1 deletion apps/docs/src/pages/en/guides/pipelines.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ search the entire payload.
| Personally Identifiable Information (PII) | Data Validation | String Matching | Data Formats |
|-|-|-|-|
| PII_ANY | IS_EMPTY | STRING_CONTAINS_ANY | TIMESTAMP_RFC3339 |
| PII_CREDIT_CART | HAS_FIELD | STRING_CONTAINS_ALL | TIMESTAMP_UNIX_NANO |
| PII_CREDIT_CARD | HAS_FIELD | STRING_CONTAINS_ALL | TIMESTAMP_UNIX_NANO |
| PII_SSN | IS_TYPE | REGEX | TIMESTAMP_UNIX |
| PII_E-MAIL | STRING_LENGTH_MIN | | BOOLEAN_TRUE |
| PII_PHONE | STRING_LENGTH_MAX | | BOOLEAN_FALSE |
Expand Down
13 changes: 13 additions & 0 deletions apps/server/test-utils/demo-client/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,19 @@ run6:
--data-source-type file \
--data-source-file ./assets/sample-welcome-producer.json

.PHONY: run7
run7: description = PII Key word
run7:
go run *.go -d \
--quiet \
--message-rate 1,10 \
--service-name "pii-keyword" \
--operation-type 2 \
--operation-name "pii-service" \
--component-name "aws-ses" \
--data-source-type file \
--data-source-file ./assets/pii-key-value.json

### Build

.PHONY: build
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"any":"","Credit_Card":{"card_number":"1234 5678 9012 3456","expiry_date":"2024-12-31","cvv":"123"},"ssn":"123-45-6789","e-mail":"john.doe@example.com","phone":"555-123-4567","driver_license":"AB123456","passport_id":"AB123456","vin_number":"1HGCM82633A004352","serial_number":"1234567890","login":123456,"taxpayer_id":"123-45-6789","address":{"street":"123 Main St","city":"Anytown","state":"CA","zip":"12345"},"signature":12345.67,"geolocation":{"latitude":40.7128,"longitude":-74.006},"education":12,"financial":"1.2.3","health":true}

0 comments on commit ea213fc

Please sign in to comment.