I am following the steps outlined here to configure loggly in my nodejs app :
npm install winston
npm install winston-loggly-bulk
and in index.js :
var winston =…
We're using Loggly for logging and generally very happy with it, but having upgraded to the Winston methodology I'm now finding that all my logging is not just going to the Loggly server but also being console.loged out to stdout (or stderr,…
I'm trying to implement centralised logging for a number of micro-service docker containers.
To achieve this I'm attempting to use the recommended syslog logging driver approach, to deliver logs to…
I need to log with log4net into multiple targets (loggly, console, file). For loggly I need to log in JSON for some metadata to find logs. I am altering the messageobject for this by adding the metadata to the dynamic messageobject like this…
I'm trying to use in my application a third-party library that wraps Loggly(logging web service).
I used all over my app Retrofit2 but all of the third-party libs that wrap Loggly use the old Retrofit 1.9.0.
Now, I'm keep getting…
Wondering if someone could offer some best practice on logging techniques they use and maybe tagging certain events using airbrake or newrelic or loggly, or something of that nature?
For example, lets say I have events that should never hit my…
I have a couple of ASP.NET web applications I am testing and have set them up with Loggly using their appender for Log4net.
Now, logging seems to be fine but I can't seem to find a way (using log4 loggly appender) to specify an application name so…
I’ve been experimenting with Logstash’s Loggly output, and have noticed that it makes one HTTP POST request for each log event that is read from the input.
My configuration looks like this:
input {
file {
type => "some-logs"
…
I'm trying to install the Loggly add-on, but it's failing with a strange error:
heroku addons:add loggly:mole
Adding loggly:mole on payments-pixieengine-com... failed
! Failed to update iptables on proxy.
How do I install the Loggly add-on on…
I am using loggly to organize my logs. I am using serilog on my dotnet applications.
These are my questions
why is the sink for loggly deprecated?
Should I move to another log management service?
Is there any alternative to this sink or should I…
Our application uses the Serilog NuGet package to write logs to Loggly, and I am using GlobalLogContextto add a custom property like this:
using (GlobalLogContext.PushProperty("TransactionActivityId", activityId))
{
_logger.LogInformation("Test…
I am using winston with winston-loggly-bulk to log messages to Loggly. I want to log all requests that my server receives. With morgan, I would do it simply like this:
app.use(morgan('dev'));
Can we do something similar with winston?
I am trying to send information to loggly via rsyslog with data from mongodb 4.4.2. However I cannot get the data in a way that I can manipulate it and scrub out certain information. When I follow the guide on the Loggly site it works for non…