GraphiteClient

master

Lightweight Swift framework for feeding data into Graphite and statsD.
avito-tech/GraphiteClient

GraphiteClient

Lightweight Swift framework for feeding data into Graphite and statsD.

Getting Started

Installation

Swift Package Manager

Add the dependency in your Package.swift file:

let package = Package(
    name: "project",
    dependencies: [
        .package(
            url: "https://github.com/avito-tech/GraphiteClient.git", 
            .upToNextMajor(from: "0.1.0")
        ),
    ],
    targets: [
        .target(
            name: "YourProjectName",
            dependencies: [
                "GraphiteClient"
            ]
        )
    ]
)

CocoaPods

To integrate GraphiteClient into your Xcode project using CocoaPods, specify it in your Podfile:

pod 'GraphiteClient', '~> 0.1'

Usage

import GraphiteClient

let streamProvider = NetworkSocketOutputStreamProvider(
    host: host,
    port: port
)
let easyOutputStream = EasyOutputStream(
    outputStreamProvider: streamProvider,
    errorHandler: { stream, error in
        debugPrint("Graphite stream error: \(error)")
    },
    streamEndHandler: { stream in
        debugPrint("Graphite stream has been closed")
    }
)
try easyOutputStream.open()
let client = GraphiteClient(
    easyOutputStream: easyOutputStream
)
try client.send(
    path: [
        "some",
        "metric",
        "path"
    ],
    value: 42.0,
    timestamp: Date()
)

Description

  • Swift Tools 4.2.0
View More Packages from this Author

Dependencies

  • None
Last updated: Sun Mar 24 2024 18:45:29 GMT-0900 (Hawaii-Aleutian Daylight Time)