install webp package on mac

brew install webp

convert to webp

cwebp -q 80 <image path> -o <image-out>.webp

80 is the quality factor - I found q=80 to be a good output, with around 70% smaller size than corresponding png file

for converting all pics in a folder

for file in *.jpg; do    
          cwebp -q 80 "$file" -o "${file%.jpg}.webp"
done

for png

for file in *.png; do    
          cwebp -q 80 "$file" -o "${file%.png}.webp"
done

for jpeg

for file in *.jpeg; do    
          cwebp -q 80 "$file" -o "${file%.jpeg}.webp"
done

Docker container name not present in docker container logs. · Issue #1597 · SigNoz/signoz

How to send logs to SigNoz