Alok Kumar Singh
Alok Kumar Singh
Working on adding examples here at present: https://github.com/alok87/go-patterns
Hey! Great I can add the support. Can you give some reference PR for it and any help on how to go about it will help me do this quick.
What is required to use this?
Upgrading to the latest gopls version fixed it for me `go install golang.org/x/tools/gopls@latest`
My vs code was crashing, auto go imports and everything stopped working. Vs code showed a link to this issue, i did not read much what was going on here,...
The issue was something different, please ignore my messages.
@timothysc @jbeda
We are using it and it works well for us in porting the logs to s3.
https://github.com/heptiolabs/eventrouter/blob/master/yaml/eventrouter.yaml#L45-L48 not the docs but you need to configure this
```yaml apiVersion: v1 data: config.json: |- { "sink": "s3sink", "s3SinkAccessKeyID": "sample", "s3SinkSecretAccessKey": "sample", "s3SinkRegion": "ap-south-1", "s3SinkBucket": "bucket", "s3SinkBucketDir": "events", "s3SinkBufferSize": 1500, "s3SinkDiscardMessages": true, "s3SinkOutputFormat": "flatjson", "s3SinkUploadInterval": 120 } kind: ConfigMap...