Skip to content

mcplusa/cloudfoundry-sumologic-nozzle

Repository files navigation

cloudfoundry-sumologic-nozzle

=============================== This Nozzle aggregates all the events from the Firehose feature in Cloud Foundry towards Sumo Logic

Options of use

usage: main [<flags>]

Flags:  (See run command, in this document, for syntax of flags)
--help                              Show context-sensitive help (also try --help-long and --help-man).
--api-endpoint=                     CF API Endpoint
--sumo-endpoint=                    SUMO-ENDPOINT Complete URL for the endpoint, copied from the Sumo Logic HTTP Source configuration
--subscription-id="firehose"        Cloud Foundry ID for the subscription.
--cloudfoundry-user=                Cloud Foundry User
--cloudfoundry-password=            Cloud Foundry Password
--events="LogMessage"               Comma separated list of events you would like. Valid options are ContainerMetric, CounterEvent, Error, HttpStart, HttpStartStop,
                                    HttpStop, LogMessage, ValueMetric
--skip-ssl-validation               Skip SSL validation (to allow things like self-signed certs). Do not set to true in production
--nozzle-polling-period=15s         How frequently this Nozzle polls the CF Firehose for data
--log-events-batch-size=500         When number of messages in the buffer is equal to this flag, send those to Sumo Logic
--sumo-post-minimum-delay=2000ms    Minimum time between HTTP POST to Sumo Logic
--sumo-category=""                  This value overrides the default 'Source Category' associated with the configured Sumo Logic HTTP Source
--sumo-name=""                      This value overrides the default 'Source Name' associated with the configured Sumo Logic HTTP Source
--sumo-host=""                      This value overrides the default 'Source Host' associated with the configured Sumo Logic HTTP Source
--verbose-log-messages              Enable Verbose in 'LogMessage' Event. If this flag is NOT present, the LogMessage will contain ONLY the fields: tiemstamp, cf_app_guid, Msg
--custom-metadata=""                Use this flag for addingCustom Metadata to the JSON (key1:value1,key2:value2, etc...)
--include-only-matching-filter=""   Adds an 'Include only' filter to Events content (key1:value1,key2:value2, etc...)
--exclude-always-matching-filter="" Adds an 'Exclude always' filter to Events content (key1:value1,key2:value2, etc...)
--version                           Show application version.

There are 3 ways to run this Nozzle:

  1. Run as standalone app
  2. Run as a tile in Pivotal Cloud Foundry
  3. Push as an app in a Clod Foundry instance

Run as standalone app

This is an example for running the Nozzle using the flags options described above:

godep go run main.go --sumo-endpoint=https://sumo-endpoint --api-endpoint=https://api.endpoint --cloudfoundry-user=some_user --cloudfoundry-password=some_password --sumo-post-minimum-delay=200ms --sumo-host=123.123.123.0 --sumo-category=categoryTest --sumo-name=NameTestMETA --log-events-batch-size=200 --events=LogMessage, ValueMetric --verbose-log-messages

If everything goes right, you should see in your terminal the Nozzle's Logs and, in the Sumo Logic endpoint (defined in the --sumo-endpoint flag) you should see the logs according the events you choose ('LogMessage' and 'ValueMetric' with verbose in this case).

Filtering Option

It works this way:

  • Case 1: Include-Only filter="" (Empty) Exclude-Always filter="" (Empty) In this case, all the events will be sent to Sumo Logic

  • Case 2: Include-Only filter="" (Empty) Exclude-Always filter= source_type:other,origin:rep in this case, all the events that contains a source-type:other field OR an origin:rep field will be not sent to Sumo Logic

  • Case 3: Include-Only filter=job:diego_cell,source_type:other Exclude-Always filter="" (Empty) in this case, Only the events that contains a job:diego-cell field OR a source-type:other field will be sent to Sumo Logic

  • Case 4: Include-Only filter=job:diego_cell,source_type:other Exclude-Always filter=source_type:app,origin:rep In this case, all the events that contains a job:diego-cell field OR a source-type:other field will be sent to Sumo Logic AND also All the events that contains a source-type:other field OR an origin:app field will be not sent to Sumo Logic.

IMPORTANT: Exclude filter overrides Include filter . This way if one or more of the App's logs fields match both filters (contains a Include-Only filter field and a Exclude-Always filter), this log will be NOT sent to Sumo Logic.

The correct way of using those flags will be something like this:

godep go run main.go --sumo-endpoint=https://sumo-endpoint --api-endpoint=https://api.endpoint --skip-ssl-validation --cloudfoundry-user=some_user --cloudfoundry-password=some_password --sumo-post-minimum-delay=200ms --log-events-batch-size=200 --events=LogMessage, ValueMetric   --include-only-matching-filter=job:diego_cell,source_type:app --exclude-always-matching-filter=source_type:other,unit:count

Run as a tile in Pivotal Cloud Foundry

Pivotal Cloud Foundry (PCF) has a Tile Generator tool which will help you to deploy this Nozzle in PCF allowing an easy configuration of it.

The tile configuration is handled in the 'tile.yml' file. (If you want to modify this file, is worth to mention that it is directly related to the Nozzle flags mentioned before).

Steps to run as this Nozzle as a tile in PCF:

Step 1 - Install the tile-generator python package
Step 2 - Check the tile file
Step 3 - Prepare your code:
  • Zip your entire code and place the zip file into the root directory of the project for which you wish to create a tile. For this tile use this command: (you should do this in a new terminal window)

    zip -r sumo-logic-nozzle.zip bitbucket-pipelines.yml caching/ ci/ eventQueue/ eventRouting/ events/ firehoseclient/ glide.yaml glide.lock Godeps/ LICENSE logging/ main.go manifest.yml event.db Procfile sumoCFFirehose/ utils/ vendor/
    
Step 4 - Build tile file
  • go to the 'tile-generator' terminal window and run

    $ tile build
    
Step 5 - Install the tile in Pivotal Cloud Foundry
  • Login with proper credentials into the OPS Manager and import the .pivotal file created above and wait.
  • Then add it to the Installation Dashboard to configure it. You should able to configure the settings created in the tile file.
  • Update the changes and you should start to see some logs in the Sumo Logic Endpoint defined.

Push as an app in a Cloud Foundry instance

Step 1 - Download the latest release of cloudfoundry-sumologic-nozzle.

$ git clone https://github.com/mcplusa/cloudfoundry-sumologic-nozzle.git
$ cd cloudfoundry-sumologic-nozzle

Step 2 - Utilize the CF cli to authenticate with your PCF instance.

$ cf login -a https://api.[your cf system domain] -u [your id] --skip-ssl-validation

Step 3 - Push cloudfoundry-sumologic-nozzle

$ cf push cloudfoundry-sumologic-nozzle --no-start

Step 4 - Set environment variables with cf cli or in the https://github.com/mcplusa/cloudfoundry-sumologic-nozzle/blob/master/manifest.yml. Example:

$ cf set-env cloudfoundry-sumologic-nozzle API_ENDPOINT https://api.[your cf system domain]
$ cf set-env cloudfoundry-sumologic-nozzle SUMO_ENDPOINT https://sumo-endpoint
$ cf set-env cloudfoundry-sumologic-nozzle FIREHOSE_SUBSCRIPTION_ID cloudfoundry-sumologic-nozzle
$ cf set-env cloudfoundry-sumologic-nozzle CLOUDFOUNDRY_USER [your doppler.firehose enabled user]
$ cf set-env cloudfoundry-sumologic-nozzle CLOUDFOUNDRY_PASSWORD [your doppler.firehose enabled user password]
$ cf set-env cloudfoundry-sumologic-nozzle EVENTS LogMessage
$ cf set-env cloudfoundry-sumologic-nozzle NOZZLE_POLLING_PERIOD 15s
$ cf set-env cloudfoundry-sumologic-nozzle LOG_EVENTS_BATCHSIZE  200
$ cf set-env cloudfoundry-sumologic-nozzle SUMO_POST_MINIMUM_DELAY 200ms
$ cf set-env cloudfoundry-sumologic-nozzle SUMO_CATEGORY ExampleCategory
$ cf set-env cloudfoundry-sumologic-nozzle SUMO_NAME ExampleName
$ cf set-env cloudfoundry-sumologic-nozzle SUMO_HOST [some ip]
$ cf set-env cloudfoundry-sumologic-nozzle VERBOSE_LOG_MESSAGES  false
$ cf set-env cloudfoundry-sumologic-nozzle CUSTOM_METADATA customData1:customValue1,CustomData2:CustomValue2
$ cf set-env cloudfoundry-sumologic-nozzle INCLUDE_ONLY_MATCHING_FILTER ""
$ cf set-env cloudfoundry-sumologic-nozzle EXCLUDE_ALWAYS_MATCHING_FILTER ""

Step 5 - Turn off the health check if you're staging to Diego.

$ cf set-health-check cloudfoundry-sumologic-nozzle none

Step 6 - Push the app.

$ cf push cloudfoundry-sumologic-nozzle --no-route

Authors

mcplusa.com

Related Sources

  • Firehose-to-Syslog Nozzle

About

A cloudfoundry nozzle that outputs to Sumologic

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 4

  •  
  •  
  •  
  •