crystal-log-influx_backend
InfluxDB backend for Crystal's Logger
The Crystal standard library contains a configurable logging mechanism. This allows that to be output to InfluxDB.
Installation
-
Add the dependency to your
shard.yml
:dependencies: log-influx_backend: github: dscottboggs/crystal-log-influx_backend
-
Run
shards install
Usage
require "log"
require "log-influx_backend"
Log.setup backend: Log::InfluxBackend.new token: "your config token",
org: "your organization",
bucket: "some bucket"
Log.info &.emit "a log message!", cpu_count: System.cpu_count
The log entry's severity, context, and source are formatted as "tags", while the log message and any metadata are logged as fields.
Development
Running tests
Before the integration test will run, you need to write a config file in the project directory.
cat <<-YAML > spec-config.yml
token: (your API token goes here -- found in /etc/influxdb2/influx-configs wherever the influx service is running)
org: some-org
bucket: log-influx_backend.spec
YAML
Contributing
- Fork it (https://github.com/dscottboggs/log-influx_backend/fork)
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create a new Pull Request
Contributors
- D. Scott Boggs - creator and maintainer
Repository
crystal-log-influx_backend
Owner
Statistic
- 0
- 0
- 0
- 1
- 0
- almost 3 years ago
- November 19, 2021
License
MIT License
Links
Synced at
Sun, 17 Nov 2024 14:58:44 GMT
Languages