Advertisement
Guest User

enrich.hocon

a guest
Dec 5th, 2022
30
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.31 KB | None | 0 0
  1. {
  2.  
  3. "concurrency": {
  4. "sink": 1
  5. }
  6.  
  7.  
  8. "input": {
  9. "type": "Kinesis"
  10. "streamName": "ati-test1-collector-raw"
  11. "region": "us-east-1"
  12. "appName": "ati-test1-enrich"
  13. }
  14.  
  15. "output": {
  16. "good": {
  17. "type": "Kinesis"
  18. "streamName": "ati-test1-enrich-good"
  19. "region": "us-east-1"
  20. "appName": "ati-test1-enrich-good"
  21.  
  22.  
  23. }
  24.  
  25. "bad": {
  26. "type": "Kinesis"
  27. "streamName": "ati-test1-enrich-bad"
  28. "region": "us-east-1"
  29. "appName": "ati-test1-enrich-bad"
  30.  
  31. }
  32. }
  33.  
  34. "monitoring": {
  35.  
  36. # Optional, for tracking runtime exceptions
  37. # "sentry": {
  38. # "dsn": "http://sentry.acme.com"
  39. # }
  40.  
  41. # Optional, configure how metrics are reported
  42. "metrics": {
  43.  
  44. # Optional. Send metrics to a StatsD server on localhost
  45. "statsd": {
  46. "hostname": "host.docker.internal"
  47. "port": 8125
  48.  
  49. # Required, how frequently to report metrics
  50. "period": "2 seconds"
  51.  
  52. # Any key-value pairs to be tagged on every StatsD metric
  53. "tags": {
  54. "app": enrich
  55. }
  56.  
  57. # Optional, override the default metric prefix
  58. "prefix": "snowplow.enrich."
  59. }
  60. }
  61. }
  62. aws {
  63. region: "us-east-1",
  64. accessKey: "iam",
  65. secretKey: "iam"
  66. }
  67. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement