Escape < character in plaintext (#20699)
Fotis Voutsas committed
Jul 18, 2025 at 14:18 UTC
e3616806774f1867615858b89f55434417ec2bf5
2 files changed
+5
-5
src/plugins.d/FUNCTION_UI_DEVELOPER_GUIDE.md
+3
-3
@@ -27,7 +27,7 @@ Simple table functions display current system state - processes, connections, se
27
**Implementation Architecture:**
28
- **Frontend handles**: Filtering, search, facet counting, sorting
29
- **Backend provides**: Raw data, column definitions, optional charts
30
-- **Performance**: Limited by browser processing (good for <10k rows)
30
+- **Performance**: Limited by browser processing (good for \<10k rows)
31
- **Query parameter**: Processed in frontend only (substring search)
32
- **Histograms**: Not supported
33
@@ -170,7 +170,7 @@ Make your table more useful with these enhancements:
170
Simple tables have certain limitations due to their frontend-only processing architecture:
171
172
- **No histograms**: Time-based visualization is not supported
173
-- **Performance limits**: Frontend processing is limited by browser memory (recommend <10k rows)
173
+- **Performance limits**: Frontend processing is limited by browser memory (recommend \<10k rows)
174
- **No backend search**: Query parameter is not sent to backend - search happens client-side only
175
- **Static facet counts**: Counts are computed by frontend from all received data
176
@@ -950,4 +950,4 @@ if (tail_mode) {
950
951
---
952
953
-This guide covers everything you need to build both simple monitoring functions and advanced log explorers. For implementation details and edge cases, see [FUNCTIONS_REFERENCE.md](FUNCTIONS_REFERENCE.md).
\ No newline at end of file
953
+This guide covers everything you need to build both simple monitoring functions and advanced log explorers. For implementation details and edge cases, see [FUNCTIONS_REFERENCE.md](FUNCTIONS_REFERENCE.md).
src/plugins.d/FUNCTION_UI_REFERENCE.md
+2
-2
@@ -134,7 +134,7 @@ if(payload) {
134
135
| Aspect | GET (Legacy) | POST (Modern v3) |
136
|--------|--------------|------------------|
137
-| Version | v < 3 | v = 3 |
137
+| Version | v \< 3 | v = 3 |
138
| Field IDs | 11-char hashes | Plain names |
139
| Parameters | URL encoded | JSON body |
140
| Facet filters | `field_hash:value1,value2` | `{"field": ["value1", "value2"]}` |
@@ -1674,4 +1674,4 @@ When properly formatted, the log explorer UI provides:
1674
1675
---
1676
1677
-*Last Updated: Based on analysis of Netdata codebase and cloud-frontend implementation*
\ No newline at end of file
1677
+*Last Updated: Based on analysis of Netdata codebase and cloud-frontend implementation*