Questions tagged [loggly]

Loggly is a cloud-based log management service.

Loggly is a cloud-based log management service.

97 questions
29
votes
5 answers

Is there a Logback Layout that Creates JSON Objects with Message Parameters as Attributes?

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

Free alternative to loggly

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).
Destroy
  • 165
  • 1
  • 6
16
votes
8 answers

How to set up Loggly on Elastic Beanstalk?

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?
Ken Liu
  • 22,503
  • 19
  • 75
  • 98
7
votes
1 answer

loggly with winston set tags dynamically

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:…
Mister_L
  • 2,469
  • 6
  • 30
  • 64
7
votes
1 answer

Loggly not working via Winston on Pi

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…
ConfusedNoob
  • 9,826
  • 14
  • 64
  • 85
6
votes
3 answers

What is the maximum throughput of Loggly?

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.
Dmitry Chornyi
  • 1,821
  • 4
  • 25
  • 33
5
votes
5 answers

How to send Log event from Laravel to Loggly?

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.
Mladen Janjetovic
  • 13,844
  • 8
  • 72
  • 82
4
votes
1 answer

Loggly - Refactoring context format - Indexing unique fieldnames limit

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…
Gravy
  • 12,264
  • 26
  • 124
  • 193
4
votes
2 answers

Converting the javascript object to json object

I am creating a object of logMessage. logMessage = function (msg, severity, vendorId, userName, actionPerformed, priority, traceId, dataSent) { this.message = msg; this.severity = severity; this.vendorId = vendorId; this.userName =…
Jackal
  • 2,591
  • 3
  • 25
  • 29
4
votes
4 answers

Where can I export AWS Cloudwatch Logs (for Loggly)?

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

Loggly. Using regexp for search

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": { …
Dmitry Davydov
  • 987
  • 13
  • 21
4
votes
2 answers

How to configure lager to send logs to papertrail or loggly

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?
andyc
  • 515
  • 1
  • 4
  • 12
3
votes
1 answer

custom gin logging middleware truncating logs

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…
3
votes
2 answers

Node.js: How to change log level without restarting the server?

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…
Kamalakannan J
  • 2,818
  • 3
  • 23
  • 51
3
votes
1 answer

Amazon ECS Syslog to Loggly

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…
SnIpY
  • 662
  • 2
  • 10
  • 27
1
2 3 4 5 6 7