Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update README.md - add a support links #3447

Merged
merged 5 commits into from
Jan 13, 2025
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -71,6 +71,15 @@ percona/pmm-server:2

Enter the username and password. The defaults are username: **admin** and password: **admin**

# Need help?


**Commercial Support** | **Community Support** |
:-: | :-: |
| <br/>Enterprise-grade support for mission-critical monitoring deployments with Percona Monitoring and Management. Get expert guidance for complex monitoring scenarios across hybrid environments - from cloud providers to bare metal infrastructures. Our team helps you optimize monitoring strategies for any deployment model.<br/><br/> | <br/>Connect with our engineers and community members to troubleshoot issues, share best practices, and discuss monitoring strategies. <br/><br/> |
| **[Get Percona Support](https://hubs.ly/Q02_Fs100)** | **[Visit our Forum](https://forums.percona.com/c/percona-monitoring-and-management-pmm/30/none)** |
rnovikovP marked this conversation as resolved.
Show resolved Hide resolved


## How to get involved

We encourage contributions and are always looking for new members that are as dedicated to serving the community as we are.

Unchanged files with check annotations Beta

require.NoError(t, err)
for i := range 10 { //nolint:typecheck
fmt.Fprintf(f, "line #%03d\n", i) // 10 bytes

Check failure on line 75 in managed/services/supervisord/logs_test.go

GitHub Actions / Checks

Error return value of `fmt.Fprintf` is not checked (errcheck)
fmt.Fprintf(fNoNewLineEnding, "line #%03d\n", i) // 10 bytes

Check failure on line 76 in managed/services/supervisord/logs_test.go

GitHub Actions / Checks

Error return value of `fmt.Fprintf` is not checked (errcheck)
}
fmt.Fprintf(fNoNewLineEnding, "some string without new line")

Check failure on line 78 in managed/services/supervisord/logs_test.go

GitHub Actions / Checks

Error return value of `fmt.Fprintf` is not checked (errcheck)
require.NoError(t, f.Close())
require.NoError(t, fNoNewLineEnding.Close())
tw := tabwriter.NewWriter(w, 0, 0, 1, ' ', tabwriter.Debug)
fmt.Fprintln(tw, "Column\tType\tCollation\tNullable\tDefault\tStorage\tStats target\tDescription")

Check failure on line 224 in agent/runner/actions/postgresql_show_create_table_action.go

GitHub Actions / Checks

Error return value of `fmt.Fprintln` is not checked (errcheck)
for rows.Next() {
var ci columnInfo
// We need it to be able to call Flush method to not write header if there are no rows.
bw := bufio.NewWriter(&buf)
fmt.Fprintln(bw, "Indexes:")

Check failure on line 291 in agent/runner/actions/postgresql_show_create_table_action.go

GitHub Actions / Checks

Error return value of `fmt.Fprintln` is not checked (errcheck)
for rows.Next() {
info := indexInfo{}
// We need it to be able to call Flush method to not write header if there are no rows.
bw := bufio.NewWriter(&buf)
fmt.Fprintln(bw, "Foreign-key constraints:")

Check failure on line 375 in agent/runner/actions/postgresql_show_create_table_action.go

GitHub Actions / Checks

Error return value of `fmt.Fprintln` is not checked (errcheck)
for rows.Next() {
var conname, condef string
for _, line := range lines {
if _, ok := duplicate[line]; !ok {
duplicate[line] = struct{}{}
fmt.Fprint(f, line)

Check failure on line 245 in agent/main_test.go

GitHub Actions / Checks

Error return value of `fmt.Fprint` is not checked (errcheck)
}
}
fmt.Fprintf(f, "}\n")
for _, line := range lines {
if _, ok := duplicate[line]; !ok {
duplicate[line] = struct{}{}
fmt.Fprint(f, line)

Check failure on line 192 in managed/cmd/pmm-managed/main_test.go

GitHub Actions / Checks

Error return value of `fmt.Fprint` is not checked (errcheck)
}
}
fmt.Fprintf(f, "}\n")
}
// Info logs a message at the Info level.
// override InfoXXX methods with TraceXXX to keep gRPC and logrus levels in sync

Check failure on line 35 in utils/logger/grpc.go

GitHub Actions / Checks

Sentence should start with a capital letter (godot)
//
//nolint:stylecheck
func (v *GRPC) Info(args ...interface{}) { v.Trace(args...) }
// NewStore creates Store.
func NewStore(capacity uint) *Store {
return &Store{
log: ring.New(int(capacity)),

Check failure on line 34 in agent/tailog/store.go

GitHub Actions / Checks

G115: integer overflow conversion uint -> int (gosec)
capacity: capacity,
}
}