-
Notifications
You must be signed in to change notification settings - Fork 1
/
eck_logstash_1.sh
executable file
·69 lines (64 loc) · 2.74 KB
/
eck_logstash_1.sh
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
#!/usr/bin/env bash
# count of array
count=`jq '.items | length' "${1}"`
if [ ${count} = 0 ]; then
exit
fi
echo "========================================================================================="
echo "Summary"
echo "========================================================================================="
echo ""
jq -r '
[.items
| sort_by(.metdata.name)[]
| {
"NAME": (.metadata.name // "-"),
"NAMESPACE": (.metadata.namespace // "-"),
"AVAILABLE": (.status.availableNodes|tostring // "-"),
"EXPECTED": (.status.expectedNodes|tostring // "-"),
"KIND": (.kind // "-"),
"VERSION": (.status.version // "-"),
"GENERATION": (.metadata.generation // "-"),
"APIVERSION": (.apiVersion // "-"),
"CREATION TIME": (.metadata.creationTimestamp // "-")
}]| (.[0] |keys_unsorted | @tsv),(.[]|.|map(.) |@tsv)' "${1}" 2>/dev/null | column -ts $'\t'
echo ""
echo ""
# Status & References
echo "========================================================================================="
echo "Status & Referneces"
echo "========================================================================================="
echo ""
jq -r '
[.items
| sort_by(.metdata.name)[]
| {
"NAME": (.metadata.name // "-"),
"SERVICE": (.status.service // "-"),
"SECRET TOKEN": (.status.secretTokenSecret // "-"),
"ES REF": ((.status | select(.elasticsearchAssociationsStatus != null)| .elasticsearchAssociationsStatus| to_entries[] | "\(.key)") // "-"),
"ES ASSOCIATION": ((.status | select(.elasticsearchAssociationsStatus != null)| .elasticsearchAssociationsStatus| to_entries[] | "\(.value)") // "-"),
"KB REF": (.spec.kibanaRef.name // "-"),
"KB ASSOCIATION": (.status.kibanaAssociationStatus // "-"),
"FLEET REF": (.spec.fleetServerRef.name // "-"),
"FLEET ASSOCIATION": (.status.fleetServerAssociationStatus // "-"),
"SELECTOR": (.status.selector // "-")
}]| (.[0] |keys_unsorted | @tsv),(.[]|.|map(.) |@tsv)' "${1}" 2>/dev/null | column -ts $'\t'
echo ""
echo "========================================================================================="
echo "Annotations & Labels"
echo "========================================================================================="
echo ""
for ((i=0; i<$count; i++))
do
logstash=`jq -r '.items['${i}'].metadata.name' "${1}"`
echo "---------- Agent: ${logstash} -----------------------------------------------------------------"
echo "Annotations:"
echo ""
jq -r '.items['${i}'].metadata.annotations | to_entries | .[] | .key,(.value | if try fromjson catch false then fromjson else . end)," "' "${1}" 2>/dev/null
echo ""
echo "Labels:"
echo ""
jq -r '.items['${i}'].metadata.labels | (to_entries[] | "\(.key)=\(.value)") | select(length >0)' "${1}" 2>/dev/null
echo ""
done