{"id":18772014,"url":"https://github.com/wcbonner/influxdbwindsvg","last_synced_at":"2026-01-28T00:37:19.248Z","repository":{"id":193594554,"uuid":"686190682","full_name":"wcbonner/InfluxDBWindSVG","owner":"wcbonner","description":"Service to create MRTG style SVG graphs of Apparent Wind and Atmospheric Pressure from InfluxDB","archived":false,"fork":false,"pushed_at":"2024-10-17T03:54:17.000Z","size":344,"stargazers_count":1,"open_issues_count":1,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-03-27T00:11:22.742Z","etag":null,"topics":["graph","influxdb","linux","pressure","svg","wind"],"latest_commit_sha":null,"homepage":"","language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/wcbonner.png","metadata":{"files":{"readme":"ReadMe.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-09-02T01:34:12.000Z","updated_at":"2024-10-17T03:54:21.000Z","dependencies_parsed_at":"2023-10-02T05:14:32.237Z","dependency_job_id":"f99932ab-1749-435f-8db7-3bfa7ad7c529","html_url":"https://github.com/wcbonner/InfluxDBWindSVG","commit_stats":{"total_commits":75,"total_committers":3,"mean_commits":25.0,"dds":"0.31999999999999995","last_synced_commit":"c8dd59201076091ba700fc522bed5b4c4e50c34b"},"previous_names":["wcbonner/influxdbwindsvg"],"tags_count":5,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wcbonner%2FInfluxDBWindSVG","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wcbonner%2FInfluxDBWindSVG/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wcbonner%2FInfluxDBWindSVG/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wcbonner%2FInfluxDBWindSVG/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/wcbonner","download_url":"https://codeload.github.com/wcbonner/InfluxDBWindSVG/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248678021,"owners_count":21144200,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["graph","influxdb","linux","pressure","svg","wind"],"created_at":"2024-11-07T19:27:31.078Z","updated_at":"2026-01-28T00:37:19.179Z","avatar_url":"https://github.com/wcbonner.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"# InfluxDBWindSVG\nRetrieves Apparent Wind and Atmospheric Pressure data from Influx database and writes it to MRTG style SVG graphs.\n\n![Image](./sola_wind-day.svg)\n![Image](./sola_pressure-day.svg)\n![Image](./sola_windpressure-week.svg)\n\nThe apparent wind data is inserted into the database from an existing SignalK https://github.com/SignalK instance recieving data from the instruments on my boat.\n\n## Usage\n```\nUsage: /usr/local/bin/influxdbwindsvg [options]\n  InfluxDBWindSVG Version 3.20240121.1 Built on: Jan 21 2024 at 14:56:22\n  Options:\n    -? | --help          Print this message\n    -v | --verbose level stdout verbosity level [1]\n    -W | --wind          monitor environment.wind.speedApparent\n    -P | --pressure      monitor environment.outside.pressure\n    -s | --svg name      SVG output directory [\"\"]\n    -x | --minmax graph  Draw the minimum and maximum temperature and humidity status on SVG graphs. 1:daily, 2:weekly, 4:monthly, 8:yearly\n    -h | --host name     InfluxDBHost []\n    -p | --port number   InfluxDBPort [0]\n    -d | --database name InfluxDBDatabase []\n    -c | --cache name    InfluxDBCacheDirectory [\"\"]\n```\n\nIf both wind and pressure are selected, a combined graph is produced as well as the individual graphs. It is most interesting at the weekly scale.\n\n## Details\n\nI started all of this trying to use https://www.influxdata.com/blog/getting-started-c-influxdb/ as a starting point.\n\nIt required getting https://github.com/offa/influxdb-cxx up and running, which required this as a prerequisite: https://github.com/libcpr/cpr\n\n### Here's a set of commands that can build from scratch\n#### cpr\n```\ngit clone https://github.com/libcpr/cpr.git\nmkdir cpr/build \u0026\u0026 pushd cpr/build\ncmake .. -DCPR_USE_SYSTEM_CURL=OFF\ncmake --build .\nsudo cmake --install .\npopd\n```\n#### influxdb-cxx\n```\nsudo apt install libboost-all-dev\ngit clone https://github.com/offa/influxdb-cxx\nmkdir influxdb-cxx/build \u0026\u0026 pushd influxdb-cxx/build\ncmake -D INFLUXCXX_TESTING:BOOL=OFF ..\nsudo make install\nsudo ldconfig\npopd\n```\n#### InfluxDBWindSVG\n```\ngit clone https://github.com/wcbonner/InfluxDBWindSVG.git\ncmake -S InfluxDBWindSVG -B InfluxDBWindSVG/build\ncmake --build InfluxDBWindSVG/build\npushd InfluxDBWindSVG/build \u0026\u0026 cpack . \u0026\u0026 popd\n```\n\n### Below is a log of what I did\n```\nwim@WimPi4-Sola:~ $ git clone https://github.com/libcpr/cpr.git\nCloning into 'cpr'...\nremote: Enumerating objects: 8290, done.\nremote: Counting objects: 100% (1011/1011), done.\nremote: Compressing objects: 100% (454/454), done.\nremote: Total 8290 (delta 637), reused 838 (delta 553), pack-reused 7279\nReceiving objects: 100% (8290/8290), 1.63 MiB | 5.97 MiB/s, done.\nResolving deltas: 100% (5532/5532), done.\nwim@WimPi4-Sola:~ $ cd cpr \u0026\u0026 mkdir build \u0026\u0026 cd build\nwim@WimPi4-Sola:~/cpr/build $ cmake .. -DCPR_USE_SYSTEM_CURL=ON\n-- The CXX compiler identification is GNU 10.2.1\n-- Detecting CXX compiler ABI info\n-- Detecting CXX compiler ABI info - done\n-- Check for working CXX compiler: /usr/bin/c++ - skipped\n-- Detecting CXX compile features\n-- Detecting CXX compile features - done\n-- CXX standard: 17\n-- C++ Requests CMake Options\n-- =======================================================\n--   CPR_GENERATE_COVERAGE: OFF\n--   CPR_CURL_NOSIGNAL: OFF\n--   CURL_VERBOSE_LOGGING: OFF\n--   CPR_USE_SYSTEM_GTEST: OFF\n--   CPR_USE_SYSTEM_CURL: ON\n--   CPR_ENABLE_CURL_HTTP_ONLY: ON\n--   CPR_ENABLE_SSL: ON\n--   CPR_FORCE_OPENSSL_BACKEND: OFF\n--   CPR_FORCE_WINSSL_BACKEND: OFF\n--   CPR_FORCE_DARWINSSL_BACKEND: OFF\n--   CPR_FORCE_MBEDTLS_BACKEND: OFF\n--   CPR_ENABLE_LINTING: OFF\n--   CPR_ENABLE_CPPCHECK: OFF\n--   CPR_BUILD_TESTS: OFF\n--   CPR_BUILD_TESTS_SSL: OFF\n--   CPR_BUILD_TESTS_PROXY: OFF\n--   CPR_SKIP_CA_BUNDLE_SEARCH: OFF\n--   CPR_USE_BOOST_FILESYSTEM: OFF\n--   CPR_DEBUG_SANITIZER_FLAG_THREAD: OFF\n--   CPR_DEBUG_SANITIZER_FLAG_ADDR: OFF\n--   CPR_DEBUG_SANITIZER_FLAG_LEAK: OFF\n--   CPR_DEBUG_SANITIZER_FLAG_UB: OFF\n--   CPR_DEBUG_SANITIZER_FLAG_ALL: OFF\n-- =======================================================\n-- Performing Test THREAD_SANITIZER_AVAILABLE\n-- Performing Test THREAD_SANITIZER_AVAILABLE - Success\n-- Performing Test ADDRESS_SANITIZER_AVAILABLE\n-- Performing Test ADDRESS_SANITIZER_AVAILABLE - Success\n-- Performing Test LEAK_SANITIZER_AVAILABLE\n-- Performing Test LEAK_SANITIZER_AVAILABLE - Success\n-- Performing Test UNDEFINED_BEHAVIOUR_SANITIZER_AVAILABLE\n-- Performing Test UNDEFINED_BEHAVIOUR_SANITIZER_AVAILABLE - Success\n-- Performing Test ALL_SANITIZERS_AVAILABLE\n-- Performing Test ALL_SANITIZERS_AVAILABLE - Success\n-- Automatically detecting SSL backend.\n-- Detecting SSL backend...\n-- Found OpenSSL: /usr/lib/aarch64-linux-gnu/libcrypto.so (found version \"1.1.1n\")\n-- SSL auto detect: Using OpenSSL.\n-- Found CURL: /usr/lib/aarch64-linux-gnu/libcurl.so (found version \"7.74.0\") found components: HTTP HTTPS\n-- Curl 7.74.0 found on this system.\n-- Configuring done\n-- Generating done\n-- Build files have been written to: /home/wim/cpr/build\nwim@WimPi4-Sola:~/cpr/build $ cmake --build .\nScanning dependencies of target cpr\n[  3%] Building CXX object cpr/CMakeFiles/cpr.dir/accept_encoding.cpp.o\n[  6%] Building CXX object cpr/CMakeFiles/cpr.dir/async.cpp.o\n[ 10%] Building CXX object cpr/CMakeFiles/cpr.dir/auth.cpp.o\n[ 13%] Building CXX object cpr/CMakeFiles/cpr.dir/bearer.cpp.o\n[ 17%] Building CXX object cpr/CMakeFiles/cpr.dir/callback.cpp.o\n[ 20%] Building CXX object cpr/CMakeFiles/cpr.dir/cert_info.cpp.o\n[ 24%] Building CXX object cpr/CMakeFiles/cpr.dir/cookies.cpp.o\n[ 27%] Building CXX object cpr/CMakeFiles/cpr.dir/cprtypes.cpp.o\n[ 31%] Building CXX object cpr/CMakeFiles/cpr.dir/curl_container.cpp.o\n[ 34%] Building CXX object cpr/CMakeFiles/cpr.dir/curlholder.cpp.o\n[ 37%] Building CXX object cpr/CMakeFiles/cpr.dir/error.cpp.o\n[ 41%] Building CXX object cpr/CMakeFiles/cpr.dir/file.cpp.o\n[ 44%] Building CXX object cpr/CMakeFiles/cpr.dir/multipart.cpp.o\n[ 48%] Building CXX object cpr/CMakeFiles/cpr.dir/parameters.cpp.o\n[ 51%] Building CXX object cpr/CMakeFiles/cpr.dir/payload.cpp.o\n[ 55%] Building CXX object cpr/CMakeFiles/cpr.dir/proxies.cpp.o\n[ 58%] Building CXX object cpr/CMakeFiles/cpr.dir/proxyauth.cpp.o\n[ 62%] Building CXX object cpr/CMakeFiles/cpr.dir/session.cpp.o\n[ 65%] Building CXX object cpr/CMakeFiles/cpr.dir/threadpool.cpp.o\n[ 68%] Building CXX object cpr/CMakeFiles/cpr.dir/timeout.cpp.o\n[ 72%] Building CXX object cpr/CMakeFiles/cpr.dir/unix_socket.cpp.o\n[ 75%] Building CXX object cpr/CMakeFiles/cpr.dir/util.cpp.o\n[ 79%] Building CXX object cpr/CMakeFiles/cpr.dir/response.cpp.o\n[ 82%] Building CXX object cpr/CMakeFiles/cpr.dir/redirect.cpp.o\n[ 86%] Building CXX object cpr/CMakeFiles/cpr.dir/interceptor.cpp.o\n[ 89%] Building CXX object cpr/CMakeFiles/cpr.dir/ssl_ctx.cpp.o\n[ 93%] Building CXX object cpr/CMakeFiles/cpr.dir/curlmultiholder.cpp.o\n[ 96%] Building CXX object cpr/CMakeFiles/cpr.dir/multiperform.cpp.o\n[100%] Linking CXX shared library ../lib/libcpr.so\n[100%] Built target cpr\nwim@WimPi4-Sola:~/cpr/build $ sudo cmake --install .\n-- Install configuration: \"\"\n-- Installing: /usr/local/lib/aarch64-linux-gnu/libcpr.so.1.11.0\n-- Installing: /usr/local/lib/aarch64-linux-gnu/libcpr.so.1\n-- Installing: /usr/local/lib/aarch64-linux-gnu/libcpr.so\n-- Installing: /usr/local/lib/aarch64-linux-gnu/cmake/cpr/cprTargets.cmake\n-- Installing: /usr/local/lib/aarch64-linux-gnu/cmake/cpr/cprTargets-noconfig.cmake\n-- Installing: /usr/local/lib/aarch64-linux-gnu/cmake/cpr/cprConfig.cmake\n-- Installing: /usr/local/lib/aarch64-linux-gnu/cmake/cpr/cprConfigVersion.cmake\n-- Installing: /usr/local/include/cpr\n-- Installing: /usr/local/include/cpr/cookies.h\n-- Installing: /usr/local/include/cpr/response.h\n-- Installing: /usr/local/include/cpr/limit_rate.h\n-- Installing: /usr/local/include/cpr/local_port_range.h\n-- Installing: /usr/local/include/cpr/multipart.h\n-- Installing: /usr/local/include/cpr/threadpool.h\n-- Installing: /usr/local/include/cpr/connect_timeout.h\n-- Installing: /usr/local/include/cpr/cert_info.h\n-- Installing: /usr/local/include/cpr/accept_encoding.h\n-- Installing: /usr/local/include/cpr/cpr.h\n-- Installing: /usr/local/include/cpr/local_port.h\n-- Installing: /usr/local/include/cpr/proxies.h\n-- Installing: /usr/local/include/cpr/ssl_ctx.h\n-- Installing: /usr/local/include/cpr/callback.h\n-- Installing: /usr/local/include/cpr/ssl_options.h\n-- Installing: /usr/local/include/cpr/cprtypes.h\n-- Installing: /usr/local/include/cpr/http_version.h\n-- Installing: /usr/local/include/cpr/async.h\n-- Installing: /usr/local/include/cpr/unix_socket.h\n-- Installing: /usr/local/include/cpr/bearer.h\n-- Installing: /usr/local/include/cpr/verbose.h\n-- Installing: /usr/local/include/cpr/reserve_size.h\n-- Installing: /usr/local/include/cpr/redirect.h\n-- Installing: /usr/local/include/cpr/body.h\n-- Installing: /usr/local/include/cpr/status_codes.h\n-- Installing: /usr/local/include/cpr/file.h\n-- Installing: /usr/local/include/cpr/curlmultiholder.h\n-- Installing: /usr/local/include/cpr/session.h\n-- Installing: /usr/local/include/cpr/resolve.h\n-- Installing: /usr/local/include/cpr/buffer.h\n-- Installing: /usr/local/include/cpr/interceptor.h\n-- Installing: /usr/local/include/cpr/api.h\n-- Installing: /usr/local/include/cpr/singleton.h\n-- Installing: /usr/local/include/cpr/multiperform.h\n-- Installing: /usr/local/include/cpr/curl_container.h\n-- Installing: /usr/local/include/cpr/curlholder.h\n-- Installing: /usr/local/include/cpr/auth.h\n-- Installing: /usr/local/include/cpr/parameters.h\n-- Installing: /usr/local/include/cpr/error.h\n-- Installing: /usr/local/include/cpr/range.h\n-- Installing: /usr/local/include/cpr/util.h\n-- Installing: /usr/local/include/cpr/async_wrapper.h\n-- Installing: /usr/local/include/cpr/interface.h\n-- Installing: /usr/local/include/cpr/filesystem.h\n-- Installing: /usr/local/include/cpr/payload.h\n-- Installing: /usr/local/include/cpr/user_agent.h\n-- Installing: /usr/local/include/cpr/proxyauth.h\n-- Installing: /usr/local/include/cpr/timeout.h\n-- Installing: /usr/local/include/cpr/low_speed.h\n-- Up-to-date: /usr/local/include/cpr\n-- Installing: /usr/local/include/cpr/cprver.h\n```\n\nand then\n\n```\nwim@WimPi4-Sola:~ $ git clone https://github.com/offa/influxdb-cxx\nCloning into 'influxdb-cxx'...\nremote: Enumerating objects: 2658, done.\nremote: Counting objects: 100% (2658/2658), done.\nremote: Compressing objects: 100% (828/828), done.\nremote: Total 2658 (delta 1760), reused 2587 (delta 1721), pack-reused 0\nReceiving objects: 100% (2658/2658), 443.68 KiB | 2.26 MiB/s, done.\nResolving deltas: 100% (1760/1760), done.\nwim@WimPi4-Sola:~ $ cd influxdb-cxx/\nwim@WimPi4-Sola:~/influxdb-cxx $ mkdir build \u0026\u0026 cd build\nwim@WimPi4-Sola:~/influxdb-cxx/build $ cmake -D INFLUXCXX_TESTING:BOOL=OFF ..\n-- The CXX compiler identification is GNU 10.2.1\n-- Detecting CXX compiler ABI info\n-- Detecting CXX compiler ABI info - done\n-- Check for working CXX compiler: /usr/bin/c++ - skipped\n-- Detecting CXX compile features\n-- Detecting CXX compile features - done\n-- ~~~ influxdb-cxx v0.7.1 ~~~\n-- Build Type : RelWithDebInfo\n-- Boost support : ON\n-- Unit Tests : OFF\n-- System Tests : ON\n-- Looking for C++ include pthread.h\n-- Looking for C++ include pthread.h - found\n-- Performing Test CMAKE_HAVE_LIBC_PTHREAD\n-- Performing Test CMAKE_HAVE_LIBC_PTHREAD - Failed\n-- Looking for pthread_create in pthreads\n-- Looking for pthread_create in pthreads - not found\n-- Looking for pthread_create in pthread\n-- Looking for pthread_create in pthread - found\n-- Found Threads: TRUE\n-- Found CURL: /usr/lib/aarch64-linux-gnu/libcurl.so (found version \"7.74.0\")\n-- Found Boost: /usr/lib/aarch64-linux-gnu/cmake/Boost-1.74.0/BoostConfig.cmake (found version \"1.74.0\") found components: system\n-- Performing Test COMPILER_HAS_HIDDEN_VISIBILITY\n-- Performing Test COMPILER_HAS_HIDDEN_VISIBILITY - Success\n-- Performing Test COMPILER_HAS_HIDDEN_INLINE_VISIBILITY\n-- Performing Test COMPILER_HAS_HIDDEN_INLINE_VISIBILITY - Success\n-- Performing Test COMPILER_HAS_DEPRECATED_ATTR\n-- Performing Test COMPILER_HAS_DEPRECATED_ATTR - Success\n-- Configuring done\n-- Generating done\n-- Build files have been written to: /home/wim/influxdb-cxx/build\nwim@WimPi4-Sola:~/influxdb-cxx/build $ sudo make install\nScanning dependencies of target InfluxDB-Core\n[  9%] Building CXX object src/CMakeFiles/InfluxDB-Core.dir/InfluxDB.cxx.o\n[ 18%] Building CXX object src/CMakeFiles/InfluxDB-Core.dir/Point.cxx.o\n[ 27%] Building CXX object src/CMakeFiles/InfluxDB-Core.dir/InfluxDBFactory.cxx.o\n[ 36%] Building CXX object src/CMakeFiles/InfluxDB-Core.dir/Proxy.cxx.o\n[ 36%] Built target InfluxDB-Core\nScanning dependencies of target InfluxDB-Internal\n[ 45%] Building CXX object src/CMakeFiles/InfluxDB-Internal.dir/LineProtocol.cxx.o\n[ 54%] Building CXX object src/CMakeFiles/InfluxDB-Internal.dir/HTTP.cxx.o\n[ 54%] Built target InfluxDB-Internal\nScanning dependencies of target InfluxDB-BoostSupport\n[ 63%] Building CXX object src/CMakeFiles/InfluxDB-BoostSupport.dir/BoostSupport.cxx.o\nIn file included from /usr/include/boost/smart_ptr/detail/sp_thread_sleep.hpp:22,\n                 from /usr/include/boost/smart_ptr/detail/yield_k.hpp:23,\n                 from /usr/include/boost/smart_ptr/detail/spinlock_gcc_atomic.hpp:14,\n                 from /usr/include/boost/smart_ptr/detail/spinlock.hpp:42,\n                 from /usr/include/boost/smart_ptr/detail/spinlock_pool.hpp:25,\n                 from /usr/include/boost/smart_ptr/shared_ptr.hpp:29,\n                 from /usr/include/boost/shared_ptr.hpp:17,\n                 from /usr/include/boost/date_time/time_clock.hpp:17,\n                 from /usr/include/boost/date_time/posix_time/posix_time_types.hpp:10,\n                 from /usr/include/boost/asio/time_traits.hpp:23,\n                 from /usr/include/boost/asio/detail/timer_queue_ptime.hpp:22,\n                 from /usr/include/boost/asio/detail/deadline_timer_service.hpp:29,\n                 from /usr/include/boost/asio/basic_deadline_timer.hpp:25,\n                 from /usr/include/boost/asio.hpp:25,\n                 from /home/wim/influxdb-cxx/src/UDP.h:33,\n                 from /home/wim/influxdb-cxx/src/BoostSupport.cxx:25:\n/usr/include/boost/bind.hpp:36:1: note: #pragma message: The practice of declaring the Bind placeholders (_1, _2, ...) in the global namespace is deprecated. Please use \u003cboost/bind/bind.hpp\u003e + using namespace boost::placeholders, or define BOOST_BIND_GLOBAL_PLACEHOLDERS to retain the current behavior.\n   36 | BOOST_PRAGMA_MESSAGE(\n      | ^~~~~~~~~~~~~~~~~~~~\n[ 72%] Building CXX object src/CMakeFiles/InfluxDB-BoostSupport.dir/UDP.cxx.o\n[ 81%] Building CXX object src/CMakeFiles/InfluxDB-BoostSupport.dir/TCP.cxx.o\n[ 90%] Building CXX object src/CMakeFiles/InfluxDB-BoostSupport.dir/UnixSocket.cxx.o\n[ 90%] Built target InfluxDB-BoostSupport\nScanning dependencies of target InfluxDB\n[100%] Linking CXX shared library libInfluxDB.so\n[100%] Built target InfluxDB\nInstall the project...\n-- Install configuration: \"RelWithDebInfo\"\n-- Installing: /usr/local/lib/aarch64-linux-gnu/libInfluxDB.so.1.0.0\n-- Installing: /usr/local/lib/aarch64-linux-gnu/libInfluxDB.so.1\n-- Set runtime path of \"/usr/local/lib/aarch64-linux-gnu/libInfluxDB.so.1.0.0\" to \"\"\n-- Installing: /usr/local/lib/aarch64-linux-gnu/libInfluxDB.so\n-- Up-to-date: /usr/local/include\n-- Installing: /usr/local/include/Point.h\n-- Installing: /usr/local/include/InfluxDBException.h\n-- Installing: /usr/local/include/Transport.h\n-- Installing: /usr/local/include/Proxy.h\n-- Installing: /usr/local/include/InfluxDBFactory.h\n-- Installing: /usr/local/include/InfluxDB.h\n-- Installing: /usr/local/include/influxdb_export.h\n-- Installing: /usr/local/lib/aarch64-linux-gnu/cmake/InfluxDB/InfluxDBTargets.cmake\n-- Installing: /usr/local/lib/aarch64-linux-gnu/cmake/InfluxDB/InfluxDBTargets-relwithdebinfo.cmake\n-- Installing: /usr/local/lib/aarch64-linux-gnu/cmake/InfluxDB/InfluxDBConfig.cmake\n-- Installing: /usr/local/lib/aarch64-linux-gnu/cmake/InfluxDB/InfluxDBConfigVersion.cmake\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwcbonner%2Finfluxdbwindsvg","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwcbonner%2Finfluxdbwindsvg","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwcbonner%2Finfluxdbwindsvg/lists"}