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