Skip to content

CloudPhoenix/logflake-client-go

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

LogFlake Client Go

This repository contains the sources for the client-side components of the LogFlake product suite for applications logs and performance collection for Golang applications.

🏠 [LogFlake Website](https://logflake.io) | 🔥 [CloudPhoenix Website](https://cloudphoenix.it)

Downloads

Package Name Version
logflake-client-go GitHub Tag

Usage

Retrieve your application-key from Application Settings in LogFlake UI.

import "github.com/CloudPhoenix/logflake-client-go/logflake"
i := logflake.New("application-key")

i.SendLog(logflake.Log{
    Content: "Hello World",
    Level:   logflake.LevelInfo,
})