forked from sttp/cppapi
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMetadata.xml
More file actions
1631 lines (1631 loc) · 75.9 KB
/
Metadata.xml
File metadata and controls
1631 lines (1631 loc) · 75.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" standalone="yes"?>
<NewDataSet>
<xs:schema id="NewDataSet" xmlns="" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xs:element name="NewDataSet" msdata:IsDataSet="true" msdata:UseCurrentLocale="true">
<xs:complexType>
<xs:choice minOccurs="0" maxOccurs="unbounded">
<xs:element name="DeviceDetail">
<xs:complexType>
<xs:sequence>
<xs:element name="NodeID" msdata:DataType="System.Guid, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" type="xs:string" minOccurs="0" />
<xs:element name="UniqueID" msdata:DataType="System.Guid, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" type="xs:string" minOccurs="0" />
<xs:element name="OriginalSource" type="xs:string" minOccurs="0" />
<xs:element name="IsConcentrator" type="xs:boolean" minOccurs="0" />
<xs:element name="Acronym" type="xs:string" minOccurs="0" />
<xs:element name="Name" type="xs:string" minOccurs="0" />
<xs:element name="AccessID" type="xs:int" minOccurs="0" />
<xs:element name="ParentAcronym" type="xs:string" minOccurs="0" />
<xs:element name="ProtocolName" type="xs:string" minOccurs="0" />
<xs:element name="FramesPerSecond" type="xs:int" minOccurs="0" />
<xs:element name="CompanyAcronym" type="xs:string" minOccurs="0" />
<xs:element name="VendorAcronym" type="xs:string" minOccurs="0" />
<xs:element name="VendorDeviceName" type="xs:string" minOccurs="0" />
<xs:element name="Longitude" type="xs:decimal" minOccurs="0" />
<xs:element name="Latitude" type="xs:decimal" minOccurs="0" />
<xs:element name="InterconnectionName" type="xs:string" minOccurs="0" />
<xs:element name="ContactList" type="xs:string" minOccurs="0" />
<xs:element name="Enabled" type="xs:boolean" minOccurs="0" />
<xs:element name="UpdatedOn" type="xs:dateTime" minOccurs="0" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="MeasurementDetail">
<xs:complexType>
<xs:sequence>
<xs:element name="DeviceAcronym" type="xs:string" minOccurs="0" />
<xs:element name="ID" type="xs:string" minOccurs="0" />
<xs:element name="SignalID" msdata:DataType="System.Guid, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" type="xs:string" minOccurs="0" />
<xs:element name="PointTag" type="xs:string" minOccurs="0" />
<xs:element name="SignalReference" type="xs:string" minOccurs="0" />
<xs:element name="SignalAcronym" type="xs:string" minOccurs="0" />
<xs:element name="PhasorSourceIndex" type="xs:int" minOccurs="0" />
<xs:element name="Description" type="xs:string" minOccurs="0" />
<xs:element name="Internal" type="xs:boolean" minOccurs="0" />
<xs:element name="Enabled" type="xs:boolean" minOccurs="0" />
<xs:element name="UpdatedOn" type="xs:dateTime" minOccurs="0" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="PhasorDetail">
<xs:complexType>
<xs:sequence>
<xs:element name="ID" type="xs:int" minOccurs="0" />
<xs:element name="DeviceAcronym" type="xs:string" minOccurs="0" />
<xs:element name="Label" type="xs:string" minOccurs="0" />
<xs:element name="Type" type="xs:string" minOccurs="0" />
<xs:element name="Phase" type="xs:string" minOccurs="0" />
<xs:element name="DestinationPhasorID" type="xs:int" minOccurs="0" />
<xs:element name="SourceIndex" type="xs:int" minOccurs="0" />
<xs:element name="UpdatedOn" type="xs:dateTime" minOccurs="0" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="SchemaVersion">
<xs:complexType>
<xs:sequence>
<xs:element name="VersionNumber" type="xs:int" minOccurs="0" />
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:choice>
</xs:complexType>
</xs:element>
</xs:schema>
<DeviceDetail>
<NodeID>e7a5235d-cb6f-4864-a96e-a8686f36e599</NodeID>
<UniqueID>b9650400-d17c-41df-b974-83a6662afab6</UniqueID>
<IsConcentrator>false</IsConcentrator>
<Acronym>SHELBY</Acronym>
<Name>Shelby</Name>
<AccessID>2</AccessID>
<ParentAcronym />
<ProtocolName>IEEE 1344-1995</ProtocolName>
<FramesPerSecond>30</FramesPerSecond>
<CompanyAcronym>TVA</CompanyAcronym>
<VendorAcronym>ABB</VendorAcronym>
<VendorDeviceName>ABB-521</VendorDeviceName>
<Longitude>-89.803800</Longitude>
<Latitude>35.387100</Latitude>
<InterconnectionName>Eastern Interconnection</InterconnectionName>
<ContactList />
<Enabled>true</Enabled>
<UpdatedOn>2019-01-04T03:00:52.73-05:00</UpdatedOn>
</DeviceDetail>
<MeasurementDetail>
<DeviceAcronym>SHELBY</DeviceAcronym>
<ID>STAT:31</ID>
<SignalID>24a1c8d9-9ca5-488b-921f-00c1e230450c</SignalID>
<PointTag>TVA_SHELBY!IS:ST10</PointTag>
<SignalReference>SHELBY!IS-ST10</SignalReference>
<SignalAcronym>STAT</SignalAcronym>
<Description>InputStream statistic for Number of configuration changes reported by input stream during last reporting interval.</Description>
<Internal>true</Internal>
<Enabled>true</Enabled>
<UpdatedOn>2019-01-04T03:01:12.793-05:00</UpdatedOn>
</MeasurementDetail>
<MeasurementDetail>
<ID>STAT:87</ID>
<SignalID>c571fab4-3eb3-459c-8e41-00f660c6d631</SignalID>
<PointTag>GPA_TESTSTREAM!OS:ST25</PointTag>
<SignalReference>TESTSTREAM!OS-ST25</SignalReference>
<SignalAcronym>STAT</SignalAcronym>
<Description>OutputStream statistic for Number of discarded measurements reported by output stream during the lifetime of the output stream.</Description>
<Internal>true</Internal>
<Enabled>true</Enabled>
<UpdatedOn>2019-01-04T03:01:18.633-05:00</UpdatedOn>
</MeasurementDetail>
<MeasurementDetail>
<ID>STAT:63</ID>
<SignalID>b72e48e6-edb6-4a6e-a6b4-018e54a7a1e2</SignalID>
<PointTag>GPA_TESTSTREAM!OS:ST1</PointTag>
<SignalReference>TESTSTREAM!OS-ST1</SignalReference>
<SignalAcronym>STAT</SignalAcronym>
<Description>OutputStream statistic for Number of discarded measurements reported by output stream during last reporting interval.</Description>
<Internal>true</Internal>
<Enabled>true</Enabled>
<UpdatedOn>2019-01-04T03:01:16.803-05:00</UpdatedOn>
</MeasurementDetail>
<MeasurementDetail>
<ID>STAT:93</ID>
<SignalID>5a935f6b-88f7-4129-b1d3-04a4b67b8251</SignalID>
<PointTag>GPA_INTERNAL!DATAPUBLISHER!PUB:ST4</PointTag>
<SignalReference>INTERNAL!DATAPUBLISHER!PUB-ST4</SignalReference>
<SignalAcronym>STAT</SignalAcronym>
<Description>Publisher statistic for Number of bytes sent by the publisher during the last reporting interval.</Description>
<Internal>true</Internal>
<Enabled>true</Enabled>
<UpdatedOn>2019-01-04T03:01:18.76-05:00</UpdatedOn>
</MeasurementDetail>
<MeasurementDetail>
<ID>STAT:71</ID>
<SignalID>808fb21e-febf-413c-8998-059399a3711d</SignalID>
<PointTag>GPA_TESTSTREAM!OS:ST9</PointTag>
<SignalReference>TESTSTREAM!OS-ST9</SignalReference>
<SignalAcronym>STAT</SignalAcronym>
<Description>OutputStream statistic for Number of frames ahead of schedule reported by the output stream during last reporting interval.</Description>
<Internal>true</Internal>
<Enabled>true</Enabled>
<UpdatedOn>2019-01-04T03:01:18.137-05:00</UpdatedOn>
</MeasurementDetail>
<MeasurementDetail>
<ID>STAT:129</ID>
<SignalID>ebc90716-d8b5-4b4a-96f5-07ad2c709d48</SignalID>
<PointTag>GPA_TLS!DATAPUBLISHER!PUB:ST12</PointTag>
<SignalReference>TLS!DATAPUBLISHER!PUB-ST12</SignalReference>
<SignalAcronym>STAT</SignalAcronym>
<Description>Publisher statistic for Average latency from output stream, in milliseconds, during the lifetime of the publisher.</Description>
<Internal>true</Internal>
<Enabled>true</Enabled>
<UpdatedOn>2019-01-04T03:01:20.38-05:00</UpdatedOn>
</MeasurementDetail>
<MeasurementDetail>
<DeviceAcronym>SHELBY</DeviceAcronym>
<ID>STAT:35</ID>
<SignalID>75f43e31-8cc6-45fa-baa2-0c80b7056846</SignalID>
<PointTag>TVA_SHELBY!IS:ST14</PointTag>
<SignalReference>SHELBY!IS-ST14</SignalReference>
<SignalAcronym>STAT</SignalAcronym>
<Description>InputStream statistic for Average latency, in milliseconds, for data received from input stream during last reporting interval.</Description>
<Internal>true</Internal>
<Enabled>true</Enabled>
<UpdatedOn>2019-01-04T03:01:12.95-05:00</UpdatedOn>
</MeasurementDetail>
<MeasurementDetail>
<DeviceAcronym>SHELBY</DeviceAcronym>
<ID>STAT:29</ID>
<SignalID>3348629a-206b-44c0-999d-0e36da46c841</SignalID>
<PointTag>TVA_SHELBY!IS:ST8</PointTag>
<SignalReference>SHELBY!IS-ST8</SignalReference>
<SignalAcronym>STAT</SignalAcronym>
<Description>InputStream statistic for Boolean value representing if input stream was continually connected during last reporting interval.</Description>
<Internal>true</Internal>
<Enabled>true</Enabled>
<UpdatedOn>2019-01-04T03:01:12.727-05:00</UpdatedOn>
</MeasurementDetail>
<MeasurementDetail>
<ID>STAT:106</ID>
<SignalID>bac63f36-2e3d-4749-a736-0fcbd9ab2144</SignalID>
<PointTag>GPA_DEFAULT!SYSTEM:ST4</PointTag>
<SignalReference>DEFAULT!SYSTEM-ST4</SignalReference>
<SignalAcronym>STAT</SignalAcronym>
<Description>System statistic for Average amount of memory used by this process in megabytes.</Description>
<Internal>true</Internal>
<Enabled>true</Enabled>
<UpdatedOn>2019-01-04T03:01:18.967-05:00</UpdatedOn>
</MeasurementDetail>
<MeasurementDetail>
<ID>STAT:121</ID>
<SignalID>a52a393a-4e12-4648-b621-120410339d45</SignalID>
<PointTag>GPA_TLS!DATAPUBLISHER!PUB:ST4</PointTag>
<SignalReference>TLS!DATAPUBLISHER!PUB-ST4</SignalReference>
<SignalAcronym>STAT</SignalAcronym>
<Description>Publisher statistic for Number of bytes sent by the publisher during the last reporting interval.</Description>
<Internal>true</Internal>
<Enabled>true</Enabled>
<UpdatedOn>2019-01-04T03:01:19.83-05:00</UpdatedOn>
</MeasurementDetail>
<MeasurementDetail>
<ID>STAT:84</ID>
<SignalID>533b8528-9c54-4e9c-aaa4-14c9203bb790</SignalID>
<PointTag>GPA_TESTSTREAM!OS:ST22</PointTag>
<SignalReference>TESTSTREAM!OS-ST22</SignalReference>
<SignalAcronym>STAT</SignalAcronym>
<Description>OutputStream statistic for Minimum latency from output stream, in milliseconds, during the lifetime of the output stream.</Description>
<Internal>true</Internal>
<Enabled>true</Enabled>
<UpdatedOn>2019-01-04T03:01:18.59-05:00</UpdatedOn>
</MeasurementDetail>
<MeasurementDetail>
<ID>STAT:103</ID>
<SignalID>0616dbae-3f1d-4ed6-a166-176c9dff06c8</SignalID>
<PointTag>GPA_DEFAULT!SYSTEM:ST1</PointTag>
<SignalReference>DEFAULT!SYSTEM-ST1</SignalReference>
<SignalAcronym>STAT</SignalAcronym>
<Description>System statistic for Percentage of CPU currently used by this process.</Description>
<Internal>true</Internal>
<Enabled>true</Enabled>
<UpdatedOn>2019-01-04T03:01:18.9-05:00</UpdatedOn>
</MeasurementDetail>
<MeasurementDetail>
<ID>STAT:86</ID>
<SignalID>ea192d13-0530-42b0-9dd9-17b260670c80</SignalID>
<PointTag>GPA_TESTSTREAM!OS:ST24</PointTag>
<SignalReference>TESTSTREAM!OS-ST24</SignalReference>
<SignalAcronym>STAT</SignalAcronym>
<Description>OutputStream statistic for Average latency from output stream, in milliseconds, during the lifetime of the output stream.</Description>
<Internal>true</Internal>
<Enabled>true</Enabled>
<UpdatedOn>2019-01-04T03:01:18.617-05:00</UpdatedOn>
</MeasurementDetail>
<MeasurementDetail>
<ID>STAT:80</ID>
<SignalID>a07302ce-16e2-4883-8382-18b428b30149</SignalID>
<PointTag>GPA_TESTSTREAM!OS:ST18</PointTag>
<SignalReference>TESTSTREAM!OS-ST18</SignalReference>
<SignalAcronym>STAT</SignalAcronym>
<Description>OutputStream statistic for Number of bytes sent from the output source during the lifetime of the output stream.</Description>
<Internal>true</Internal>
<Enabled>true</Enabled>
<UpdatedOn>2019-01-04T03:01:18.463-05:00</UpdatedOn>
</MeasurementDetail>
<MeasurementDetail>
<ID>STAT:112</ID>
<SignalID>46f0fdcb-99b9-47e3-863f-198398a929c9</SignalID>
<PointTag>GPA_DEFAULT!SYSTEM:ST10</PointTag>
<SignalReference>DEFAULT!SYSTEM-ST10</SignalReference>
<SignalAcronym>STAT</SignalAcronym>
<Description>System statistic for Average amount of IO used by this process in kilobytes per second.</Description>
<Internal>true</Internal>
<Enabled>true</Enabled>
<UpdatedOn>2019-01-04T03:01:19.23-05:00</UpdatedOn>
</MeasurementDetail>
<MeasurementDetail>
<ID>STAT:59</ID>
<SignalID>aaa646a5-0c7e-4aba-abbe-1a39026ce785</SignalID>
<PointTag>GPA_EXTERNAL!DATAPUBLISHER!PUB:ST10</PointTag>
<SignalReference>EXTERNAL!DATAPUBLISHER!PUB-ST10</SignalReference>
<SignalAcronym>STAT</SignalAcronym>
<Description>Publisher statistic for Minimum latency from output stream, in milliseconds, during the lifetime of the publisher.</Description>
<Internal>true</Internal>
<Enabled>true</Enabled>
<UpdatedOn>2019-01-04T03:01:15.887-05:00</UpdatedOn>
</MeasurementDetail>
<MeasurementDetail>
<DeviceAcronym>SHELBY</DeviceAcronym>
<ID>STAT:18</ID>
<SignalID>f1319b39-17d0-4df6-8029-1a986d5fc6fd</SignalID>
<PointTag>TVA_SHELBY!PMU:ST4</PointTag>
<SignalReference>SHELBY!PMU-ST4</SignalReference>
<SignalAcronym>STAT</SignalAcronym>
<Description>Device statistic for Number of measurements received from device during last reporting interval.</Description>
<Internal>true</Internal>
<Enabled>true</Enabled>
<UpdatedOn>2019-01-04T03:01:11.79-05:00</UpdatedOn>
</MeasurementDetail>
<MeasurementDetail>
<ID>STAT:66</ID>
<SignalID>67f006fb-bfbe-4498-b5e1-1c0f68791c81</SignalID>
<PointTag>GPA_TESTSTREAM!OS:ST4</PointTag>
<SignalReference>TESTSTREAM!OS-ST4</SignalReference>
<SignalAcronym>STAT</SignalAcronym>
<Description>OutputStream statistic for Number of processed measurements reported by the output stream during last reporting interval.</Description>
<Internal>true</Internal>
<Enabled>true</Enabled>
<UpdatedOn>2019-01-04T03:01:17.517-05:00</UpdatedOn>
</MeasurementDetail>
<MeasurementDetail>
<ID>STAT:102</ID>
<SignalID>1b628c02-11be-47e5-a4db-1c28f40416c6</SignalID>
<PointTag>GPA_INTERNAL!DATAPUBLISHER!PUB:ST13</PointTag>
<SignalReference>INTERNAL!DATAPUBLISHER!PUB-ST13</SignalReference>
<SignalAcronym>STAT</SignalAcronym>
<Description>Publisher statistic for Total number of seconds publisher has been running.</Description>
<Internal>true</Internal>
<Enabled>true</Enabled>
<UpdatedOn>2019-01-04T03:01:18.857-05:00</UpdatedOn>
</MeasurementDetail>
<MeasurementDetail>
<ID>STAT:98</ID>
<SignalID>519601bc-0a31-4e74-a780-1d1f15423bec</SignalID>
<PointTag>GPA_INTERNAL!DATAPUBLISHER!PUB:ST9</PointTag>
<SignalReference>INTERNAL!DATAPUBLISHER!PUB-ST9</SignalReference>
<SignalAcronym>STAT</SignalAcronym>
<Description>Publisher statistic for The average number of measurements sent per second during the last reporting interval.</Description>
<Internal>true</Internal>
<Enabled>true</Enabled>
<UpdatedOn>2019-01-04T03:01:18.807-05:00</UpdatedOn>
</MeasurementDetail>
<MeasurementDetail>
<ID>STAT:65</ID>
<SignalID>5348d289-0b27-4d18-88ea-2003a1dd8504</SignalID>
<PointTag>GPA_TESTSTREAM!OS:ST3</PointTag>
<SignalReference>TESTSTREAM!OS-ST3</SignalReference>
<SignalAcronym>STAT</SignalAcronym>
<Description>OutputStream statistic for Number of expected measurements reported by the output stream during last reporting interval.</Description>
<Internal>true</Internal>
<Enabled>true</Enabled>
<UpdatedOn>2019-01-04T03:01:17.247-05:00</UpdatedOn>
</MeasurementDetail>
<MeasurementDetail>
<ID>STAT:113</ID>
<SignalID>53271e32-e7a5-4e89-a420-202872d4d341</SignalID>
<PointTag>GPA_DEFAULT!SYSTEM:ST11</PointTag>
<SignalReference>DEFAULT!SYSTEM-ST11</SignalReference>
<SignalAcronym>STAT</SignalAcronym>
<Description>System statistic for Number of IP datagrams (or bytes on Mono) currently sent by this process per second.</Description>
<Internal>true</Internal>
<Enabled>true</Enabled>
<UpdatedOn>2019-01-04T03:01:19.337-05:00</UpdatedOn>
</MeasurementDetail>
<MeasurementDetail>
<DeviceAcronym>SHELBY</DeviceAcronym>
<ID>STAT:41</ID>
<SignalID>6f885d53-0d1b-44a7-92e9-238e5d85cd80</SignalID>
<PointTag>TVA_SHELBY!IS:ST20</PointTag>
<SignalReference>SHELBY!IS-ST20</SignalReference>
<SignalAcronym>STAT</SignalAcronym>
<Description>InputStream statistic for Number of processed measurements reported by the input stream during the lifetime of the input stream.</Description>
<Internal>true</Internal>
<Enabled>true</Enabled>
<UpdatedOn>2019-01-04T03:01:13.22-05:00</UpdatedOn>
</MeasurementDetail>
<MeasurementDetail>
<ID>STAT:128</ID>
<SignalID>f3ff91f5-b469-442e-88d6-28b3f12be8c1</SignalID>
<PointTag>GPA_TLS!DATAPUBLISHER!PUB:ST11</PointTag>
<SignalReference>TLS!DATAPUBLISHER!PUB-ST11</SignalReference>
<SignalAcronym>STAT</SignalAcronym>
<Description>Publisher statistic for Maximum latency from output stream, in milliseconds, during the lifetime of the publisher.</Description>
<Internal>true</Internal>
<Enabled>true</Enabled>
<UpdatedOn>2019-01-04T03:01:20.267-05:00</UpdatedOn>
</MeasurementDetail>
<MeasurementDetail>
<ID>STAT:117</ID>
<SignalID>58c2b866-ff41-40c9-a4e8-2929922f2bda</SignalID>
<PointTag>GPA_DEFAULT!SYSTEM:ST15</PointTag>
<SignalReference>DEFAULT!SYSTEM-ST15</SignalReference>
<SignalAcronym>STAT</SignalAcronym>
<Description>System statistic for Total number of seconds system has been running.</Description>
<Internal>true</Internal>
<Enabled>true</Enabled>
<UpdatedOn>2019-01-04T03:01:19.463-05:00</UpdatedOn>
</MeasurementDetail>
<MeasurementDetail>
<ID>STAT:67</ID>
<SignalID>0adc188e-2410-4a59-b6ae-298583390a51</SignalID>
<PointTag>GPA_TESTSTREAM!OS:ST5</PointTag>
<SignalReference>TESTSTREAM!OS-ST5</SignalReference>
<SignalAcronym>STAT</SignalAcronym>
<Description>OutputStream statistic for Number of measurements sorted by arrival reported by the output stream during last reporting interval.</Description>
<Internal>true</Internal>
<Enabled>true</Enabled>
<UpdatedOn>2019-01-04T03:01:17.7-05:00</UpdatedOn>
</MeasurementDetail>
<MeasurementDetail>
<ID>STAT:76</ID>
<SignalID>938d245a-b141-45e0-875a-2b49a55e2215</SignalID>
<PointTag>GPA_TESTSTREAM!OS:ST14</PointTag>
<SignalReference>TESTSTREAM!OS-ST14</SignalReference>
<SignalAcronym>STAT</SignalAcronym>
<Description>OutputStream statistic for Average latency, in milliseconds, for data published from output stream during last reporting interval.</Description>
<Internal>true</Internal>
<Enabled>true</Enabled>
<UpdatedOn>2019-01-04T03:01:18.397-05:00</UpdatedOn>
</MeasurementDetail>
<MeasurementDetail>
<ID>STAT:99</ID>
<SignalID>c0b72599-8302-469a-aec6-2b514e763444</SignalID>
<PointTag>GPA_INTERNAL!DATAPUBLISHER!PUB:ST10</PointTag>
<SignalReference>INTERNAL!DATAPUBLISHER!PUB-ST10</SignalReference>
<SignalAcronym>STAT</SignalAcronym>
<Description>Publisher statistic for Minimum latency from output stream, in milliseconds, during the lifetime of the publisher.</Description>
<Internal>true</Internal>
<Enabled>true</Enabled>
<UpdatedOn>2019-01-04T03:01:18.817-05:00</UpdatedOn>
</MeasurementDetail>
<MeasurementDetail>
<ID>STAT:70</ID>
<SignalID>139deaaf-c6f6-4fc3-8b6c-34f466da1618</SignalID>
<PointTag>GPA_TESTSTREAM!OS:ST8</PointTag>
<SignalReference>TESTSTREAM!OS-ST8</SignalReference>
<SignalAcronym>STAT</SignalAcronym>
<Description>OutputStream statistic for Number of missed sorts by timeout reported by the output stream during last reporting interval.</Description>
<Internal>true</Internal>
<Enabled>true</Enabled>
<UpdatedOn>2019-01-04T03:01:18.087-05:00</UpdatedOn>
</MeasurementDetail>
<MeasurementDetail>
<DeviceAcronym>SHELBY</DeviceAcronym>
<ID>STAT:36</ID>
<SignalID>b2a1a23e-f7ed-491e-809b-36a43391ad6a</SignalID>
<PointTag>TVA_SHELBY!IS:ST15</PointTag>
<SignalReference>SHELBY!IS-ST15</SignalReference>
<SignalAcronym>STAT</SignalAcronym>
<Description>InputStream statistic for Frame rate as defined by input stream during last reporting interval.</Description>
<Internal>true</Internal>
<Enabled>true</Enabled>
<UpdatedOn>2019-01-04T03:01:12.983-05:00</UpdatedOn>
</MeasurementDetail>
<MeasurementDetail>
<ID>STAT:130</ID>
<SignalID>db1c9582-759e-425a-b174-39d11be00085</SignalID>
<PointTag>GPA_TLS!DATAPUBLISHER!PUB:ST13</PointTag>
<SignalReference>TLS!DATAPUBLISHER!PUB-ST13</SignalReference>
<SignalAcronym>STAT</SignalAcronym>
<Description>Publisher statistic for Total number of seconds publisher has been running.</Description>
<Internal>true</Internal>
<Enabled>true</Enabled>
<UpdatedOn>2019-01-04T03:01:20.43-05:00</UpdatedOn>
</MeasurementDetail>
<MeasurementDetail>
<ID>STAT:125</ID>
<SignalID>ac304d0f-a2fd-457a-99d0-3bcfa699b0a5</SignalID>
<PointTag>GPA_TLS!DATAPUBLISHER!PUB:ST8</PointTag>
<SignalReference>TLS!DATAPUBLISHER!PUB-ST8</SignalReference>
<SignalAcronym>STAT</SignalAcronym>
<Description>Publisher statistic for The maximum number of measurements sent per second during the last reporting interval.</Description>
<Internal>true</Internal>
<Enabled>true</Enabled>
<UpdatedOn>2019-01-04T03:01:20.09-05:00</UpdatedOn>
</MeasurementDetail>
<MeasurementDetail>
<ID>STAT:127</ID>
<SignalID>3c0a76fa-002d-45cd-81df-3ec6b3ec6c2a</SignalID>
<PointTag>GPA_TLS!DATAPUBLISHER!PUB:ST10</PointTag>
<SignalReference>TLS!DATAPUBLISHER!PUB-ST10</SignalReference>
<SignalAcronym>STAT</SignalAcronym>
<Description>Publisher statistic for Minimum latency from output stream, in milliseconds, during the lifetime of the publisher.</Description>
<Internal>true</Internal>
<Enabled>true</Enabled>
<UpdatedOn>2019-01-04T03:01:20.2-05:00</UpdatedOn>
</MeasurementDetail>
<MeasurementDetail>
<DeviceAcronym>SHELBY</DeviceAcronym>
<ID>STAT:24</ID>
<SignalID>c87db563-9b1e-4999-b98f-43785728479a</SignalID>
<PointTag>TVA_SHELBY!IS:ST3</PointTag>
<SignalReference>SHELBY!IS-ST3</SignalReference>
<SignalAcronym>STAT</SignalAcronym>
<Description>InputStream statistic for Number of frames that were not received from input stream during last reporting interval.</Description>
<Internal>true</Internal>
<Enabled>true</Enabled>
<UpdatedOn>2019-01-04T03:01:12.39-05:00</UpdatedOn>
</MeasurementDetail>
<MeasurementDetail>
<DeviceAcronym>SHELBY</DeviceAcronym>
<ID>STAT:44</ID>
<SignalID>8e0f64b5-8e12-4f41-810b-4468a9256fa8</SignalID>
<PointTag>TVA_SHELBY!IS:ST23</PointTag>
<SignalReference>SHELBY!IS-ST23</SignalReference>
<SignalAcronym>STAT</SignalAcronym>
<Description>InputStream statistic for The maximum number of measurements received per second during the last reporting interval.</Description>
<Internal>true</Internal>
<Enabled>true</Enabled>
<UpdatedOn>2019-01-04T03:01:13.4-05:00</UpdatedOn>
</MeasurementDetail>
<MeasurementDetail>
<ID>STAT:122</ID>
<SignalID>7c69aa35-146e-48e8-a85f-44ab12031f0d</SignalID>
<PointTag>GPA_TLS!DATAPUBLISHER!PUB:ST5</PointTag>
<SignalReference>TLS!DATAPUBLISHER!PUB-ST5</SignalReference>
<SignalAcronym>STAT</SignalAcronym>
<Description>Publisher statistic for Number of processed measurements reported by the publisher during the lifetime of the publisher.</Description>
<Internal>true</Internal>
<Enabled>true</Enabled>
<UpdatedOn>2019-01-04T03:01:19.88-05:00</UpdatedOn>
</MeasurementDetail>
<MeasurementDetail>
<DeviceAcronym>SHELBY</DeviceAcronym>
<ID>STAT:33</ID>
<SignalID>e50c8b9d-0042-481c-9dc7-4664cb91a318</SignalID>
<PointTag>TVA_SHELBY!IS:ST12</PointTag>
<SignalReference>SHELBY!IS-ST12</SignalReference>
<SignalAcronym>STAT</SignalAcronym>
<Description>InputStream statistic for Number of configuration frames received from input stream during last reporting interval.</Description>
<Internal>true</Internal>
<Enabled>true</Enabled>
<UpdatedOn>2019-01-04T03:01:12.863-05:00</UpdatedOn>
</MeasurementDetail>
<MeasurementDetail>
<DeviceAcronym>SHELBY</DeviceAcronym>
<ID>PPA:12</ID>
<SignalID>c635e906-8bfb-486d-901e-46c8e07afdc3</SignalID>
<PointTag>TVA_SHELBY-DELL:ABBIH</PointTag>
<SignalReference>SHELBY-PA4</SignalReference>
<SignalAcronym>IPHA</SignalAcronym>
<PhasorSourceIndex>4</PhasorSourceIndex>
<Description>Shelby ABB-521 Dell Positive Sequence Current Phase Angle</Description>
<Internal>true</Internal>
<Enabled>true</Enabled>
<UpdatedOn>2019-01-04T03:00:52.79-05:00</UpdatedOn>
</MeasurementDetail>
<MeasurementDetail>
<ID>STAT:81</ID>
<SignalID>a4b46c39-4d55-468b-89b6-4a19bd72214f</SignalID>
<PointTag>GPA_TESTSTREAM!OS:ST19</PointTag>
<SignalReference>TESTSTREAM!OS-ST19</SignalReference>
<SignalAcronym>STAT</SignalAcronym>
<Description>OutputStream statistic for The minimum number of measurements sent per second during the last reporting interval.</Description>
<Internal>true</Internal>
<Enabled>true</Enabled>
<UpdatedOn>2019-01-04T03:01:18.527-05:00</UpdatedOn>
</MeasurementDetail>
<MeasurementDetail>
<DeviceAcronym>SHELBY</DeviceAcronym>
<ID>STAT:32</ID>
<SignalID>ece653a2-71ac-4726-9c32-4b164444d1ed</SignalID>
<PointTag>TVA_SHELBY!IS:ST11</PointTag>
<SignalReference>SHELBY!IS-ST11</SignalReference>
<SignalAcronym>STAT</SignalAcronym>
<Description>InputStream statistic for Number of data frames received from input stream during last reporting interval.</Description>
<Internal>true</Internal>
<Enabled>true</Enabled>
<UpdatedOn>2019-01-04T03:01:12.827-05:00</UpdatedOn>
</MeasurementDetail>
<MeasurementDetail>
<ID>STAT:64</ID>
<SignalID>915e2ea2-b505-4085-9e38-4c086816f4a2</SignalID>
<PointTag>GPA_TESTSTREAM!OS:ST2</PointTag>
<SignalReference>TESTSTREAM!OS-ST2</SignalReference>
<SignalAcronym>STAT</SignalAcronym>
<Description>OutputStream statistic for Number of received measurements reported by the output stream during last reporting interval.</Description>
<Internal>true</Internal>
<Enabled>true</Enabled>
<UpdatedOn>2019-01-04T03:01:16.98-05:00</UpdatedOn>
</MeasurementDetail>
<MeasurementDetail>
<ID>STAT:51</ID>
<SignalID>6129026d-1034-42ff-ba22-4daf85aa4f30</SignalID>
<PointTag>GPA_EXTERNAL!DATAPUBLISHER!PUB:ST2</PointTag>
<SignalReference>EXTERNAL!DATAPUBLISHER!PUB-ST2</SignalReference>
<SignalAcronym>STAT</SignalAcronym>
<Description>Publisher statistic for Number of clients connected to the command channel of the publisher during last reporting interval.</Description>
<Internal>true</Internal>
<Enabled>true</Enabled>
<UpdatedOn>2019-01-04T03:01:13.997-05:00</UpdatedOn>
</MeasurementDetail>
<MeasurementDetail>
<ID>STAT:114</ID>
<SignalID>bef2653d-98e1-46d4-92a3-4dcf622413b1</SignalID>
<PointTag>GPA_DEFAULT!SYSTEM:ST12</PointTag>
<SignalReference>DEFAULT!SYSTEM-ST12</SignalReference>
<SignalAcronym>STAT</SignalAcronym>
<Description>System statistic for Average number of IP datagrams (or bytes on Mono) sent by this process per second.</Description>
<Internal>true</Internal>
<Enabled>true</Enabled>
<UpdatedOn>2019-01-04T03:01:19.36-05:00</UpdatedOn>
</MeasurementDetail>
<MeasurementDetail>
<DeviceAcronym>SHELBY</DeviceAcronym>
<ID>PPA:6</ID>
<SignalID>25355a7b-2a9d-4ef2-99ba-4dd791461379</SignalID>
<PointTag>TVA_SHELBY-BUS1:ABBVH</PointTag>
<SignalReference>SHELBY-PA1</SignalReference>
<SignalAcronym>VPHA</SignalAcronym>
<PhasorSourceIndex>1</PhasorSourceIndex>
<Description>Shelby ABB-521 500 kV Bus 1 Positive Sequence Voltage Phase Angle</Description>
<Internal>true</Internal>
<Enabled>true</Enabled>
<UpdatedOn>2019-01-04T03:00:52.78-05:00</UpdatedOn>
</MeasurementDetail>
<MeasurementDetail>
<DeviceAcronym>SHELBY</DeviceAcronym>
<ID>STAT:23</ID>
<SignalID>e7a79169-1194-40d6-b47a-4e6eca7c3797</SignalID>
<PointTag>TVA_SHELBY!IS:ST2</PointTag>
<SignalReference>SHELBY!IS-ST2</SignalReference>
<SignalAcronym>STAT</SignalAcronym>
<Description>InputStream statistic for Timestamp of last received data frame from input stream.</Description>
<Internal>true</Internal>
<Enabled>true</Enabled>
<UpdatedOn>2019-01-04T03:01:12.32-05:00</UpdatedOn>
</MeasurementDetail>
<MeasurementDetail>
<DeviceAcronym>SHELBY</DeviceAcronym>
<ID>PPA:8</ID>
<SignalID>96cb33be-f7e4-4dfe-a20a-50976aa507fd</SignalID>
<PointTag>TVA_SHELBY-BUS2:ABBVH</PointTag>
<SignalReference>SHELBY-PA2</SignalReference>
<SignalAcronym>VPHA</SignalAcronym>
<PhasorSourceIndex>2</PhasorSourceIndex>
<Description>Shelby ABB-521 500 kV Bus 2 Positive Sequence Voltage Phase Angle</Description>
<Internal>true</Internal>
<Enabled>true</Enabled>
<UpdatedOn>2019-01-04T03:00:52.783-05:00</UpdatedOn>
</MeasurementDetail>
<MeasurementDetail>
<ID>STAT:105</ID>
<SignalID>819e5341-3900-43c7-b48b-57c35d855da5</SignalID>
<PointTag>GPA_DEFAULT!SYSTEM:ST3</PointTag>
<SignalReference>DEFAULT!SYSTEM-ST3</SignalReference>
<SignalAcronym>STAT</SignalAcronym>
<Description>System statistic for Amount of memory currently used by this process in megabytes.</Description>
<Internal>true</Internal>
<Enabled>true</Enabled>
<UpdatedOn>2019-01-04T03:01:18.937-05:00</UpdatedOn>
</MeasurementDetail>
<MeasurementDetail>
<DeviceAcronym>SHELBY</DeviceAcronym>
<ID>STAT:30</ID>
<SignalID>7b76b429-3d8c-4b5c-8040-5ec875d82a87</SignalID>
<PointTag>TVA_SHELBY!IS:ST9</PointTag>
<SignalReference>SHELBY!IS-ST9</SignalReference>
<SignalAcronym>STAT</SignalAcronym>
<Description>InputStream statistic for Boolean value representing if input stream has received (or has cached) a configuration frame during last reporting interval.</Description>
<Internal>true</Internal>
<Enabled>true</Enabled>
<UpdatedOn>2019-01-04T03:01:12.763-05:00</UpdatedOn>
</MeasurementDetail>
<MeasurementDetail>
<DeviceAcronym>SHELBY</DeviceAcronym>
<ID>PPA:10</ID>
<SignalID>70e72607-dbbc-458b-9c66-5fd32b447a03</SignalID>
<PointTag>TVA_SHELBY-CORD:ABBIH</PointTag>
<SignalReference>SHELBY-PA3</SignalReference>
<SignalAcronym>IPHA</SignalAcronym>
<PhasorSourceIndex>3</PhasorSourceIndex>
<Description>Shelby ABB-521 Cordova Positive Sequence Current Phase Angle</Description>
<Internal>true</Internal>
<Enabled>true</Enabled>
<UpdatedOn>2019-01-04T03:00:52.787-05:00</UpdatedOn>
</MeasurementDetail>
<MeasurementDetail>
<ID>STAT:126</ID>
<SignalID>5fb2adc8-0992-46a4-b964-631b5b849caa</SignalID>
<PointTag>GPA_TLS!DATAPUBLISHER!PUB:ST9</PointTag>
<SignalReference>TLS!DATAPUBLISHER!PUB-ST9</SignalReference>
<SignalAcronym>STAT</SignalAcronym>
<Description>Publisher statistic for The average number of measurements sent per second during the last reporting interval.</Description>
<Internal>true</Internal>
<Enabled>true</Enabled>
<UpdatedOn>2019-01-04T03:01:20.15-05:00</UpdatedOn>
</MeasurementDetail>
<MeasurementDetail>
<ID>STAT:110</ID>
<SignalID>6e8c88e7-898f-4913-bff5-65f3c21ad359</SignalID>
<PointTag>GPA_DEFAULT!SYSTEM:ST8</PointTag>
<SignalReference>DEFAULT!SYSTEM-ST8</SignalReference>
<SignalAcronym>STAT</SignalAcronym>
<Description>System statistic for Average thread lock contention rate in attempts per second.</Description>
<Internal>true</Internal>
<Enabled>true</Enabled>
<UpdatedOn>2019-01-04T03:01:19.083-05:00</UpdatedOn>
</MeasurementDetail>
<MeasurementDetail>
<DeviceAcronym>SHELBY</DeviceAcronym>
<ID>STAT:42</ID>
<SignalID>5ade065a-fd8d-49ac-8a26-6833299949de</SignalID>
<PointTag>TVA_SHELBY!IS:ST21</PointTag>
<SignalReference>SHELBY!IS-ST21</SignalReference>
<SignalAcronym>STAT</SignalAcronym>
<Description>InputStream statistic for Number of bytes received from the input source during the lifetime of the input stream.</Description>
<Internal>true</Internal>
<Enabled>true</Enabled>
<UpdatedOn>2019-01-04T03:01:13.273-05:00</UpdatedOn>
</MeasurementDetail>
<MeasurementDetail>
<DeviceAcronym>SHELBY</DeviceAcronym>
<ID>STAT:39</ID>
<SignalID>01b086e7-408e-4866-85ca-69ad593199f7</SignalID>
<PointTag>TVA_SHELBY!IS:ST18</PointTag>
<SignalReference>SHELBY!IS-ST18</SignalReference>
<SignalAcronym>STAT</SignalAcronym>
<Description>InputStream statistic for Number of data units that were not received at least once from input stream during last reporting interval.</Description>
<Internal>true</Internal>
<Enabled>true</Enabled>
<UpdatedOn>2019-01-04T03:01:13.127-05:00</UpdatedOn>
</MeasurementDetail>
<MeasurementDetail>
<ID>STAT:123</ID>
<SignalID>42199c24-e385-4d25-ba9e-6ab3a7261a4b</SignalID>
<PointTag>GPA_TLS!DATAPUBLISHER!PUB:ST6</PointTag>
<SignalReference>TLS!DATAPUBLISHER!PUB-ST6</SignalReference>
<SignalAcronym>STAT</SignalAcronym>
<Description>Publisher statistic for Number of bytes sent by the publisher during the lifetime of the publisher.</Description>
<Internal>true</Internal>
<Enabled>true</Enabled>
<UpdatedOn>2019-01-04T03:01:19.933-05:00</UpdatedOn>
</MeasurementDetail>
<MeasurementDetail>
<DeviceAcronym>SHELBY</DeviceAcronym>
<ID>STAT:16</ID>
<SignalID>571b7a65-6919-4ba1-84c3-6c40191f8c71</SignalID>
<PointTag>TVA_SHELBY!PMU:ST2</PointTag>
<SignalReference>SHELBY!PMU-ST2</SignalReference>
<SignalAcronym>STAT</SignalAcronym>
<Description>Device statistic for Number of time quality errors reported by device during last reporting interval.</Description>
<Internal>true</Internal>
<Enabled>true</Enabled>
<UpdatedOn>2019-01-04T03:01:11.53-05:00</UpdatedOn>
</MeasurementDetail>
<MeasurementDetail>
<DeviceAcronym>SHELBY</DeviceAcronym>
<ID>STAT:15</ID>
<SignalID>fc8fe07b-aa95-4336-8aae-6d309a1e3a71</SignalID>
<PointTag>TVA_SHELBY!PMU:ST1</PointTag>
<SignalReference>SHELBY!PMU-ST1</SignalReference>
<SignalAcronym>STAT</SignalAcronym>
<Description>Device statistic for Number of data quality errors reported by device during last reporting interval.</Description>
<Internal>true</Internal>
<Enabled>true</Enabled>
<UpdatedOn>2019-01-04T03:01:11.417-05:00</UpdatedOn>
</MeasurementDetail>
<MeasurementDetail>
<ID>STAT:74</ID>
<SignalID>f9031f5e-0342-4bbc-89f5-6f416c61a470</SignalID>
<PointTag>GPA_TESTSTREAM!OS:ST12</PointTag>
<SignalReference>TESTSTREAM!OS-ST12</SignalReference>
<SignalAcronym>STAT</SignalAcronym>
<Description>OutputStream statistic for Minimum latency from output stream, in milliseconds, during last reporting interval.</Description>
<Internal>true</Internal>
<Enabled>true</Enabled>
<UpdatedOn>2019-01-04T03:01:18.29-05:00</UpdatedOn>
</MeasurementDetail>
<MeasurementDetail>
<ID>STAT:72</ID>
<SignalID>559a46ce-549c-4a13-b04c-707c8b89a228</SignalID>
<PointTag>GPA_TESTSTREAM!OS:ST10</PointTag>
<SignalReference>TESTSTREAM!OS-ST10</SignalReference>
<SignalAcronym>STAT</SignalAcronym>
<Description>OutputStream statistic for Number of published frames reported by the output stream during last reporting interval.</Description>
<Internal>true</Internal>
<Enabled>true</Enabled>
<UpdatedOn>2019-01-04T03:01:18.207-05:00</UpdatedOn>
</MeasurementDetail>
<MeasurementDetail>
<DeviceAcronym>SHELBY</DeviceAcronym>
<ID>STAT:26</ID>
<SignalID>a76ac886-a3c3-4cb1-ad21-7281f4c56942</SignalID>
<PointTag>TVA_SHELBY!IS:ST5</PointTag>
<SignalReference>SHELBY!IS-ST5</SignalReference>
<SignalAcronym>STAT</SignalAcronym>
<Description>InputStream statistic for Number of out-of-order frames received from input stream during last reporting interval.</Description>
<Internal>true</Internal>
<Enabled>true</Enabled>
<UpdatedOn>2019-01-04T03:01:12.59-05:00</UpdatedOn>
</MeasurementDetail>
<MeasurementDetail>
<DeviceAcronym>SHELBY</DeviceAcronym>
<ID>STAT:49</ID>
<SignalID>10f2bdf4-63ce-472f-88c0-732dfd413052</SignalID>
<PointTag>TVA_SHELBY!IS:ST28</PointTag>
<SignalReference>SHELBY!IS-ST28</SignalReference>
<SignalAcronym>STAT</SignalAcronym>
<Description>InputStream statistic for Total number of seconds input stream has been running.</Description>
<Internal>true</Internal>
<Enabled>true</Enabled>
<UpdatedOn>2019-01-04T03:01:13.62-05:00</UpdatedOn>
</MeasurementDetail>
<MeasurementDetail>
<ID>STAT:91</ID>
<SignalID>47f678ef-570a-46d3-9034-7347854e215a</SignalID>
<PointTag>GPA_INTERNAL!DATAPUBLISHER!PUB:ST2</PointTag>
<SignalReference>INTERNAL!DATAPUBLISHER!PUB-ST2</SignalReference>
<SignalAcronym>STAT</SignalAcronym>
<Description>Publisher statistic for Number of clients connected to the command channel of the publisher during last reporting interval.</Description>
<Internal>true</Internal>
<Enabled>true</Enabled>
<UpdatedOn>2019-01-04T03:01:18.737-05:00</UpdatedOn>
</MeasurementDetail>
<MeasurementDetail>
<ID>STAT:54</ID>
<SignalID>f0b07767-2334-45c3-a824-73b6ba312808</SignalID>
<PointTag>GPA_EXTERNAL!DATAPUBLISHER!PUB:ST5</PointTag>
<SignalReference>EXTERNAL!DATAPUBLISHER!PUB-ST5</SignalReference>
<SignalAcronym>STAT</SignalAcronym>
<Description>Publisher statistic for Number of processed measurements reported by the publisher during the lifetime of the publisher.</Description>
<Internal>true</Internal>
<Enabled>true</Enabled>
<UpdatedOn>2019-01-04T03:01:14.42-05:00</UpdatedOn>
</MeasurementDetail>
<MeasurementDetail>
<DeviceAcronym>SHELBY</DeviceAcronym>
<ID>STAT:17</ID>
<SignalID>7bae65b9-f3f4-443f-a98c-7a4ea3811b48</SignalID>
<PointTag>TVA_SHELBY!PMU:ST3</PointTag>
<SignalReference>SHELBY!PMU-ST3</SignalReference>
<SignalAcronym>STAT</SignalAcronym>
<Description>Device statistic for Number of device errors reported by device during last reporting interval.</Description>
<Internal>true</Internal>
<Enabled>true</Enabled>
<UpdatedOn>2019-01-04T03:01:11.683-05:00</UpdatedOn>
</MeasurementDetail>
<MeasurementDetail>
<ID>STAT:111</ID>
<SignalID>8dabb646-0656-40fe-b921-7b9666f87cd6</SignalID>
<PointTag>GPA_DEFAULT!SYSTEM:ST9</PointTag>
<SignalReference>DEFAULT!SYSTEM-ST9</SignalReference>
<SignalAcronym>STAT</SignalAcronym>
<Description>System statistic for Amount of IO currently used by this process in kilobytes per second.</Description>
<Internal>true</Internal>
<Enabled>true</Enabled>
<UpdatedOn>2019-01-04T03:01:19.17-05:00</UpdatedOn>
</MeasurementDetail>
<MeasurementDetail>
<ID>STAT:88</ID>
<SignalID>ba0d8c19-fe0b-4a6d-b7df-7c95ac7f23ae</SignalID>
<PointTag>GPA_TESTSTREAM!OS:ST26</PointTag>
<SignalReference>TESTSTREAM!OS-ST26</SignalReference>
<SignalAcronym>STAT</SignalAcronym>
<Description>OutputStream statistic for Number of downsampled measurements reported by the output stream during the lifetime of the output stream.</Description>
<Internal>true</Internal>
<Enabled>true</Enabled>
<UpdatedOn>2019-01-04T03:01:18.643-05:00</UpdatedOn>
</MeasurementDetail>
<MeasurementDetail>
<ID>STAT:60</ID>
<SignalID>8869c8f9-b27e-416f-8b32-8addff7a21f5</SignalID>
<PointTag>GPA_EXTERNAL!DATAPUBLISHER!PUB:ST11</PointTag>
<SignalReference>EXTERNAL!DATAPUBLISHER!PUB-ST11</SignalReference>
<SignalAcronym>STAT</SignalAcronym>
<Description>Publisher statistic for Maximum latency from output stream, in milliseconds, during the lifetime of the publisher.</Description>
<Internal>true</Internal>
<Enabled>true</Enabled>
<UpdatedOn>2019-01-04T03:01:16.12-05:00</UpdatedOn>
</MeasurementDetail>
<MeasurementDetail>
<DeviceAcronym>SHELBY</DeviceAcronym>
<ID>STAT:38</ID>
<SignalID>756b9946-7f90-4994-a81d-8bbbc25144b7</SignalID>
<PointTag>TVA_SHELBY!IS:ST17</PointTag>
<SignalReference>SHELBY!IS-ST17</SignalReference>
<SignalAcronym>STAT</SignalAcronym>
<Description>InputStream statistic for Latest actual mean Mbps data rate for data received from input stream during last reporting interval.</Description>
<Internal>true</Internal>
<Enabled>true</Enabled>
<UpdatedOn>2019-01-04T03:01:13.08-05:00</UpdatedOn>
</MeasurementDetail>
<MeasurementDetail>
<ID>STAT:56</ID>
<SignalID>c7d78f5c-8832-42a0-8646-8cccaf60e7ca</SignalID>
<PointTag>GPA_EXTERNAL!DATAPUBLISHER!PUB:ST7</PointTag>
<SignalReference>EXTERNAL!DATAPUBLISHER!PUB-ST7</SignalReference>
<SignalAcronym>STAT</SignalAcronym>
<Description>Publisher statistic for The minimum number of measurements sent per second during the last reporting interval.</Description>
<Internal>true</Internal>
<Enabled>true</Enabled>
<UpdatedOn>2019-01-04T03:01:14.89-05:00</UpdatedOn>
</MeasurementDetail>
<MeasurementDetail>
<ID>STAT:89</ID>
<SignalID>85346ea3-ed57-4140-badf-9005048f5064</SignalID>
<PointTag>GPA_TESTSTREAM!OS:ST27</PointTag>
<SignalReference>TESTSTREAM!OS-ST27</SignalReference>
<SignalAcronym>STAT</SignalAcronym>
<Description>OutputStream statistic for Total number of seconds output stream has been running.</Description>
<Internal>true</Internal>
<Enabled>true</Enabled>
<UpdatedOn>2019-01-04T03:01:18.697-05:00</UpdatedOn>
</MeasurementDetail>
<MeasurementDetail>
<ID>STAT:96</ID>
<SignalID>a5c6a29d-5a9b-4291-8366-90211c33a108</SignalID>
<PointTag>GPA_INTERNAL!DATAPUBLISHER!PUB:ST7</PointTag>
<SignalReference>INTERNAL!DATAPUBLISHER!PUB-ST7</SignalReference>
<SignalAcronym>STAT</SignalAcronym>
<Description>Publisher statistic for The minimum number of measurements sent per second during the last reporting interval.</Description>
<Internal>true</Internal>
<Enabled>true</Enabled>
<UpdatedOn>2019-01-04T03:01:18.793-05:00</UpdatedOn>
</MeasurementDetail>
<MeasurementDetail>
<ID>STAT:73</ID>
<SignalID>c6a4a1ed-c3f9-4501-bab9-91170e131f73</SignalID>
<PointTag>GPA_TESTSTREAM!OS:ST11</PointTag>
<SignalReference>TESTSTREAM!OS-ST11</SignalReference>
<SignalAcronym>STAT</SignalAcronym>
<Description>OutputStream statistic for Boolean value representing if the output stream was continually connected during last reporting interval.</Description>
<Internal>true</Internal>
<Enabled>true</Enabled>
<UpdatedOn>2019-01-04T03:01:18.23-05:00</UpdatedOn>
</MeasurementDetail>
<MeasurementDetail>
<ID>STAT:95</ID>
<SignalID>838fe62e-0b08-4be1-9007-9242ce962fb7</SignalID>
<PointTag>GPA_INTERNAL!DATAPUBLISHER!PUB:ST6</PointTag>
<SignalReference>INTERNAL!DATAPUBLISHER!PUB-ST6</SignalReference>
<SignalAcronym>STAT</SignalAcronym>
<Description>Publisher statistic for Number of bytes sent by the publisher during the lifetime of the publisher.</Description>
<Internal>true</Internal>
<Enabled>true</Enabled>
<UpdatedOn>2019-01-04T03:01:18.78-05:00</UpdatedOn>
</MeasurementDetail>
<MeasurementDetail>
<ID>STAT:124</ID>
<SignalID>c316b2dd-31c8-4b15-8799-924476b80a00</SignalID>
<PointTag>GPA_TLS!DATAPUBLISHER!PUB:ST7</PointTag>
<SignalReference>TLS!DATAPUBLISHER!PUB-ST7</SignalReference>
<SignalAcronym>STAT</SignalAcronym>
<Description>Publisher statistic for The minimum number of measurements sent per second during the last reporting interval.</Description>
<Internal>true</Internal>
<Enabled>true</Enabled>
<UpdatedOn>2019-01-04T03:01:20.007-05:00</UpdatedOn>
</MeasurementDetail>
<MeasurementDetail>
<DeviceAcronym>SHELBY</DeviceAcronym>
<ID>PPA:7</ID>
<SignalID>ee130f0f-8c94-414f-b081-9551ffb73753</SignalID>
<PointTag>TVA_SHELBY-BUS2:ABBV</PointTag>
<SignalReference>SHELBY-PM2</SignalReference>
<SignalAcronym>VPHM</SignalAcronym>
<PhasorSourceIndex>2</PhasorSourceIndex>
<Description>Shelby ABB-521 500 kV Bus 2 Positive Sequence Voltage Magnitude</Description>
<Internal>true</Internal>
<Enabled>true</Enabled>
<UpdatedOn>2019-01-04T03:00:52.78-05:00</UpdatedOn>
</MeasurementDetail>
<MeasurementDetail>
<DeviceAcronym>SHELBY</DeviceAcronym>
<ID>STAT:20</ID>
<SignalID>b7ec02fd-b9e5-4ece-a17c-96e087d9d789</SignalID>
<PointTag>TVA_SHELBY!PMU:ST6</PointTag>
<SignalReference>SHELBY!PMU-ST6</SignalReference>
<SignalAcronym>STAT</SignalAcronym>
<Description>Device statistic for Number of measurements received while device was reporting errors during last reporting interval.</Description>
<Internal>true</Internal>
<Enabled>true</Enabled>
<UpdatedOn>2019-01-04T03:01:12.043-05:00</UpdatedOn>
</MeasurementDetail>
<MeasurementDetail>
<ID>STAT:116</ID>
<SignalID>30a8c300-3ac8-47f4-b73f-972efa692d52</SignalID>
<PointTag>GPA_DEFAULT!SYSTEM:ST14</PointTag>
<SignalReference>DEFAULT!SYSTEM-ST14</SignalReference>
<SignalAcronym>STAT</SignalAcronym>
<Description>System statistic for Average number of IP datagrams (or bytes on Mono) received by this process per second.</Description>
<Internal>true</Internal>
<Enabled>true</Enabled>
<UpdatedOn>2019-01-04T03:01:19.423-05:00</UpdatedOn>
</MeasurementDetail>
<MeasurementDetail>
<DeviceAcronym>SHELBY</DeviceAcronym>
<ID>STAT:34</ID>
<SignalID>8809a71e-e859-4ea6-a7be-97ead7b80571</SignalID>
<PointTag>TVA_SHELBY!IS:ST13</PointTag>
<SignalReference>SHELBY!IS-ST13</SignalReference>
<SignalAcronym>STAT</SignalAcronym>
<Description>InputStream statistic for Number of header frames received from input stream during last reporting interval.</Description>
<Internal>true</Internal>
<Enabled>true</Enabled>
<UpdatedOn>2019-01-04T03:01:12.91-05:00</UpdatedOn>
</MeasurementDetail>
<MeasurementDetail>
<ID>STAT:90</ID>
<SignalID>dc1ab1ae-9c5d-4fb9-a729-9acba390e122</SignalID>
<PointTag>GPA_INTERNAL!DATAPUBLISHER!PUB:ST1</PointTag>
<SignalReference>INTERNAL!DATAPUBLISHER!PUB-ST1</SignalReference>
<SignalAcronym>STAT</SignalAcronym>
<Description>Publisher statistic for Boolean value representing if the publisher was continually connected during last reporting interval.</Description>
<Internal>true</Internal>
<Enabled>true</Enabled>
<UpdatedOn>2019-01-04T03:01:18.717-05:00</UpdatedOn>
</MeasurementDetail>
<MeasurementDetail>
<DeviceAcronym>SHELBY</DeviceAcronym>
<ID>STAT:27</ID>
<SignalID>76044f19-a2f1-40ba-8697-9b64e1c547ea</SignalID>
<PointTag>TVA_SHELBY!IS:ST6</PointTag>
<SignalReference>SHELBY!IS-ST6</SignalReference>
<SignalAcronym>STAT</SignalAcronym>
<Description>InputStream statistic for Minimum latency from input stream, in milliseconds, during last reporting interval.</Description>
<Internal>true</Internal>
<Enabled>true</Enabled>
<UpdatedOn>2019-01-04T03:01:12.677-05:00</UpdatedOn>
</MeasurementDetail>
<MeasurementDetail>
<ID>STAT:52</ID>
<SignalID>61fccb97-4079-465a-a4a4-9b7115d859f5</SignalID>
<PointTag>GPA_EXTERNAL!DATAPUBLISHER!PUB:ST3</PointTag>
<SignalReference>EXTERNAL!DATAPUBLISHER!PUB-ST3</SignalReference>