@cryptotaxi247 / netdata-1 / commits / d4da2994d

Fix links in README.md (#14794)

Update README.md

Chris Akritidis committed Mar 22, 2023 at 07:33 UTC d4da2994d3526d757b364ff4946fb1d9fd0bed63
1 file changed +2 -12
collectors/python.d.plugin/pandas/README.md
+2 -12
@@ -1,12 +1,3 @@
1 -<!--
2 -custom_edit_url: https://github.com/netdata/netdata/edit/master/collectors/python.d.plugin/pandas/README.md
3 -title: "Ingest structured data (Pandas)"
4 -sidebar_label: "Ingest structured data (Pandas)"
5 -learn_status: "Published"
6 -learn_topic_type: "References"
7 -learn_rel_path: "Integrations/Monitor/Anything"
8 --->
9 -
1 # Ingest structured data (Pandas)
2
3 <a href="https://pandas.pydata.org/" target="_blank">
@@ -80,12 +71,11 @@ temperature:
71
72 `chart_configs` is a list of dictionary objects where each one defines the sequence of `df_steps` to be run using [`pandas`](https://pandas.pydata.org/),
73 and the `name`, `title` etc to define the
83 -[CHART variables](https://learn.netdata.cloud/docs/agent/collectors/python.d.plugin#global-variables-order-and-chart)
74 +[CHART variables](https://github.com/netdata/netdata/blob/master/docs/guides/python-collector.md#create-charts)
75 that will control how the results will look in netdata.
76
77 The example configuration above would result in a `data` dictionary like the below being collected by Netdata
87 -at each time step. They keys in this dictionary will be the
88 -[dimension](https://learn.netdata.cloud/docs/agent/web#dimensions) names on the chart.
78 +at each time step. They keys in this dictionary will be the "dimensions" of the chart.
79
80 ```javascript
81 {'athens_max': 26.2, 'athens_mean': 19.45952380952381, 'athens_min': 12.2, 'berlin_max': 17.4, 'berlin_mean': 10.764285714285714, 'berlin_min': 5.7, 'dublin_max': 15.3, 'dublin_mean': 12.008928571428571, 'dublin_min': 6.6, 'london_max': 18.9, 'london_mean': 12.510714285714286, 'london_min': 5.2, 'paris_max': 19.4, 'paris_mean': 12.054166666666665, 'paris_min': 4.8}