es_migration.sh 3.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. CA=${1:-/etc/openshift/logging/ca.crt}
  2. KEY=${2:-/etc/openshift/logging/system.admin.key}
  3. CERT=${3:-/etc/openshift/logging/system.admin.crt}
  4. openshift_logging_es_host=${4:-logging-es}
  5. openshift_logging_es_port=${5:-9200}
  6. namespace=${6:-logging}
  7. # for each index in _cat/indices
  8. # skip indices that begin with . - .kibana, .operations, etc.
  9. # skip indices that contain a uuid
  10. # get a list of unique project
  11. # daterx - the date regex that matches the .%Y.%m.%d at the end of the indices
  12. # we are interested in - the awk will strip that part off
  13. function get_list_of_indices() {
  14. curl -s --cacert $CA --key $KEY --cert $CERT https://$openshift_logging_es_host:$openshift_logging_es_port/_cat/indices | \
  15. awk -v daterx='[.]20[0-9]{2}[.][0-1]?[0-9][.][0-9]{1,2}$' \
  16. '$3 !~ "^[.]" && $3 !~ "^[^.]+[.][^.]+"daterx && $3 !~ "^project." && $3 ~ daterx {print gensub(daterx, "", "", $3)}' | \
  17. sort -u
  18. }
  19. # for each index in _cat/indices
  20. # skip indices that begin with . - .kibana, .operations, etc.
  21. # get a list of unique project.uuid
  22. # daterx - the date regex that matches the .%Y.%m.%d at the end of the indices
  23. # we are interested in - the awk will strip that part off
  24. function get_list_of_proj_uuid_indices() {
  25. curl -s --cacert $CA --key $KEY --cert $CERT https://$openshift_logging_es_host:$openshift_logging_es_port/_cat/indices | \
  26. awk -v daterx='[.]20[0-9]{2}[.][0-1]?[0-9][.][0-9]{1,2}$' \
  27. '$3 !~ "^[.]" && $3 ~ "^[^.]+[.][^.]+"daterx && $3 !~ "^project." && $3 ~ daterx {print gensub(daterx, "", "", $3)}' | \
  28. sort -u
  29. }
  30. if [[ -z "$(oc get pods -l component=es -o jsonpath='{.items[?(@.status.phase == "Running")].metadata.name}')" ]]; then
  31. echo "No Elasticsearch pods found running. Cannot update common data model."
  32. exit 1
  33. fi
  34. count=$(get_list_of_indices | wc -l)
  35. if [ $count -eq 0 ]; then
  36. echo No matching indices found - skipping update_for_uuid
  37. else
  38. echo Creating aliases for $count index patterns . . .
  39. {
  40. echo '{"actions":['
  41. get_list_of_indices | \
  42. while IFS=. read proj ; do
  43. # e.g. make test.uuid.* an alias of test.* so we can search for
  44. # /test.uuid.*/_search and get both the test.uuid.* and
  45. # the test.* indices
  46. uid=$(oc get project "$proj" -o jsonpath='{.metadata.uid}' 2>/dev/null)
  47. [ -n "$uid" ] && echo "{\"add\":{\"index\":\"$proj.*\",\"alias\":\"$proj.$uuid.*\"}}"
  48. done
  49. echo ']}'
  50. } | curl -s --cacert $CA --key $KEY --cert $CERT -XPOST -d @- "https://$openshift_logging_es_host:$openshift_logging_es_port/_aliases"
  51. fi
  52. count=$(get_list_of_proj_uuid_indices | wc -l)
  53. if [ $count -eq 0 ] ; then
  54. echo No matching indexes found - skipping update_for_common_data_model
  55. exit 0
  56. fi
  57. echo Creating aliases for $count index patterns . . .
  58. # for each index in _cat/indices
  59. # skip indices that begin with . - .kibana, .operations, etc.
  60. # get a list of unique project.uuid
  61. # daterx - the date regex that matches the .%Y.%m.%d at the end of the indices
  62. # we are interested in - the awk will strip that part off
  63. {
  64. echo '{"actions":['
  65. get_list_of_proj_uuid_indices | \
  66. while IFS=. read proj uuid ; do
  67. # e.g. make project.test.uuid.* and alias of test.uuid.* so we can search for
  68. # /project.test.uuid.*/_search and get both the test.uuid.* and
  69. # the project.test.uuid.* indices
  70. echo "{\"add\":{\"index\":\"$proj.$uuid.*\",\"alias\":\"${PROJ_PREFIX}$proj.$uuid.*\"}}"
  71. done
  72. echo ']}'
  73. } | curl -s --cacert $CA --key $KEY --cert $CERT -XPOST -d @- "https://$openshift_logging_es_host:$openshift_logging_es_port/_aliases"