Questions tagged [loggly]

Loggly is a cloud-based log management service.

Loggly is a cloud-based log management service.

97 questions
3
votes
2 answers

error when setting up loggly/winston

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 =…
ShahiM
  • 3,179
  • 1
  • 33
  • 58
3
votes
1 answer

How can I stop Loggly from printing to stdout (or stderr) and just sending the logs to the cloud?

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,…
Yevgeny Simkin
  • 27,946
  • 39
  • 137
  • 236
2
votes
0 answers

How can I Export more than 2000 rows in Loggly?

Loggly has limitation to export 2000 records. I need to export billion records. Is there any script for that or Any patch available?
Darshit Gandhi
  • 121
  • 1
  • 7
2
votes
1 answer

How to use serilog message templates with loggly

I want to use Serilog message templates with Loggly. I have configured Loggly with Serilog into my application. var logglySettings = new…
2
votes
1 answer

docker-compose syslog driver to loggly not working

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…
user1751825
  • 4,029
  • 1
  • 28
  • 58
2
votes
1 answer

Log4net custom json message in Console/FileAppender

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…
2
votes
1 answer

Using Both Retrofits 1.9.0 and 2.0.0 versions

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…
Nativ
  • 3,092
  • 6
  • 38
  • 69
2
votes
2 answers

Rails - Logging events with tags or types and getting an email alert - best practices?

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…
Greg Blass
  • 3,523
  • 29
  • 42
2
votes
1 answer

Specifying application name in log4net when using Loggly

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…
Lord of Scripts
  • 3,579
  • 5
  • 41
  • 62
2
votes
1 answer

Configuring the Logstash Loggly Output to Use Loggly's Batch API

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" …
MusikPolice
  • 1,699
  • 4
  • 19
  • 38
2
votes
1 answer

Can't add Loggly Addon on Heroku

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…
Daniel X Moore
  • 14,637
  • 17
  • 80
  • 92
1
vote
0 answers

Why is Serilog.Sinks.Loggly deprecated

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…
Antonio Costa
  • 51
  • 1
  • 7
1
vote
0 answers

ASP.NET Core Serilog to Loggly not showing json property

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…
Ian Yang
  • 25
  • 5
1
vote
1 answer

How to use "winston" to log every request that server receive to Loggly

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?
NeNaD
  • 18,172
  • 8
  • 47
  • 89
1
vote
2 answers

Using Rsyslog sending to Loggly and scrub mongodb log data

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…