Files @ 69ca2b2fc133
Branch filter:

Location: light9/avro/CollectorUpdate.avsc

drewp@bigasterisk.com
overcomplicated attempt at persisting the pane layout in the rdf graph

this was hard because we have to somehow wait for the graph to load before config'ing the panes
{
    "namespace": "light9",
    "type": "record",
    "name": "CollectorUpdate",
    "fields": [
        {
            "name": "OutputAttrsSet",
            "type": {
                "type": "record",
                "name": "_OutputAttrsSetValue",
                "fields": [
                    { "name": "dev", "type": "string" },
                    {
                        "name": "attrs",
                        "type": {
                            "type": "array",
                            "items": {
                                "type": "record",
                                "name": "Attribute",
                                "fields": [
                                    { "name": "attr", "type": "string" },
                                    { "name": "val", "type": "int" },
                                    { "name": "chan", "type": "string" }
                                ]
                            }
                        }
                    }
                ]
            }
        }
    ]
}