I want to send log events to Loggly as JSON objects with parameterized string messages. Our project currently has a lot of code that looks like this:
String someParameter = "1234";
logger.log("This is a log message with a parameter {}",…
I would like find free alternative for loggly for write my logs with application.
Maybe there are open source alternative or free but he need deployment to my VM (Azure).
I'd like to set up Loggly to run on AWS Elastic Beanstalk, but can't find any information on how to do this. Is there any guide anywhere, or some general guidance on how to start?
I'm using loggly with node js. This is the initialization script:
var winston = require('winston');
require('winston-loggly-bulk');
winston.add(winston.transports.Loggly, {
inputToken: "TOKEN",
subdomain: "SUBDOMAIN",
tags:…
I have an IoT project running on a Raspberry Pi 2 using the Raspbian Jessie OS.
It's a web server running in NodeJS (v4) and I'm using Winston to log to Loggly's logging service. All works well when the project is kicked off via npm start from…
How many requests per second from a client can Loggly handle? I am only able to get around 10–20 requests processed per second and I am wondering if this is normal.
I want to send Monolog logs from my Laravel 5.1 application to Loggly.com online log management service. From all possible environment, including local development.
For the past couple of months, we have been logging to Loggly incorrectly. Our contexts historically have been an numerical array of strings.
['message1', 'message2, 'message3' ...]
We are looking to send to loggly an array of objects moving forward…
I know they are storing them somewhere. Maybe a DynamoDB or S3 bucket?
I'd like to use Cloudwatch as a log archive for my EC2 instances, and set it up so that they are passed to Loggly for viewing/sorting/ etc.
I know Loggly recently released a way…
I can't figure out how to search using regexp in loggly.For example there is log what I want to find using the expression /24nonstop.+7554/.
{
"level_name": "WARNING",
"extra": {
"uid": "b1b3a7a",
"http": {
"SERVER": {
…
I am building an erlang application and making use of lager — a logging framework written by Basho technologies.
I would like to send logging output to Papertrail, or failing that Loggly.
Can anyone give me some guidance as to how to configure this?
Intermittently, I see truncated json objects being written to loggly through my custom logging middleware. I've confirmed the outgoing records are in fact being truncated in my code.
Logs are formatted with zerolog and then T'd out between stdout…
In the Node.js application, I use Winston for logging. Right now, the winston.level is set from process.env.LOG_LEVEL variable.
How to reset the winston.level whenever there is a change in process.env.LOG_LEVEL without restarting the Node process…
I am using Loggly in my company to track nginx logs.
I've recently switched to Amazon ECS and I'm having difficulties configuring loggly for it.
In the amazon ECS interface, I configured loggly as following:
But according to the loggly website, I…