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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
|
ElasticSearch Configuration:
============================
1. Verify that your ElasticSearch instance configuation contains the following cors parameters in the elasticsearch.yaml file. The CORS
workaround has proven to work for Firefox, Chrome, and Opera.
http.cors.enabled: true
http.cors.allow-origin: "/.*/"
http.cors.allow-headers: ["X-Requested-With", "Content-Type", "Content-Length"]
http.cors.allow-credentials: true
2. Start up Elastic Search by running running the elasticsearch.bat in the elasticsearch 2.3.1 bin folder.
If you want to do a cleanup before running these instructions, then you can execute this
optional command which will destroy the index settings and data.
curl -XDELETE "http://localhost:9200/auditdata?pretty"
Expected Result:
{
"acknowledged" : true
}
ElasticSearch Index Setup and Bulk Load Instructions:
=====================================================
1. Configure Elastic Search Index
curl -XPUT localhost:9200/auditdata?pretty --data-binary @auditdataConfigSettings.json
Expected Result:
{
"acknowledged" : true
}
2. Prepare elastic search bulk import:
prepareElasticSearchBulkImport.pl sampleAuditLog5.csv auditBulkLoad.json
curl -XPUT localhost:9200/_bulk?pretty --data-binary @auditBulkLoad.json
At the top of the output verify if there any import errors by looking at the errors field.
Expected Result:
{
"took" : 103,
"errors" : false, <-------- this field is important. if true you need to look at the output, otherwise you can ignore it
"items" : [ {
"create" : {
"_index" : "auditdata",
"_type" : "everything",
"_id" : "AVXN0g6Ve6sNoEtMKGxy",
"_version" : 1,
"_shards" : {
"total" : 2,
"successful" : 1,
"failed" : 0
},
"status" : 201
}
3. Verify that auditdata index contains data
curl -XGET http://localhost:9200/_cat/indices?v
Expected Result:
health status index pri rep docs.count docs.deleted store.size pri.store.size
yellow open auditdata 5 1 250 0 85.2kb 85.2kb
4. Verify configuration of elastic search index parameter settings:
curl -XGET http://localhost:9200/auditdata?pretty
Expected Result:
{
"auditdata" : {
"aliases" : { },
"mappings" : {
"everything" : {
"properties" : {
"date" : {
"type" : "date",
"format" : "MMM d y HH:m:s||dd-MM-yyyy HH:mm:ss||yyyy-MM-dd'T'HH:mm:ss.SSSZZ||MM/dd/yyyy"
},
"entityKey" : {
"type" : "string"
},
"entityType" : {
"type" : "string"
},
"message" : {
"type" : "string"
},
"severity" : {
"type" : "string"
},
"status" : {
"type" : "string"
}
}
},
"auditdata" : {
"properties" : {
"date" : {
"type" : "date",
"format" : "MMM d y HH:m:s||dd-MM-yyyy HH:mm:ss||yyyy-MM-dd'T'HH:mm:ss.SSSZZ||MM/dd/yyyy"
},
"entityKey" : {
"type" : "string"
},
"entityType" : {
"type" : "string"
},
"message" : {
"type" : "string"
},
"severity" : {
"type" : "string"
},
"status" : {
"type" : "string"
}
}
}
},
"settings" : {
"index" : {
"creation_date" : "1468250773569",
"number_of_shards" : "5",
"number_of_replicas" : "1",
"uuid" : "IgJe5PZyQmSfCLzuxm3Ulw",
"version" : {
"created" : "2030199"
}
}
},
"warmers" : { }
}
}
5. Test that you can retrieve data:
curl -XGET "http://localhost:9200/auditdata/_search/?size=3&pretty"
Expected Result:
{
"took" : 8,
"timed_out" : false,
"_shards" : {
"total" : 5,
"successful" : 5,
"failed" : 0
},
"hits" : {
"total" : 250,
"max_score" : 1.0,
"hits" : [ {
"_index" : "auditdata",
"_type" : "everything",
"_id" : "AVXakQNNe6sNoEtMKG1y",
"_score" : 1.0,
"_source" : {
"date" : "May 26 2016 15:24:13",
"severity" : "CRITICAL",
"entityType" : "vpls-pe",
"entityKey" : "sfcca303vr1",
"status" : "prov-status=[ACTIVE]",
"message" : "Invalid prov-status value. Must have a value not equal to ACTIVE/active."
}
},{
"_index" : "auditdata",
"_type" : "everything",
"_id" : "AVXakQNNe6sNoEtMKG13",
"_score" : 1.0,
"_source" : {
"date" : "May 26 2016 15:24:13",
"severity" : "CRITICAL",
"entityType" : "vpe",
"entityKey" : "VPESAT-ashah401me6",
"status" : "prov-status=[NULL]",
"message" : "Invalid prov-status value. Must have a value not equal to ACTIVE/active."
}
},{
"_index" : "auditdata",
"_type" : "everything",
"_id" : "AVXakQNNe6sNoEtMKG17",
"_score" : 1.0,
"_source" : {
"date" : "May 26 2016 15:24:13",
"severity" : "CRITICAL",
"entityType" : "vpe",
"entityKey" : "VPESAT-eshah401me6",
"status" : "prov-status=[]",
"message" : "Invalid prov-status value. Must have a value not equal to ACTIVE/active."
}
} ]
}
}
|