Forget about logs to files or console!
Instead, log directly to your online Kiponos dashboard!
As Kiponos internally dispatches your data using WebSockets, it is faster and safer then most log libraries and tools.
You got real-time messaging, with virtually zero latency!
For example,
You want some analytics or metrics report when you run tests.
Instead of logging, or even instead of reporting to a file, simply use the Kiponos SDK to "set" the keys and values at runtime like this:
long totalOrdersCreated = 0;
// Your counting logic....
totalOrdersCreated++;
// Your SDK knows what's your team, runtime environment
// and config profile from the access token,
// so no need to worry about initialization...
Kiponos cfg = Kiponos.createForCurrentTeam();
KiponosFolder usageStats = cfg.path("orders-stats");
// Instantly displayed online in real-time on your dashboard.
usageStats.set("total-orders-created", totalOrdersCreated);
Your Real-Time Web Dashboard
Any member of your team sees this in real-time on their dashboard:
Best,
Moshe Avdiel, Kiponos dev team.
Top comments (0)