A component of Sentinel, a collection of services which monitor the health and function of the Filecoin network.
Lily is a instrumentalized instance of a Lotus node that collects permanent Filecoin chain metrics and writes them to a TimescaleDB time-series and relational datastore or to CSV files.
Lily documentation, including with build, operation instructions, data models and access to data dumps is available at https://lily.starboard.ventures/.
To quickly run tests, you can provide the LILY_TEST_DB
envvar and execute make test
like so:
LILY_TEST_DB="postgres://postgres:password@localhost:5432/postgres?sslmode=disable" make test
For more, manual test running, you could also prepare your environment in the following way:
Create a new DB in postgres for testing:
CREATE DATABASE lily_test;
Migrate the database to the latest schema:
lily migrate --db "postgres://username@localhost/lily_test?sslmode=disable" --latest
Run the tests:
LILY_TEST_DB="postgres://username@localhost/lily_test?sslmode=disable" go test ./...
See https://lily.starboard.ventures/software/lily/operation/#metrics--debugging.
Feature branches and master are designated as unstable which are internal-only development builds.
Periodically a build will be designated as stable and will be assigned a version number by tagging the repository
using Semantic Versioning in the following format: vMajor.Minor.Patch
.
Lily follows the Filecoin Project Code of Conduct. Before contributing, please acquaint yourself with our social courtesies and expectations.
Welcoming new issues and pull requests.
The Filecoin Project and Lily are dual-licensed under Apache 2.0 and MIT terms:
- Apache License, Version 2.0, (LICENSE-APACHE or http://www.apache.org/licenses/LICENSE-2.0)
- MIT license (LICENSE-MIT or http://opensource.org/licenses/MIT)