Hi!
One of my customer's bandwith is too big according to my expectations.
So I tried the firebase database:profile tool to see what's going on.
I got this report (example)
Downloaded Bytes
┌──────────────────────────────────────────────────────────┐
│ Path │ Total │ Count │ Average │
├────────────────────────────────┼────────┼───────┼────────┤
│ /a_root_path/$wildcard │ 31.72 MB │ 193 │ 164.37 kB │
├────────────────────────────────┼───────┼────┼────────────┤
│ /a_root_path/$wildcard/$wildcard │ 7.68 MB │ 644 │ 11.92 kB │
├────────────────────────────────┼───────┼────┼────────────┤
│ /a_root_path/$wildcard/$wildcard/$wildcard │ 1.22 MB │ 233 │ 5.24 kB │
├────────────────────────────────┼────────┼────┼──────────┤
The $wildcard gets there according to this docs:
The path in your database tree where the operations occurred. If there are more than 25 child nodes, these are collapsed into a parent path and replaced with a $wildcard marker. You may see your database's root directory in the report, represented by a forward slash /.
Since almost everything is under a_root_path, the $wildcard token hides what I want to know....
Is there a way to either disable the 25 child nodes $wildcard token or to tell to firebase database:profile to listen to a specific child?
Thanks
VB