{"id":23572059,"url":"https://github.com/nabildridi/logtcpserverreceiverandviewer","last_synced_at":"2026-04-14T14:32:54.169Z","repository":{"id":269702271,"uuid":"908145740","full_name":"nabildridi/LogTcpServerReceiverAndViewer","owner":"nabildridi","description":"A Tcp server that receive and display log messages (Structured log formats : Logstach, Elasticsearch and Graylog) from multiple remote applications ","archived":false,"fork":false,"pushed_at":"2024-12-26T08:56:41.000Z","size":65,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-08-30T09:02:22.815Z","etag":null,"topics":["elasticsearch","graylog","logback","logger","logging","logstash","netty","spring-boot"],"latest_commit_sha":null,"homepage":"","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/nabildridi.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2024-12-25T09:04:09.000Z","updated_at":"2024-12-30T08:55:46.000Z","dependencies_parsed_at":"2024-12-25T13:27:18.483Z","dependency_job_id":"fffe8ad7-a1da-454b-906b-036a67f5c2aa","html_url":"https://github.com/nabildridi/LogTcpServerReceiverAndViewer","commit_stats":null,"previous_names":["nabildridi/logtcpserverreceiverandviewer"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/nabildridi/LogTcpServerReceiverAndViewer","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nabildridi%2FLogTcpServerReceiverAndViewer","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nabildridi%2FLogTcpServerReceiverAndViewer/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nabildridi%2FLogTcpServerReceiverAndViewer/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nabildridi%2FLogTcpServerReceiverAndViewer/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/nabildridi","download_url":"https://codeload.github.com/nabildridi/LogTcpServerReceiverAndViewer/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nabildridi%2FLogTcpServerReceiverAndViewer/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31801374,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-14T11:13:53.975Z","status":"ssl_error","status_checked_at":"2026-04-14T11:13:53.299Z","response_time":153,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["elasticsearch","graylog","logback","logger","logging","logstash","netty","spring-boot"],"created_at":"2024-12-26T20:28:58.322Z","updated_at":"2026-04-14T14:32:54.151Z","avatar_url":"https://github.com/nabildridi.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# LogTcpServerReceiverAndViewer\nA Tcp server that receive and display log messages (Structured log formats : Logstach, Elasticsearh and Graylog) from multiple remote applications \n\n# About the project :\nThe project is composed by two parts :\n- A Tcp server that receives *structured log messages (Logstach, Elasticsearh and Graylog)* from remote applications\n- A web application that displays the received messages\n\n# Important note :\nThe project is very basic.\n**It does not persist log messages or offer a search function**\n\n# Configuration :\nIn application.properties we can configure :\n- The Tcp server port with '**logging.server.port**'\n- The web application port with '**server.port**'\n\n# The web interface :\nThe web interface is accessible with the url :  **http://localhost:{server.port}**\n\n# How to send structured log messages from your applications:\nIn your pom.xml, import the socket appender :\n\n    \u003cdependency\u003e\n        \u003cgroupId\u003eme.moocar\u003c/groupId\u003e\n        \u003cartifactId\u003esocket-encoder-appender\u003c/artifactId\u003e\n        \u003cversion\u003e0.1beta1\u003c/version\u003e\n    \u003c/dependency\u003e\n\n\nThen import one of those encoders :\n\n    \u003cdependency\u003e    \n\t    \u003cgroupId\u003eco.elastic.logging\u003c/groupId\u003e    \n\t    \u003cartifactId\u003elogback-ecs-encoder\u003c/artifactId\u003e    \n\t    \u003cversion\u003e1.6.0\u003c/version\u003e    \n    \u003c/dependency\u003e   \n      \n    \n    \u003cdependency\u003e    \n\t    \u003cgroupId\u003enet.logstash.logback\u003c/groupId\u003e    \n\t    \u003cartifactId\u003elogstash-logback-encoder\u003c/artifactId\u003e    \n\t    \u003cversion\u003e8.0\u003c/version\u003e    \n    \u003c/dependency\u003e\n          \n    \n    \u003cdependency\u003e    \n\t    \u003cgroupId\u003ede.siegmar\u003c/groupId\u003e    \n\t    \u003cartifactId\u003elogback-gelf\u003c/artifactId\u003e    \n\t    \u003cversion\u003e6.1.0\u003c/version\u003e    \n    \u003c/dependency\u003e\n\n\nIn your logback-spring.xml, add the appender and the encoder :\n\n    \u003cappender name=\"SOCKET_APPENDER\" class=\"net.logstash.logback.appender.LogstashTcpSocketAppender\"\u003e\n    \t\u003cencoder class=\"co.elastic.logging.logback.EcsEncoder\"/\u003e\n    \t\u003c!-- \u003cencoder class=\"net.logstash.logback.encoder.LogstashEncoder\"/\u003e --\u003e\n    \t\u003c!-- \u003cencoder class=\"de.siegmar.logbackgelf.GelfEncoder\"/\u003e --\u003e\n    \t\u003cdestination\u003e127.0.0.1:{logging.server.port}\u003c/destination\u003e\n    \u003c/appender\u003e \n\nNote : uncomment and comment your preferred format.\n\n\n  \n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnabildridi%2Flogtcpserverreceiverandviewer","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnabildridi%2Flogtcpserverreceiverandviewer","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnabildridi%2Flogtcpserverreceiverandviewer/lists"}