Arthur de Jong

Open Source / Free Software developer

summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* Update to Plotly.js 2.4Arthur de Jong2021-09-035-260/+1163
| | | | This includes some changes to import D3 ourselves.
* Update NPM packagesArthur de Jong2021-09-032-216/+274
| | | | | Includes fixes for CVE-2021-37713 in the tar npm package (that should not affect us).
* Mark images as assets in webpackArthur de Jong2021-09-031-16/+4
| | | | | This ensures that they are handled correctly, also by newer versions of loaders.
* Update NPM packagesArthur de Jong2021-08-132-76/+82
| | | | Includes changes that should have been part of 8cf2053.
* Run codespell from GitHub actionArthur de Jong2021-08-101-0/+13
|
* Use codespell for spelling checkArthur de Jong2021-08-102-1/+9
|
* Update NPM packagesArthur de Jong2021-08-102-456/+556
| | | | | Includes fixes for CVE-2021-32804 and CVE-2021-32803 in the tar npm package.
* Fix typos found by codespellArthur de Jong2021-08-101-2/+2
|
* Log but ignore exceptions in reading dashboardsArthur de Jong2021-08-061-4/+8
|
* Add CodeQL checkingArthur de Jong2021-07-111-2/+25
|
* Update some NPM packagesArthur de Jong2021-07-093-2353/+1843
| | | | | | | | This includes an update to html-loader that requires a small configurmation change. This does not include new major versions of Bootstrap 5 and Plotly.js 2 that are also available.
* Support digits in rrdtool variable namesArthur de Jong2021-07-091-1/+1
|
* Replace Travis with GitHub actionsArthur de Jong2021-05-022-7/+35
|
* Trim leading and trailing nulls before plottingArthur de Jong2021-05-021-2/+12
| | | | | | This avoids confusing Plotly area plots where a value of 0 is plotted instead. We cannot strip all nulls because that would make it not show gaps in graphs.
* Update some NPM packagesArthur de Jong2021-05-022-812/+853
|
* Refactor code to process data in one placeArthur de Jong2021-05-021-134/+133
| | | | | This gets rid of the two invocations of Plotly.d3.csv() function that processed data slightly differently.
* Fix graph auto-reloadingArthur de Jong2021-02-221-3/+2
| | | | | | We can no longer check if our data series are complete because the new API returns null values for the whole date range so we check the time range instead.
* Try to support gaps in graphsArthur de Jong2021-02-211-6/+8
|
* Use rrdtool xport to generate data seriesArthur de Jong2021-02-212-153/+63
| | | | This speads up fetching data for most graphs 5-fold.
* Handle changes to number of RRD files betterArthur de Jong2021-02-131-11/+18
| | | | | This ensures that the first row contains data (may be None) for all fields and this ignores RRD files that are no longer plotted.
* Fix the way the graph resolution is determinedArthur de Jong2021-02-133-19/+19
| | | | | | | In some cases it could end up with a non-available resolution. This simplifies the code to determine the resolution. Fixes 1e4488a
* Get files ready for 1.1 release1.1Arthur de Jong2021-01-314-3/+11
|
* Update some NPM packagesArthur de Jong2021-01-312-1017/+898
|
* Also dim min/max range for non-highlighted seriesArthur de Jong2021-01-311-12/+10
|
* Support more timestamp formatsArthur de Jong2021-01-302-1/+3
| | | | This results in slightly more compact URLs without escaped spaces.
* Ensure that start timestamp is includedArthur de Jong2021-01-301-1/+1
| | | | This ensures that the start timestamp is included in the returned data.
* Reload the whole data when the range changesArthur de Jong2021-01-301-58/+20
| | | | | | | | This avoids mixing various data point densities in one single graph and ensures that the vertical scales are reasonable for the data that is shown. This also changes the mechanism by which new data is fetched.
* Return data in a single resolution onlyArthur de Jong2021-01-302-6/+7
| | | | | This automaitcally chooses the resolution that contains the whole requested time range.
* Ignore flake8 blind except Exception warningArthur de Jong2021-01-131-0/+1
|
* Update some NPM packagesArthur de Jong2020-12-204-4606/+10905
| | | | | | | | | Includes a fix for CVE-2020-7788 in ini npm package. This upgrades to newer eslint and webpack and includes a few fixes for that. Closes https://github.com/arthurdejong/munin-plot/pull/6
* Update some NPM packagesArthur de Jong2020-09-042-516/+489
|
* Drop pinning of isort now flake8-isort has been fixedArthur de Jong2020-08-161-3/+0
| | | | Reverts 841ea39
* Allow uploading a dashboard JSON fileArthur de Jong2020-08-162-0/+17
|
* Allow downloading the dashboard as a JSON fileArthur de Jong2020-08-162-11/+30
|
* Allow loading dashboard from JSONArthur de Jong2020-08-162-1/+60
| | | | | This allows copy-pasting the dashboard definition and loading graphs from that.
* Allow exporting dashboard to JSONArthur de Jong2020-08-162-0/+77
| | | | | This puts JSON in the copy-paste buffer so it can be saved to a file by the user.
* Make time period selection simplerArthur de Jong2020-08-161-5/+2
| | | | | This makes all time periods relative time ranges based on the current date and time.
* Update some NPM packagesArthur de Jong2020-07-222-736/+318
| | | | Closes https://github.com/arthurdejong/munin-plot/pull/5
* Avoid newer isort for flake8 testsArthur de Jong2020-07-091-0/+3
| | | | | | Do not install the latest isort because it currently breaks flake8-isort. This pinning should be removed as soon as https://github.com/gforcada/flake8-isort/issues/88 is resolved.
* Get files ready for 1.0 release1.0Arthur de Jong2020-06-213-6/+9
|
* Allow configuring MUNIN_DBDIR via environmentArthur de Jong2020-06-212-1/+5
|
* Update some NPM packagesArthur de Jong2020-06-202-660/+172
|
* Ignore seconds when making data requestsArthur de Jong2020-06-201-2/+2
|
* Send the correct relayout eventArthur de Jong2020-06-201-1/+1
| | | | | | | This ensures that the legend for other graphs is correctly updated when changing the date range (zoom or pan). Fixes 63802b9
* Only hover on one series in busy graphArthur de Jong2020-06-141-0/+4
|
* Fix handling of negative graphsArthur de Jong2020-06-141-3/+4
| | | | | This ensures that fields are only removed after they have been marked to keep as negative series for a corresponding graph.
* Use bionic on Travis to avoid version 11 of NodeArthur de Jong2020-06-141-0/+1
|
* Update some NPM packagesArthur de Jong2020-06-132-1439/+1168
|
* Update some NPM packagesArthur de Jong2020-04-102-789/+956
| | | | Closes https://github.com/arthurdejong/munin-plot/pull/3
* Be slightly more efficient with handling zoom changesArthur de Jong2020-04-101-7/+7
| | | | | This only handles the event if the event contains a change in the X-axis range.