Skip to content

Commit

Permalink
Merge pull request opensearch-project#615 from Swiddis/osints/main
Browse files Browse the repository at this point in the history
Merge sample data endpoint from osints/dev

Signed-off-by: Simeon Widdis <sawiddis@amazon.com>
  • Loading branch information
Swiddis committed Jul 11, 2023
1 parent ec8310b commit 01b88a5
Show file tree
Hide file tree
Showing 13 changed files with 707 additions and 443 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"description": "AWS Elastic Load Balancer collector",
"license": "Apache-2.0",
"type": "logs",
"author": "Daniel Dong",
"author": "OpenSearch",
"sourceUrl": "https://github.com/YANG-DB/observability/tree/aws_alb_integration",
"statics": {
"logo": {
Expand All @@ -16,10 +16,6 @@
{
"annotation": "ELB Dashboard",
"path": "dashboard1.png"
},
{
"annotation": "ELB Logo",
"path": "logo.png"
}
]
},
Expand Down

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
"license": "Apache-2.0",
"type": "logs",
"link": "https://www.nginx.com/",
"author": "John Doe",
"sourceUrl": "https://github.com/",
"author": "OpenSearch",
"sourceUrl": "https://github.com/opensearch-project/observability/pull/1493/files",
"statics": {
"logo": {
"annotation": "NginX Logo",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
"description": "Nginx HTTP server collector",
"license": "Apache-2.0",
"type": "logs",
"author": "John Doe",
"sourceUrl": "https://github.com/",
"author": "OpenSearch",
"sourceUrl": "https://github.com/opensearch-project/observability/pull/1493/files",
"statics": {
"logo": {
"annotation": "NginX Logo",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,104 +1,112 @@
{
"template": {
"mappings": {
"_meta": {
"version": "1.0.0",
"catalog": "observability",
"type": "logs",
"component": "communication"
},
"properties": {
"communication": {
"properties": {
"sock.family": {
"type": "keyword",
"ignore_above": 256
},
"source": {
"type": "object",
"properties": {
"address": {
"type": "text",
"fields": {
"keyword": {
"type": "keyword",
"ignore_above": 1024
}
"template": {
"mappings": {
"_meta": {
"version": "1.0.0",
"catalog": "observability",
"type": "logs",
"component": "communication"
},
"properties": {
"communication": {
"properties": {
"sock.family": {
"type": "keyword",
"ignore_above": 256
},
"source": {
"type": "object",
"properties": {
"address": {
"type": "text",
"fields": {
"keyword": {
"type": "keyword",
"ignore_above": 1024
}
},
"domain": {
"type": "text",
"fields": {
"keyword": {
"type": "keyword",
"ignore_above": 1024
}
}
},
"domain": {
"type": "text",
"fields": {
"keyword": {
"type": "keyword",
"ignore_above": 1024
}
},
"bytes": {
"type": "long"
},
"ip": {
"type": "ip"
},
"port": {
"type": "long"
},
"mac": {
"type": "keyword",
"ignore_above": 1024
},
"packets": {
"type": "long"
}
},
"bytes": {
"type": "long"
},
"ip": {
"type": "ip"
},
"port": {
"type": "long"
},
"mac": {
"type": "keyword",
"ignore_above": 1024
},
"packets": {
"type": "long"
}
},
"destination": {
"type": "object",
"properties": {
"address": {
"type": "text",
"fields": {
"keyword": {
"type": "keyword",
"ignore_above": 1024
}
}
},
"destination": {
"type": "object",
"properties": {
"address": {
"type": "text",
"fields": {
"keyword": {
"type": "keyword",
"ignore_above": 1024
}
},
"domain": {
"type": "text",
"fields": {
"keyword": {
"type": "keyword",
"ignore_above": 1024
}
}
},
"domain": {
"type": "text",
"fields": {
"keyword": {
"type": "keyword",
"ignore_above": 1024
}
},
"bytes": {
"type": "long"
},
"ip": {
"type": "ip"
},
"port": {
"type": "long"
},
"mac": {
"type": "keyword",
"ignore_above": 1024
},
"packets": {
"type": "long"
},
"geo.city_name": {"type": "keyword"},
"geo.country_iso_code": {"type": "keyword"},
"geo.country_name": {"type": "keyword"},
"geo.location": {"type": "geo_point"}
}
},
"bytes": {
"type": "long"
},
"ip": {
"type": "ip"
},
"port": {
"type": "long"
},
"mac": {
"type": "keyword",
"ignore_above": 1024
},
"packets": {
"type": "long"
},
"geo.city_name": {
"type": "keyword"
},
"geo.country_iso_code": {
"type": "keyword"
},
"geo.country_name": {
"type": "keyword"
},
"geo.location": {
"type": "geo_point"
}
}
}
}
}
}
}
}
}
}
Loading

0 comments on commit 01b88a5

Please sign in to comment.