4.0.0 • Published 1 month ago

@sigyn/agent v4.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
1 month ago

🚧 Requirements

🚀 Getting Started

This package is available in the Node Package Repository and can be easily installed with npm or yarn

$ npm i @sigyn/agent
# or
$ yarn add @sigyn/agent

Add environment variables

$ touch .env

Add these variables:

# Required
GRAFANA_API_TOKEN=your_token
# Default to sigyn.sqlite3
SIGYN_DB=your_db

Add Sigyn config

$ touch sigyn.config.json

Please see here for config documentation

📚 Usage

import { start } from "@sigyn/agent";

await start();

🌐 API

start(location?: string, options?: StartOptions): Promise<ToadScheduler>

Run Sigyn agent. It will fetch logs depending your rules polling and send alerts when count threshold is reached.

  • location: string Optional, default to process.cwd(). The path to your SQLite database, it will create the file if it doesn't exists but the directory must exists.
  • options.logger: Logger Optional, default to pino. You can use your own logger which must be an object with theses 3 methods: debug, info & error.
  • options.level Optional, only works if no logger given. Set log level: "info" | "debug" | "error".
  • options.timeout Optional, you can provide a timeout for Grafana API requests. Default: 30_000.

The returned scheduler instance allow you to put some extra logic if needed, see API for scheduler.

🖋️ Interfaces

interface Logger {
  info: (message: string) => void;
  error: (message: string) => void;
  debug: (message: string) => void;
}

interface StartOptions {
  logger?: Logger;
  level?: "info" | "debug" | "error";
  timeout?: number;
}

License

MIT

4.0.0

1 month ago

3.4.1

3 months ago

3.4.0

4 months ago

3.3.0

5 months ago

3.2.1

6 months ago

3.2.0

6 months ago

3.1.1

6 months ago

3.1.0

6 months ago

3.0.0

6 months ago

2.6.0

8 months ago

2.5.1

8 months ago

2.5.0

8 months ago

2.4.1

9 months ago

2.4.0

9 months ago

2.3.1

9 months ago

2.3.0

9 months ago

2.2.0

9 months ago

2.1.0

9 months ago

2.0.0

9 months ago

1.0.0

9 months ago