CARVIEW |
Select Language
HTTP/2 200
date: Thu, 31 Jul 2025 02:07:19 GMT
content-type: text/html; charset=utf-8
vary: X-PJAX, X-PJAX-Container, Turbo-Visit, Turbo-Frame, X-Requested-With,Accept-Encoding, Accept, X-Requested-With
x-robots-tag: none
etag: W/"b2b5f1b661236383880e759c0b5d466c"
cache-control: max-age=0, private, must-revalidate
strict-transport-security: max-age=31536000; includeSubdomains; preload
x-frame-options: deny
x-content-type-options: nosniff
x-xss-protection: 0
referrer-policy: no-referrer-when-downgrade
content-security-policy: default-src 'none'; base-uri 'self'; child-src github.githubassets.com github.com/assets-cdn/worker/ github.com/assets/ gist.github.com/assets-cdn/worker/; connect-src 'self' uploads.github.com www.githubstatus.com collector.github.com raw.githubusercontent.com api.github.com github-cloud.s3.amazonaws.com github-production-repository-file-5c1aeb.s3.amazonaws.com github-production-upload-manifest-file-7fdce7.s3.amazonaws.com github-production-user-asset-6210df.s3.amazonaws.com *.rel.tunnels.api.visualstudio.com wss://*.rel.tunnels.api.visualstudio.com objects-origin.githubusercontent.com copilot-proxy.githubusercontent.com proxy.individual.githubcopilot.com proxy.business.githubcopilot.com proxy.enterprise.githubcopilot.com *.actions.githubusercontent.com wss://*.actions.githubusercontent.com productionresultssa0.blob.core.windows.net/ productionresultssa1.blob.core.windows.net/ productionresultssa2.blob.core.windows.net/ productionresultssa3.blob.core.windows.net/ productionresultssa4.blob.core.windows.net/ productionresultssa5.blob.core.windows.net/ productionresultssa6.blob.core.windows.net/ productionresultssa7.blob.core.windows.net/ productionresultssa8.blob.core.windows.net/ productionresultssa9.blob.core.windows.net/ productionresultssa10.blob.core.windows.net/ productionresultssa11.blob.core.windows.net/ productionresultssa12.blob.core.windows.net/ productionresultssa13.blob.core.windows.net/ productionresultssa14.blob.core.windows.net/ productionresultssa15.blob.core.windows.net/ productionresultssa16.blob.core.windows.net/ productionresultssa17.blob.core.windows.net/ productionresultssa18.blob.core.windows.net/ productionresultssa19.blob.core.windows.net/ github-production-repository-image-32fea6.s3.amazonaws.com github-production-release-asset-2e65be.s3.amazonaws.com insights.github.com wss://alive.github.com wss://alive-staging.github.com api.githubcopilot.com api.individual.githubcopilot.com api.business.githubcopilot.com api.enterprise.githubcopilot.com; font-src github.githubassets.com; form-action 'self' github.com gist.github.com copilot-workspace.githubnext.com objects-origin.githubusercontent.com; frame-ancestors 'none'; frame-src viewscreen.githubusercontent.com notebooks.githubusercontent.com; img-src 'self' data: blob: github.githubassets.com media.githubusercontent.com camo.githubusercontent.com identicons.github.com avatars.githubusercontent.com private-avatars.githubusercontent.com github-cloud.s3.amazonaws.com objects.githubusercontent.com release-assets.githubusercontent.com secured-user-images.githubusercontent.com/ user-images.githubusercontent.com/ private-user-images.githubusercontent.com opengraph.githubassets.com copilotprodattachments.blob.core.windows.net/github-production-copilot-attachments/ github-production-user-asset-6210df.s3.amazonaws.com customer-stories-feed.github.com spotlights-feed.github.com objects-origin.githubusercontent.com *.githubusercontent.com; manifest-src 'self'; media-src github.com user-images.githubusercontent.com/ secured-user-images.githubusercontent.com/ private-user-images.githubusercontent.com github-production-user-asset-6210df.s3.amazonaws.com gist.github.com; script-src github.githubassets.com; style-src 'unsafe-inline' github.githubassets.com; upgrade-insecure-requests; worker-src github.githubassets.com github.com/assets-cdn/worker/ github.com/assets/ gist.github.com/assets-cdn/worker/
server: github.com
content-encoding: gzip
accept-ranges: bytes
set-cookie: _gh_sess=OV1IwmkGJi73MCCvWije9FtacjmnlKRp4QbBQHcXS%2BkmFXyhc8zjaGBosmiHf2%2B7pZod7mHaU2oJuCObqznTUUwmpgAO8qIyjcsk0trjp6hkx6dnTCivsJiKUqoux%2F2SqkiWCUbgzOWuFcnZIcQcJTSeJQHUfw017eE%2BFJOc0nVQvSS2X4UA9kjEPXo6ngBGEaiuFJe0a4OGf5pvzZ3LXYtrRVITwhnfMfI9bOrG%2FlpHNcTNE9xbr1BSaRtncTnA7w1O0Zq%2FKKtqbF598rzXag%3D%3D--Avbus%2BWxaSeJVzoR--7UeTj%2Fpj7VM4ImJFJU5Wlw%3D%3D; Path=/; HttpOnly; Secure; SameSite=Lax
set-cookie: _octo=GH1.1.66029824.1753927639; Path=/; Domain=github.com; Expires=Fri, 31 Jul 2026 02:07:19 GMT; Secure; SameSite=Lax
set-cookie: logged_in=no; Path=/; Domain=github.com; Expires=Fri, 31 Jul 2026 02:07:19 GMT; HttpOnly; Secure; SameSite=Lax
x-github-request-id: A23A:4E82A:1565D0:205BA0:688ACFD7
Example: Scripts Pipeline · sipcapture/paStash Wiki · GitHub
Skip to content
Navigation Menu
{{ message }}
-
-
Notifications
You must be signed in to change notification settings - Fork 28
Example: Scripts Pipeline
Lorenzo Mangani edited this page Apr 6, 2018
·
11 revisions
paStash can serve all sorts of script emitting JSON objects for distribution and post-processing.
In this example, we'll use the input of ppsguard
to power a gauge
using the statsd
protocol.
input {
udp {
host => 127.0.0.1
port => 1234
}
}
filter {
json_fields {}
}
output {
studout {}
statsd {
host => localhost
port => 8125
metric_type => gauge
metric_key => pps
}
influxdb {
host => localhost
port => 8089
protocol => udp
metric_type => counter
metric_key => pps
}
}
npm install -g ppsguard
ppsguard --max_pps=100 --interface eth0 --udp 127.0.0.1:1234
0|pastash | [STDOUT] {
0|pastash | "cpu": 1.50927734375,
0|pastash | "pps": 101.996651754871111,
0|pastash | "mean": 141.236352751854155,
0|pastash | "message": "WARNING!"
0|pastash | "timestamp": "2018-01-02T17:33:44.737Z",
0|pastash | }
This example will produce PPS/CPU metrics using ppsguard
and ship them to Splunk using pastash
input {
udp {
host => 127.0.0.1
port => 18911
}
}
filter {
json_fields {}
}
output {
splunk {
token => "XXX-YYY-ZZZ"
source => "ppsGuard"
index => "your-lovely-index"
sourcetype => "_json"
splunk_url => "https://your-own-id.splunkcloud.com:443/services/collector/event"
flat => true
}
}
apps:
- script: ppsguard
name: 'ppsguard'
autorestart: true
args: ['--interface', 'eth0', '--max_pps', '100', '--limit_every', 'second', '--udp', '127.0.0.1:18911']
- script: pastash
name: 'pastash_pps'
autorestart: true
args: ['--config_file=/opt/pastash/ppsguard.conf']
pm2 start /opt/pastash/ppsguard_init.yml
pm2 list
Clone this wiki locally
You can’t perform that action at this time.