|
| 1 | +# Fill in your AWS Access Key ID and Secret Access Key |
| 2 | +# http://aws.amazon.com/security-credentials |
| 3 | +accessKey = [ACCESS-KEY] |
| 4 | +secretKey = [SECRET-KEY] |
| 5 | + |
| 6 | +# KinesisConnector Application Settings |
| 7 | +# Since Kinesis Creates a DynamoDB table for each APP, |
| 8 | +# each appName must be unique for different kinesisInputStreams and connectorDestinations |
| 9 | +appName = kinesisToSumologicConnector |
| 10 | + |
| 11 | +# By specifying the region name, the connector will connect from the Amazon Kinesis stream in this region |
| 12 | +# unless the endpoint for Amazon Kinesis is explicitly specified. The Amazon DynamoDB lease table and Amazon CloudWatch |
| 13 | +# metrics for connector will be created in this region. All resources in outgoing destination will |
| 14 | +# not be affected by this region name. |
| 15 | +regionName = us-east-1 |
| 16 | +retryLimit = 3 |
| 17 | + |
| 18 | +# Amazon Kinesis parameters for KinesisConnector |
| 19 | + |
| 20 | +# Uncomment the following property if you would like to explicitly configure the Amazon Kinesis endpoint. |
| 21 | +# This property will configure the connector's Amazon Kinesis client to read from this specific endpoint, |
| 22 | +# overwriting the regionName property for ONLY the Amazon Kinesis client. The lease table and Amazon CloudWatch |
| 23 | +# metrics will still use the regionName property. |
| 24 | +# kinesisEndpoint = https\://kinesis.us-west-2.amazonaws.com |
| 25 | + |
| 26 | +# Kinesis Stream where data will be grabbed from |
| 27 | +kinesisInputStream = [STREAM-NAME] |
| 28 | + |
| 29 | +# Optional Amazon Kinesis parameters for automatically creating the stream |
| 30 | +createKinesisInputStream = false |
| 31 | +createKinesisOutputStream = false |
| 32 | +kinesisInputStreamShardCount = 2 |
| 33 | +kinesisOutputStreamShardCount = 2 |
| 34 | + |
| 35 | +# Transformer class that will be used to handle records |
| 36 | +transformerClass = CloudWatchMessageModelSumologicTransformer |
| 37 | + |
| 38 | +# Specifies the input file from which the StreamSource will read records |
| 39 | +createStreamSource = false |
| 40 | +inputStreamFile = users.txt |
| 41 | + |
| 42 | +# Connector name to be appendend to the UserAgent |
| 43 | +connectorDestination = sumologic |
| 44 | + |
| 45 | +# Sumologic HTTP Collector URL |
| 46 | +sumologicUrl = [SUMOLOGIC-COLLECTOR] |
0 commit comments