An open API service indexing awesome lists of open source software.

https://github.com/netmarkjp/nri-flex-ntp-offset

NewRelic Infrastructure Agent, custom integration ntp-offset
https://github.com/netmarkjp/nri-flex-ntp-offset

Last synced: 11 months ago
JSON representation

NewRelic Infrastructure Agent, custom integration ntp-offset

Awesome Lists containing this project

README

          

# New Relic Infrastructure Integration Setting

```yaml
# /etc/newrelic-infra/integrations.d/ntp-offset.yml
integrations:
- name: nri-flex
config:
name: ntpOffset
apis:
- name: ntpOffset
commands:
- run: /opt/nri-flex-ntp-offset
```

# Graph/Dashboard NRQL Example

```sql
SELECT latest(`clock.offset.ms`) FROM ntpOffsetSample FACET fullHostname TIMESERIES
```

# Alert Example

```sql
SELECT abs(latest(`clock.offset.ms`)) FROM ntpOffsetSample
```

# Development

```sh
[[ -f "$(go env GOPATH)/bin/task" ]] || go install github.com/go-task/task/v3/cmd/task@latest
$(go env GOPATH)/bin/task lint
```