Skip to content

Commit d95eed7

Browse files
committed
Merge branch 'main' into krajo/om2.0-native-histograms
2 parents 6968e00 + 73e11b8 commit d95eed7

File tree

483 files changed

+15470
-185249
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

483 files changed

+15470
-185249
lines changed

.editorconfig

Lines changed: 0 additions & 14 deletions
This file was deleted.

.gitattributes

Lines changed: 0 additions & 2 deletions
This file was deleted.

.github/dependabot.yml

Lines changed: 0 additions & 8 deletions
This file was deleted.

.github/workflows/openmetrics.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: OpenMetrics
2+
3+
on:
4+
pull_request:
5+
paths:
6+
- 'docs/specs/om/open_metrics_spec_2_0.md'
7+
8+
jobs:
9+
check-abnf:
10+
runs-on: ubuntu-latest
11+
12+
steps:
13+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
14+
- name: Set up Python 3.x
15+
uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0
16+
with:
17+
python-version: "3.12.3"
18+
- name: Install dependencies
19+
run: |
20+
pip install -r openmetrics-spec-tests/check_openmetrics_spec_requirements.txt
21+
- name: Check ABNF for OpenMetrics 2.0
22+
run: |
23+
python3 openmetrics-spec-tests/check_openmetrics_spec.py docs/specs/om/open_metrics_spec_2_0.md

.gitignore

Lines changed: 38 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,44 @@
1-
# For projects using nanoc (http://nanoc.ws/)
1+
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
22

3-
# Default location for output, needs to match output_dir's value found in config.yaml
4-
output/
3+
# dependencies
4+
/node_modules
5+
/.pnp
6+
.pnp.*
7+
.yarn/*
8+
!.yarn/patches
9+
!.yarn/plugins
10+
!.yarn/releases
11+
!.yarn/versions
512

6-
# Temporary file directory
7-
tmp/
8-
downloads/
13+
# testing
14+
/coverage
915

10-
# Crash Log
11-
crash.log
16+
# next.js
17+
/.next/
18+
/out/
1219

13-
# macOS artifacts
20+
# production
21+
/build
22+
23+
# misc
1424
.DS_Store
25+
*.pem
26+
27+
# debug
28+
npm-debug.log*
29+
yarn-debug.log*
30+
yarn-error.log*
31+
.pnpm-debug.log*
32+
33+
# env files (can opt-in for committing if needed)
34+
.env*
35+
36+
# vercel
37+
.vercel
38+
39+
# typescript
40+
*.tsbuildinfo
41+
next-env.d.ts
1542

16-
# Ruby artifacts
17-
.bundle/
18-
vendor/
43+
# Generated docs files
44+
/generated

.gitpod.yml

Lines changed: 0 additions & 8 deletions
This file was deleted.

.ruby-version

Lines changed: 0 additions & 1 deletion
This file was deleted.

.vscode/settings.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"typescript.tsdk": "node_modules/typescript/lib"
3+
}

Gemfile

Lines changed: 0 additions & 19 deletions
This file was deleted.

Gemfile.lock

Lines changed: 0 additions & 168 deletions
This file was deleted.

0 commit comments

Comments
 (0)