diff options
| author | 侯晋川 <[email protected]> | 2024-10-25 14:17:14 +0800 |
|---|---|---|
| committer | 侯晋川 <[email protected]> | 2024-10-25 14:17:14 +0800 |
| commit | 7ab2ffecf20dd0a39c9bc63ff4f879bceb3ca704 (patch) | |
| tree | 94c43d418e47f853cbca6a412711d4d054f5ac10 /groot-common/src/main/resources | |
| parent | 505b04ea10f1e3e37410f5ef1b0721e6f23caebb (diff) | |
[feature][core]新增Encrypt和HMAC函数
Diffstat (limited to 'groot-common/src/main/resources')
| -rw-r--r-- | groot-common/src/main/resources/grootstream.yaml | 19 | ||||
| -rw-r--r-- | groot-common/src/main/resources/udf.plugins | 2 |
2 files changed, 21 insertions, 0 deletions
diff --git a/groot-common/src/main/resources/grootstream.yaml b/groot-common/src/main/resources/grootstream.yaml index 1a9a974..d7818ab 100644 --- a/groot-common/src/main/resources/grootstream.yaml +++ b/groot-common/src/main/resources/grootstream.yaml @@ -11,6 +11,25 @@ grootstream: files: - 64af7077-eb9b-4b8f-80cf-2ceebc89bea9 - 004390bc-3135-4a6f-a492-3662ecb9e289 + + kms: +# local: +# type: local +# secret_key: .geedgenetworks. + vault: + type: vault + url: https://192.168.40.223:8200 + username: tsg_olap + password: tsg_olap + default_key_path: tsg_olap/transit + plugin_key_path: tsg_olap/plugin/gmsm + + ssl: + skip_verification: true + ca_certificate_path: ./config/ssl/root.pem + certificate_path: ./config/ssl/worker.pem + private_key_path: ./config/ssl/worker.key + properties: hos.path: http://192.168.44.12:9098/hos hos.bucket.name.traffic_file: traffic_file_bucket diff --git a/groot-common/src/main/resources/udf.plugins b/groot-common/src/main/resources/udf.plugins index 9950a64..edb1a0f 100644 --- a/groot-common/src/main/resources/udf.plugins +++ b/groot-common/src/main/resources/udf.plugins @@ -4,11 +4,13 @@ com.geedgenetworks.core.udf.DecodeBase64 com.geedgenetworks.core.udf.Domain com.geedgenetworks.core.udf.Drop com.geedgenetworks.core.udf.EncodeBase64 +com.geedgenetworks.core.udf.Encrypt com.geedgenetworks.core.udf.Eval com.geedgenetworks.core.udf.Flatten com.geedgenetworks.core.udf.FromUnixTimestamp com.geedgenetworks.core.udf.GenerateStringArray com.geedgenetworks.core.udf.GeoIpLookup +com.geedgenetworks.core.udf.Hmac com.geedgenetworks.core.udf.JsonExtract com.geedgenetworks.core.udf.PathCombine com.geedgenetworks.core.udf.Rename |
