diff --git a/README.md b/README.md index 27ce183bf..b7a129821 100644 --- a/README.md +++ b/README.md @@ -12,6 +12,8 @@ and uses a pipe-line to transform the logs into time series metrics in **[prometheus](https://prometheus.io/)** format and in parallel transform and persist the logs also into **[loki](https://grafana.com/oss/loki/)**. +![Animated gif](docs/images/animation.gif) + FLP decorates the metrics and the transformed logs with **context**, allowing visualization layers and analytics frameworks to present **network insights** to SRE’s, cloud operators and network experts. diff --git a/docs/images/animated-gif-images/bandwidth-per-network-service-screenshot.png b/docs/images/animated-gif-images/bandwidth-per-network-service-screenshot.png new file mode 100644 index 000000000..a41ff5439 Binary files /dev/null and b/docs/images/animated-gif-images/bandwidth-per-network-service-screenshot.png differ diff --git a/docs/images/animated-gif-images/flow-destinations-on-map.png b/docs/images/animated-gif-images/flow-destinations-on-map.png new file mode 100644 index 000000000..fc2067f06 Binary files /dev/null and b/docs/images/animated-gif-images/flow-destinations-on-map.png differ diff --git a/docs/images/animated-gif-images/flow-logs-table.png b/docs/images/animated-gif-images/flow-logs-table.png new file mode 100644 index 000000000..f37bc308c Binary files /dev/null and b/docs/images/animated-gif-images/flow-logs-table.png differ diff --git a/docs/images/animated-gif-images/image (20).png:Zone.Identifier b/docs/images/animated-gif-images/image (20).png:Zone.Identifier new file mode 100644 index 000000000..15b88c0e7 --- /dev/null +++ b/docs/images/animated-gif-images/image (20).png:Zone.Identifier @@ -0,0 +1,3 @@ +[ZoneTransfer] +ZoneId=3 +HostUrl=https://files.slack.com/files-pri/T27SFGS2W-F036A8Y0K4J/download/image.png diff --git a/docs/images/animated-gif-images/image (21).png:Zone.Identifier b/docs/images/animated-gif-images/image (21).png:Zone.Identifier new file mode 100644 index 000000000..482517b5c --- /dev/null +++ b/docs/images/animated-gif-images/image (21).png:Zone.Identifier @@ -0,0 +1,3 @@ +[ZoneTransfer] +ZoneId=3 +HostUrl=https://files.slack.com/files-pri/T27SFGS2W-F035VP2TB7H/download/image.png diff --git a/docs/images/animated-gif-images/image (22).png:Zone.Identifier b/docs/images/animated-gif-images/image (22).png:Zone.Identifier new file mode 100644 index 000000000..2bf9630c0 --- /dev/null +++ b/docs/images/animated-gif-images/image (22).png:Zone.Identifier @@ -0,0 +1,3 @@ +[ZoneTransfer] +ZoneId=3 +HostUrl=https://files.slack.com/files-pri/T27SFGS2W-F036ABDH39R/download/image.png diff --git a/docs/images/animation.gif b/docs/images/animation.gif new file mode 100644 index 000000000..4d13c0ffe Binary files /dev/null and b/docs/images/animation.gif differ diff --git a/hack/update-docs.sh b/hack/update-docs.sh index 94a72a95c..169d85c74 100755 --- a/hack/update-docs.sh +++ b/hack/update-docs.sh @@ -14,8 +14,16 @@ update-readme() { sed -z -i 's|.*|'"\n\`\`\`bash\n$help\n\`\`\`\n"'|g' README.md } +update-animated-gif() { + # update animated-gif in README.md from all images under docs/images/animated-gif-images + IMAGES_PATH=$PWD/docs/images + docker run -v "$IMAGES_PATH":/docs/images dpokidov/imagemagick -loop 0 -delay 500 -resize 800x800 /docs/images/animated-gif-images/*.png /docs/images/animation.gif +} + + main() { update-readme + update-animated-gif } main