getMeasurements
Return measurement tags related to an asset.
Signature
Section titled “Signature”getMeasurements(node, source="all", output="json", filepath=None)
node(str)source(str, default: “all”)output(str):json(default),df,raw,filefilepath(str | None)
Inputs
Section titled “Inputs”node: Asset code to fetch measurements for.source:all,merged, or a specific source name.output: Output format selector.filepath: Output file path used whenoutput="file".
Examples
Section titled “Examples”All sources
Section titled “All sources”measurements = menu.getMeasurements("System_01", source="all")Merged list
Section titled “Merged list”measurements = menu.getMeasurements("System_01", source="merged")DataFrame output
Section titled “DataFrame output”measurements_df = menu.getMeasurements("System_01", source="all", output="df")