Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit dbbd468

Browse files
committedSep 26, 2022
Adding the StatsStore Scraper v0.3 with text fix
1 parent dfac510 commit dbbd468

File tree

1 file changed

+17
-18
lines changed

1 file changed

+17
-18
lines changed
 

‎StatsStore_WebUI/StatsStore_Scraper/README.md

+17-18
Original file line numberDiff line numberDiff line change
@@ -39,24 +39,23 @@ When using the RAD/REST interface the way to communicate data is through JSON da
3939
Here is a simple example of what the resulting JSON datagram looks like:
4040

4141
```json
42-
{'payload': {'formatted_records': None,
43-
'records': [{'points': [{'point_range': None,
44-
'point_type': 'VALUE_POINT',
45-
'point_value': {'ts': 1638346115174970,
46-
'value': {'boolean_val': False,
47-
'dictionary': None,
48-
'dictionary_array': None,
49-
'number': 0,
50-
'number_array': None,
51-
'real': 299887.0,
52-
'real_array': None,
53-
'string': None,
54-
'string_array': None,
55-
'type': 'REAL'}}}],
56-
'ssid': '//:class.cpu//:stat.fpu-usage//:op.rate'}],
57-
'warnings': []},
58-
'status': 'success'}
59-
}
42+
{"payload": {"formatted_records": null,
43+
"records": [{"points": [{"point_range": null,
44+
"point_type": "VALUE_POINT",
45+
"point_value": {"ts": 1638346115174970,
46+
"value": {"boolean_val": false,
47+
"dictionary": null,
48+
"dictionary_array": null,
49+
"number": 0,
50+
"number_array": null,
51+
"real": 299887.0,
52+
"real_array": null,
53+
"string": null,
54+
"string_array": null,
55+
"type": "REAL"}}}],
56+
"ssid": "//:class.cpu//:stat.fpu-usage//:op.rate"}],
57+
"warnings": []},
58+
"status": "success"}
6059
```
6160

6261
And this is what you'd want it to look like to easily import it into a regular time-series database:

0 commit comments

Comments
 (0)
Please sign in to comment.