Skip to content
This repository has been archived by the owner on Jul 22, 2024. It is now read-only.

Commit

Permalink
Rename project to 'vpc-flowlogs-log-analysis'
Browse files Browse the repository at this point in the history
  • Loading branch information
victorshinya committed Dec 23, 2021
1 parent 34db044 commit d8a7243
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 15 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

[![IBM Cloud Powered](https://img.shields.io/badge/IBM%20Cloud-powered-blue.svg)](https://cloud.ibm.com)
[![Platform](https://img.shields.io/badge/platform-nodejs-lightgrey.svg?style=flat)](https://developer.ibm.com/technologies/node-js/)
[![LICENSE](https://img.shields.io/badge/license-Apache--2.0-blue.svg)](https://github.com/IBM/flow-logs-logdna/blob/master/LICENSE)
[![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg)](https://github.com/IBM/flow-logs-logdna/pulls)
[![LICENSE](https://img.shields.io/badge/license-Apache--2.0-blue.svg)](https://github.com/IBM/vpc-flowlogs-log-analysis/blob/master/LICENSE)
[![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg)](https://github.com/IBM/vpc-flowlogs-log-analysis/pulls)

[IBM Cloud® Flow Logs for VPC](https://cloud.ibm.com/catalog/services/is.flow-log-collector) enable the collection, storage, and presentation of information about the Internet Protocol (IP) traffic going to and from network interfaces within your Virtual Private Cloud (VPC). The service stores collector output in a bucket on [IBM Cloud Object Storage (COS)](https://cloud.ibm.com/catalog/services/cloud-object-storage) - at least 1 log package (on a `.gz` file). For those logs, there is a service called [IBM Log Analysis with LogDNA](https://cloud.ibm.com/catalog/services/ibm-log-analysis-with-logdna) that can receive all logs and display them in a single platform (you can send logs from your Kubernetes cluster, VMs, etc). To import all logs into LogDNA, you need to set up a Serverless function on IBM Cloud Functions which uses a Trigger to call your function automatically. The Trigger listens for a write event on IBM Cloud Object Storage. Whenever Flow Logs for VPC stores a new object into your IBM Cloud Object Storage bucket, the Trigger calls your function that process the log package and automatcally send it to your LogDNA instance.

Expand All @@ -16,8 +16,8 @@ Before you follow step-by-step below, you need to install [IBM Cloud CLI](https:
Download the source code from Github and access the project folder.

```sh
git clone https://github.com/IBM/flow-logs-logdna.git
cd flow-logs-logdna
git clone https://github.com/IBM/vpc-flowlogs-log-analysis.git
cd vpc-flowlogs-log-analysis
```

## 2. Create an IBM Cloud Object Storage service instance
Expand Down
2 changes: 1 addition & 1 deletion manifest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

# Basic action code in Node.js
packages:
flow-logs-logdna:
vpc-flowlogs-log-analysis:
version: 1.0.0
license: Apache-2.0
actions:
Expand Down
8 changes: 4 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "flow-logs-logdna",
"version": "1.0.0",
"description": "Pull the lastest log file on Cloud Object Storage to store on LogDNA",
"name": "vpc-flowlogs-log-analysis",
"version": "1.1.0",
"description": "Send all log files from IBM Cloud Object Storage bucket to an IBM Log Analysis instance",
"main": "index.js",
"scripts": {
"lint": "eslint *.js --ignore-path .gitignore .",
Expand All @@ -11,14 +11,14 @@
},
"repository": {
"type": "git",
"url": "git+https://github.com/IBM/flow-logs-logdna.git"
"url": "git+https://github.com/IBM/vpc-flowlogs-log-analysis.git"
},
"author": "Victor Shinya <vshinya@br.ibm.com>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/IBM/flow-logs-logdna/issues"
"url": "https://github.com/IBM/vpc-flowlogs-log-analysis/issues"
},
"homepage": "https://github.com/IBM/flow-logs-logdna#readme",
"homepage": "https://github.com/IBM/vpc-flowlogs-log-analysis#readme",
"dependencies": {
"dotenv": "^10.0.0",
"express": "^4.17.1",
Expand Down

0 comments on commit d8a7243

Please sign in to comment.