Exporting to CSV synphasor (PMU) data
Hello, I'm trying to export to CSV some data from PMU (synphasor). When I chose synphasor.phasor in the tshark code, it returns the name of the chanel, I want to have the value. Is that possible
"C:\Program Files\Wireshark\tshark.exe" -r "%arquivo%" -Y "%filtro%" -T fields -e frame.number -e frame.time_utc -e eth.src -e eth.dst -e synphasor.actual_frequency_value -e synphasor.rate_change_frequency -e synphasor.phasor.real -E occurrence=a -E header=y -E separator=, -E quote=d > "%saida%"
Hello grahamb, I've tried this but it seems that my WS doesn't have this field to export "synphasor.phasor.real". Thanks
Display Filter Reference: IEEE C37.118 Synchrophasor Protocol
synphasor.phasor Phasor Character string 2.0.0 to 4.4.6
https://gitlab.com/wireshark/wireshar...
There is a sample capture attached to 8695: Enhancement to packet-synphasor.c to use 'new_' versions of dissector registration and initialization
(more)From frame 651:
In you example, when I use synphasor.phasor, using the "-E occurrence=a", is showing the texts IAPM, IBPM, ICPM, etc. instead I want to save 11.270A -26.053 or 10.125+j4,95.
thnks