https://github.com/ricardolsmendes/access-logs-ndjson-gcs-gcf
Google Cloud Function to convert raw access log files into newline delimited JSON
https://github.com/ricardolsmendes/access-logs-ndjson-gcs-gcf
Last synced: 4 months ago
JSON representation
Google Cloud Function to convert raw access log files into newline delimited JSON
- Host: GitHub
- URL: https://github.com/ricardolsmendes/access-logs-ndjson-gcs-gcf
- Owner: ricardolsmendes
- License: mit
- Created: 2020-01-02T00:31:03.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2025-02-18T11:08:15.000Z (8 months ago)
- Last Synced: 2025-03-13T17:28:11.294Z (7 months ago)
- Language: JavaScript
- Homepage:
- Size: 767 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: .github/CONTRIBUTING.md
- License: LICENSE
- Code of conduct: .github/CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# access-logs-ndjson-gcs-gcf
Google Cloud Function to convert raw access log files into newline delimited JSON.
[![js-standard-style][1]][2] [![CircleCI][3]][4]
_This repository is part a project described in the article
[Serverless ETL on Google Cloud, a case study: raw data into JSON Lines][5]._## Environment variables
Below environment variables are used by the function:
| NAME | DESCRIPTION | MANDATORY |
| ---------------- | -------------------------------------------------------------------------------------------- | :-------: |
| `TARGET_BUCKET` | GCS Bucket to store the output. | Yes |
| `JSON_KEYS_CASE` | Character case of the output JSON object keys; defaults to `camel`, accepts `snake` as well. | No |## Using Cloud Build to deploy
Present function is deployable through Cloud Build (build spec file: `.cloudbuild/cloudbuild.yaml`).
Below substitution variables are required by the build job:
| NAME | DESCRIPTION |
| ------------------ | ------------------------------------------------------------------------------------- |
| `_FUNCTION_NAME` | ID or fully qualified identifier for the function. |
| `_JSON_KEYS_CASE` | Character case of the output JSON object keys. |
| `_MAX_INSTANCES` | Maximum number of instances for the function. |
| `_SERVICE_ACCOUNT` | The email address of the IAM service account associated with the function at runtime. |
| `_SOURCE` | Location of source code to deploy. |
| `_TARGET_BUCKET` | GCS Bucket to store the output. |
| `_TRIGGER_BUCKET` | GCS Bucket that will trigger the Cloud Function on file-related events. |You may refer to [gcloud functions deploy docs][6] for instructions on how to fulfill some of the
variables.## How to contribute
Please make sure to take a moment and read the [Code of
Conduct](https://github.com/ricardolsmendes/access-logs-ndjson-gcs-gcf/blob/master/.github/CODE_OF_CONDUCT.md).### Report issues
Please report bugs and suggest features via the [GitHub
Issues](https://github.com/ricardolsmendes/access-logs-ndjson-gcs-gcf/issues).Before opening an issue, search the tracker for possible duplicates. If you find a duplicate, please
add a comment saying that you encountered the problem as well.### Contribute code
Please make sure to read the [Contributing
Guide](https://github.com/ricardolsmendes/access-logs-ndjson-gcs-gcf/blob/master/.github/CONTRIBUTING.md)
before making a pull request.[1]: https://img.shields.io/badge/code%20style-standard-brightgreen.svg
[2]: http://standardjs.com
[3]: https://circleci.com/gh/ricardolsmendes/access-logs-ndjson-gcs-gcf.svg?style=svg
[4]: https://circleci.com/gh/ricardolsmendes/access-logs-ndjson-gcs-gcf
[5]: https://medium.com/google-cloud/serverless-etl-on-google-cloud-a-case-study-raw-data-into-json-lines-d20711cd3917
[6]: https://cloud.google.com/sdk/gcloud/reference/functions/deploy