Skip to content

Commit

Permalink
Pull changes from osints/dev
Browse files Browse the repository at this point in the history
Signed-off-by: Simeon Widdis <sawiddis@amazon.com>
  • Loading branch information
Swiddis committed Jul 10, 2023
1 parent 14ec857 commit ded970b
Show file tree
Hide file tree
Showing 12 changed files with 505 additions and 424 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
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 ded970b

Please sign in to comment.