fluent

package module
v0.1.1 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Apr 12, 2013 License: MIT Imports: 6 Imported by: 0

README

fluent-logger-golang

Build Status

A structured event logger for Fluentd (Golang)

How to install

go get github.com/t-k/fluent-logger-golang

Usage

Install the package with go get and use import to include it in your project.

import "github.com/t-k/fluent-logger-golang"

GoDoc: http://godoc.org/github.com/t-k/fluent-logger-golang

##Example

package main

import (
  "github.com/t-k/fluent-logger-golang"
  "fmt"
)

func main() {
  logger, err := fluent.New(fluent.Config{})
  if err != nil {
    fmt.Println(err)
  }
  defer logger.Close()
  tag := "myapp.access"
  var data = map[string]string{
    "foo":  "bar",
    "hoge": "hoge"}
  logger.Post(tag, data)
}

Setting Config Values

f := fluent.New(fluent.Config{FluentPort: 80, FluentHost: "example.com"})

Tests

go test

Documentation

Index

Constants

View Source
const Version = "0.1.1"

Variables

This section is empty.

Functions

This section is empty.

Types

type Config

type Config struct {
	FluentPort int
	FluentHost string
	Timeout    time.Duration
}

type Fluent

type Fluent struct {
	Config
	// contains filtered or unexported fields
}

func New

func New(config Config) (f *Fluent, err error)

New creates a new Logger.

func (*Fluent) Close

func (f *Fluent) Close() (err error)

Close closes the connection.

func (*Fluent) Post

func (f *Fluent) Post(tag string, message interface{})

Post writes the output for a logging event.

Directories

Path Synopsis

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL